diff options
-rw-r--r-- | rulemgt/pom.xml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/rulemgt/pom.xml b/rulemgt/pom.xml index 0ad9061..5977c45 100644 --- a/rulemgt/pom.xml +++ b/rulemgt/pom.xml @@ -35,6 +35,11 @@ <version>5.4.2.Final</version> </dependency> <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>2.8.6</version> + </dependency> + <dependency> <groupId>org.onap.msb.java-sdk</groupId> <artifactId>msb-java-sdk</artifactId> <exclusions> @@ -103,10 +108,14 @@ <artifactId>log4j-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> - <exclusion> - <groupId>org.hibernate</groupId> - <artifactId>hibernate-validator</artifactId> - </exclusion> + <exclusion> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-validator</artifactId> + </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </exclusion> </exclusions> </dependency> |