Added dependency to be able to compile with JDK 11

This commit is contained in:
Luca Frosini 2022-10-20 16:51:14 +02:00
parent 8143eee364
commit 8c4485d88a
2 changed files with 10 additions and 2 deletions

View File

@ -2,6 +2,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for gCube Catalogue (gCat) Client # Changelog for gCube Catalogue (gCat) Client
## [v2.4.0-SNAPSHOT]
- Added dependency to be able to compile with JDK 11
## [v2.3.0] ## [v2.3.0]
- Removed service discovery to to old service class - Removed service discovery to to old service class

View File

@ -63,11 +63,14 @@
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>
<artifactId>gcube-jackson-databind</artifactId> <artifactId>gcube-jackson-databind</artifactId>
</dependency> </dependency>
<!-- Added to support Java 11 JDK -->
<dependency> <dependency>
<groupId>javax.xml.ws</groupId> <groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId> <artifactId>jaxws-api</artifactId>
<scope>provided</scope> </dependency>
</dependency> <!-- END Added to support Java 11 JDK -->
<!-- Test Dependencies --> <!-- Test Dependencies -->
<dependency> <dependency>
<groupId>org.gcube.common</groupId> <groupId>org.gcube.common</groupId>