Compare commits

...

5 Commits

Author SHA1 Message Date
Roberto Cirillo d4aa0760c0 remove runtime scope from jaxb-core 2023-09-21 11:36:18 +02:00
Roberto Cirillo 3dbe81174a add jaxb-core 2023-09-21 11:34:22 +02:00
Roberto Cirillo 2d31944b3f add jaxws-ri 2023-09-21 10:28:44 +02:00
Roberto Cirillo 780ffbc896 add gcube-bom 2023-09-21 10:13:10 +02:00
Roberto Cirillo 3e764ada4d add jaxb dependencies 2023-09-21 10:06:00 +02:00
2 changed files with 34 additions and 3 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v1.2.5-SNAPSHOT] - [2023-09-21]
* add jdk11 dependencies
## [v1.2.4] - [2023-03-30]

33
pom.xml
View File

@ -8,7 +8,7 @@
</parent>
<groupId>org.gcube.core</groupId>
<artifactId>common-gcore-stubs</artifactId>
<version>1.2.4</version>
<version>1.2.5-SNAPSHOT</version>
<name>GCore Stubs</name>
<description>JAXWS Stub Support for gCore Service</description>
@ -21,7 +21,17 @@
<properties>
<distroDirectory>distro</distroDirectory>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
<version>2.3.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
@ -41,7 +51,24 @@
<artifactId>common-authorization</artifactId>
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-ri</artifactId>
<version>2.3.2</version>
<type>pom</type>
</dependency>
<!-- test dependencies -->
<dependency>