aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2023-06-01 18:37:12 +0100
committerVasyl Razinkov <vasyl.razinkov@est.tech>2023-06-02 11:27:53 +0000
commitaf63ad9fa5f1504bfdca5cd499b23e883525dd30 (patch)
tree5e460138afc50281a70503da105d681f500c0a52
parent07cc0db3afca2f5d60e916c95656774a977b2d0d (diff)
Exclude outdated transitive dependencies com.fasterxml.jackson.
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Change-Id: Ib1e2a95bcf328085173da81bf107f2f75e726429 Issue-ID: SDC-4525
-rw-r--r--catalog-be/pom.xml13
-rw-r--r--catalog-fe/pom.xml10
-rw-r--r--common-app-api/pom.xml9
-rw-r--r--openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml6
4 files changed, 38 insertions, 0 deletions
diff --git a/catalog-be/pom.xml b/catalog-be/pom.xml
index cceab16471..43c31b5f66 100644
--- a/catalog-be/pom.xml
+++ b/catalog-be/pom.xml
@@ -89,6 +89,10 @@
<artifactId>jackson-core</artifactId>
</exclusion>
<exclusion>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-json-provider</artifactId>
+ </exclusion>
+ <exclusion>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
</exclusion>
@@ -270,8 +274,17 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ </exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml
index 808eb54805..50204d6434 100644
--- a/catalog-fe/pom.xml
+++ b/catalog-fe/pom.xml
@@ -137,6 +137,16 @@
<artifactId>jersey-media-json-jackson</artifactId>
<version>${jersey-bom.version}</version>
<scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
diff --git a/common-app-api/pom.xml b/common-app-api/pom.xml
index b76598fb0e..3bcafc8f86 100644
--- a/common-app-api/pom.xml
+++ b/common-app-api/pom.xml
@@ -192,8 +192,17 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ </exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.module</groupId>
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
+ <version>${jackson.version}</version>
+ </dependency>
<!-- Aspects -->
<dependency>
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml b/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml
index bca995d3a5..a1df3ab0e9 100644
--- a/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml
+++ b/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/pom.xml
@@ -68,6 +68,12 @@
<artifactId>swagger-core</artifactId>
<version>${swagger.version}</version>
<scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.datatype</groupId>
+ <artifactId>jackson-datatype-jsr310</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.openecomp.sdc.core</groupId>