apiclient/pom.xml: Add jackson JSON support libs for REST client

This commit is contained in:
Calle Wilund 2019-07-24 14:27:56 +00:00
parent f0d2df3d15
commit bbc817013e
1 changed files with 15 additions and 0 deletions

View File

@ -60,6 +60,21 @@
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.9.9</version>
</dependency>
</dependencies>
<build>