Added libraries to support Java 11 JDK

This commit is contained in:
Luca Frosini 2022-09-22 17:24:58 +02:00
parent 552256eca5
commit 6c77f0c8e0
1 changed files with 20 additions and 1 deletions

21
pom.xml
View File

@ -18,6 +18,7 @@
<gcube-jackson.version>2.8.11</gcube-jackson.version>
<jersey.version>2.25.1</jersey.version>
<lombok.version>1.18.4</lombok.version>
<javax.version>2.3.1</javax.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@ -44,7 +45,25 @@
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0.1</version>
</dependency>
<!-- Added to support Java 11 JDK -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${javax.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${javax.version}</version>
</dependency>
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>${javax.version}</version>
</dependency>
<!-- END Added to support Java 11 JDK -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>