Fixed BOM

This commit is contained in:
Luca Frosini 2020-10-08 13:01:15 +02:00
parent 0056b25075
commit 57058a61f5
1 changed files with 14 additions and 9 deletions

23
pom.xml
View File

@ -18,7 +18,7 @@
</description>
<properties>
<jackson.version>2.8.11</jackson.version>
<gcube-jackson.version>2.8.11</gcube-jackson.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@ -172,18 +172,23 @@
</dependency>
<!-- END Declaring dependencies needed by a smartgears webapp -->
<!-- gCube Jackson -->
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.9.13</version>
<scope>provided</scope>
<groupId>org.gcube.common</groupId>
<artifactId>gcube-jackson-databind</artifactId>
<version>${gcube-jackson.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
<scope>provided</scope>
<groupId>org.gcube.common</groupId>
<artifactId>gcube-jackson-annotations</artifactId>
<version>${gcube-jackson.version}</version>
</dependency>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>gcube-jackson-core</artifactId>
<version>${gcube-jackson.version}</version>
</dependency>
<!-- END gCube Jackson -->
</dependencies>
</dependencyManagement>
</project>