diff options
Diffstat (limited to 'appc-provider')
3 files changed, 37 insertions, 3 deletions
diff --git a/appc-provider/appc-provider-bundle/pom.xml b/appc-provider/appc-provider-bundle/pom.xml index 9a4b0d8d1..7c1772a30 100644 --- a/appc-provider/appc-provider-bundle/pom.xml +++ b/appc-provider/appc-provider-bundle/pom.xml @@ -108,6 +108,17 @@ <groupId>org.onap.appc</groupId> <artifactId>appc-common-bundle</artifactId> <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.8.11.3</version> </dependency> <dependency> <groupId>org.onap.appc</groupId> @@ -170,4 +181,4 @@ <artifactId>json</artifactId> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> diff --git a/appc-provider/appc-provider-features/features-appc-provider/pom.xml b/appc-provider/appc-provider-features/features-appc-provider/pom.xml index 19ab1d1ab..997280f78 100644 --- a/appc-provider/appc-provider-features/features-appc-provider/pom.xml +++ b/appc-provider/appc-provider-features/features-appc-provider/pom.xml @@ -20,7 +20,18 @@ <version>${project.version}</version> <type>xml</type> <classifier>features</classifier> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.8.11.3</version> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> diff --git a/appc-provider/appc-provider-features/onap-appc-provider/pom.xml b/appc-provider/appc-provider-features/onap-appc-provider/pom.xml index 9df0b8eeb..ce2e209c5 100644 --- a/appc-provider/appc-provider-features/onap-appc-provider/pom.xml +++ b/appc-provider/appc-provider-features/onap-appc-provider/pom.xml @@ -21,6 +21,18 @@ <version>${project.version}</version> <type>xml</type> <classifier>features</classifier> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.8.11.3</version> </dependency> <dependency> @@ -43,4 +55,4 @@ <version>${project.version}</version> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> |