diff options
author | vasraz <vasyl.razinkov@est.tech> | 2023-06-01 18:37:12 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2023-06-02 11:27:53 +0000 |
commit | af63ad9fa5f1504bfdca5cd499b23e883525dd30 (patch) | |
tree | 5e460138afc50281a70503da105d681f500c0a52 /catalog-be | |
parent | 07cc0db3afca2f5d60e916c95656774a977b2d0d (diff) |
Exclude outdated transitive dependencies com.fasterxml.jackson.
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ib1e2a95bcf328085173da81bf107f2f75e726429
Issue-ID: SDC-4525
Diffstat (limited to 'catalog-be')
-rw-r--r-- | catalog-be/pom.xml | 13 |
1 files changed, 13 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> |