summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorToineSiebelink <toine.siebelink@est.tech>2023-04-19 16:52:14 +0100
committerToineSiebelink <toine.siebelink@est.tech>2023-04-20 12:05:18 +0100
commit17c24efd4babc61a818fef26ce56954b703fbfb7 (patch)
tree4a214a413593edd22a2cc7c99c47e5eb0f0fbae0 /pom.xml
parent3c6ab2322d81d98a26e697cecdb5c4d6da548e81 (diff)
Align dependencies with CPS/NCMP
- Updated several generic dependecies - Changed OpenAPI to use core.v3 version - Order of parameters in generated controlelr code changed - Some maven plugins can uses 'latest' version (affected OpenApi code gen) - set some lib versions for csit test - removed spotbug exclusion file (it alwasy used CPS version of this file anyway) - removed @Valid annotaions in affect file (as agrred long time back) Issue-ID: CPS-1627 Signed-off-by: ToineSiebelink <toine.siebelink@est.tech> Change-Id: Ib355382df68ed440618737067590631c7c3a1c8b
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml24
1 files changed, 12 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index cb3947f8..7a37f765 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,7 +45,6 @@
<jacoco.minimum.coverage>0.98</jacoco.minimum.coverage>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <httpclient.version>4.5.13</httpclient.version>
</properties>
<dependencyManagement>
<dependencies>
@@ -55,9 +54,9 @@
<version>2.8.9</version>
</dependency>
<dependency>
- <groupId>io.swagger</groupId>
+ <groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
- <version>1.6.2</version>
+ <version>2.1.4</version>
</dependency>
<dependency>
<groupId>net.logstash.logback</groupId>
@@ -65,9 +64,14 @@
<version>7.0.1</version>
</dependency>
<dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.5.13</version>
+ </dependency>
+ <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
- <version>2.6.4</version>
+ <version>2.7.6</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -81,19 +85,19 @@
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
- <version>1.5.9</version>
+ <version>1.6.6</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
- <version>2021.0.1</version>
+ <version>2021.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
- <version>1.15.3</version>
+ <version>1.17.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -123,7 +127,7 @@
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
<dependency>
- <groupId>io.swagger</groupId>
+ <groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
</dependency>
<dependency>
@@ -137,7 +141,6 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
@@ -246,7 +249,6 @@
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
- <version>3.0.18</version>
<executions>
<execution>
<goals>
@@ -458,7 +460,6 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
- <version>0.8.5</version>
<configuration>
<excludes>
<exclude>org/onap/cps/ncmp/dmi/model/*</exclude>
@@ -512,7 +513,6 @@
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
- <version>3.1.4</version>
<configuration>
<container>
<mainClass>${app}</mainClass>