updated the pom

This commit is contained in:
Francesco Mangiacrapa 2024-05-08 10:36:26 +02:00
parent 4ccfc78791
commit eef4095842
1 changed files with 20 additions and 16 deletions

36
pom.xml
View File

@ -52,7 +52,8 @@
<properties> <properties>
<jersey.version>2.25.1</jersey.version> <jersey.version>2.25.1</jersey.version>
<jackson.version>2.8.8</jackson.version> <!-- Using 2.8.4 because storage-hub-client uses this version -->
<jackson.version>2.8.4</jackson.version>
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<enunciate.version>2.14.0</enunciate.version> <enunciate.version>2.14.0</enunciate.version>
@ -177,15 +178,24 @@
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<!-- due to #27377, remove this after fixed --> <dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- <dependency> --> <dependency>
<!-- <groupId>com.fasterxml.jackson.core</groupId> --> <groupId>com.fasterxml.jackson.core</groupId>
<!-- <artifactId>jackson-databind</artifactId> --> <artifactId>jackson-annotations</artifactId>
<!-- <version>${jackson.version}</version> --> <version>${jackson.version}</version>
<!-- </dependency> --> </dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- due to #27377, see above -->
<!-- java melody --> <!-- java melody -->
<dependency> <dependency>
@ -234,17 +244,11 @@
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.14.8</version>
</dependency>
<!-- FOR BUILDING towards JDK_11 --> <!-- FOR BUILDING towards JDK_11 -->
<dependency> <dependency>
<groupId>javax.xml.bind</groupId> <groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId> <artifactId>jaxb-api</artifactId>
<version>2.3.0</version> <!-- <version>2.3.0</version> -->
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
@ -252,7 +256,7 @@
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<version>1.18.4</version> <!-- <version>1.18.4</version> -->
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>