diff options
Diffstat (limited to 'aai-resources/pom.xml')
-rw-r--r-- | aai-resources/pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/aai-resources/pom.xml b/aai-resources/pom.xml index a0d650f..b916c3b 100644 --- a/aai-resources/pom.xml +++ b/aai-resources/pom.xml @@ -124,6 +124,7 @@ <snapshot.path>/content/repositories/snapshots/</snapshot.path> <netty.handler.version>4.1.9.Final</netty.handler.version> + <jackson.core.version>2.8.11.1</jackson.core.version> </properties> <profiles> <!-- Docker profile to be used for building docker image and pushing to nexus --> @@ -446,6 +447,11 @@ <artifactId>jackson-jaxrs-json-provider</artifactId> </dependency> <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>${jackson.core.version}</version> + </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito.version}</version> @@ -653,6 +659,10 @@ <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> </exclusion> + <exclusion> + <groupId>com.sun.jersey.contribs</groupId> + <artifactId>jersey-apache-client4</artifactId> + </exclusion> </exclusions> </dependency> <dependency> |