diff options
author | Claudio D. Gasparini <claudio.gasparini@pantheon.tech> | 2021-01-28 15:36:37 +0100 |
---|---|---|
committer | Claudio D. Gasparini <claudio.gasparini@pantheon.tech> | 2021-02-01 18:08:30 +0100 |
commit | b77bf2529f15e60c852cf83d5150e75d30068bb0 (patch) | |
tree | 74556b527ac48ac608db2d420929785c797a6a07 /cps-dependencies | |
parent | 850e3ecdecbedd30e65ae7cbaa81fc5301766f45 (diff) |
Decouple configuration from application
- Decouple configuration from application
- Generate all 3 types of docker variations
Issue-ID: CPS-175
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@pantheon.tech>
Change-Id: I1e2e0577c5911f7c79801e4c691d196515dc02a1
Diffstat (limited to 'cps-dependencies')
-rwxr-xr-x | cps-dependencies/pom.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cps-dependencies/pom.xml b/cps-dependencies/pom.xml index 23683f65c2..1beee115b0 100755 --- a/cps-dependencies/pom.xml +++ b/cps-dependencies/pom.xml @@ -26,6 +26,7 @@ <spock-spring.version>1.3-groovy-2.5</spock-spring.version> <spotbugs.version>4.2.0</spotbugs.version> <springboot.version>2.3.8.RELEASE</springboot.version> + <springboot.cloud.version>Hoxton.SR9</springboot.cloud.version> <springfox.version>3.0.0</springfox.version> <swagger.version>2.1.4</swagger.version> <testcontainers.version>1.15.1</testcontainers.version> @@ -55,6 +56,13 @@ <scope>import</scope> </dependency> <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-dependencies</artifactId> + <version>${springboot.cloud.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> <groupId>org.opendaylight.yangtools</groupId> <artifactId>yangtools-artifacts</artifactId> <version>${yangtools.version}</version> @@ -66,6 +74,12 @@ <artifactId>swagger-annotations</artifactId> <version>${swagger.version}</version> </dependency> + <!---To be removed once swagger-codegen-maven-plugin is upgraded--> + <dependency> + <groupId>io.swagger</groupId> + <artifactId>swagger-annotations</artifactId> + <version>1.6.2</version> + </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> |