diff options
Diffstat (limited to 'catalog-model')
-rw-r--r-- | catalog-model/pom.xml | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/catalog-model/pom.xml b/catalog-model/pom.xml index 051313602f..98e8c24d26 100644 --- a/catalog-model/pom.xml +++ b/catalog-model/pom.xml @@ -28,6 +28,11 @@ <version>${junitJupiter.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>${jackson.version}</version> + </dependency> <!-- Common of SDC --> <dependency> @@ -35,6 +40,12 @@ <artifactId>common-app-api</artifactId> <version>${project.version}</version> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -70,6 +81,12 @@ <artifactId>catalog-dao</artifactId> <version>${project.version}</version> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> @@ -315,7 +332,13 @@ <groupId>org.openecomp.sdc.core</groupId> <artifactId>openecomp-tosca-lib</artifactId> <version>${project.version}</version> - </dependency> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> <build> |