Migrating to gcube-jackson

This commit is contained in:
Luca Frosini 2020-06-25 14:57:11 +02:00
parent a55a3ae694
commit 40ab3baf21
1 changed files with 7 additions and 3 deletions

10
pom.xml
View File

@ -10,7 +10,7 @@
<groupId>org.gcube.resource-management</groupId>
<artifactId>gcube-model</artifactId>
<version>2.0.0</version>
<version>3.0.0-SNAPSHOT</version>
<name>gCube Resources</name>
<description>gCube Model is a resource model built on top of IS Model which captures the different aspects of the resources and their relations playing significant roles in a research infrastructure empowered by gCube</description>
<packaging>jar</packaging>
@ -18,6 +18,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<serviceClass>InformationSystem</serviceClass>
<jackson.version>2.10.3</jackson.version>
</properties>
<scm>
@ -52,15 +53,18 @@
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>