Added libraries to comply with JDK 11

This commit is contained in:
luca.frosini 2023-09-21 10:28:01 +02:00
parent d650c16e29
commit 01716b55cd
1 changed files with 14 additions and 0 deletions

14
pom.xml
View File

@ -101,6 +101,20 @@
<scope>provided</scope>
</dependency>
<!-- END Jersey -->
<!-- Added to support Java 11 JDK -->
<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- END Added to support Java 11 JDK -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>