2022-06-10 17:11:00 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-01-07 15:08:13 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
2024-02-22 12:25:06 +01:00
|
|
|
<version>1.2.0</version>
|
2013-01-07 15:08:13 +01:00
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-gcore-stubs</artifactId>
|
2022-06-10 17:11:00 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2013-01-07 15:08:13 +01:00
|
|
|
<name>GCore Stubs</name>
|
|
|
|
<description>JAXWS Stub Support for gCore Service</description>
|
2022-06-10 17:11:00 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
|
|
|
</scm>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2024-10-02 11:34:48 +02:00
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
2022-06-10 17:11:00 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2013-01-07 15:08:13 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-09-29 12:02:55 +02:00
|
|
|
<groupId>org.gcube.common</groupId>
|
2022-06-10 17:11:00 +02:00
|
|
|
<artifactId>common-security</artifactId>
|
2013-01-07 15:08:13 +01:00
|
|
|
</dependency>
|
2024-03-12 17:27:07 +01:00
|
|
|
<!-- https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api -->
|
2015-09-29 12:02:55 +02:00
|
|
|
<dependency>
|
2024-03-12 17:27:07 +01:00
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
2023-04-06 11:36:39 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-03-12 17:27:07 +01:00
|
|
|
<groupId>jakarta.xml.ws</groupId>
|
|
|
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
2015-09-29 12:02:55 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- test dependencies -->
|
2013-01-07 15:08:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2023-04-06 11:36:39 +02:00
|
|
|
<version>1.7.4</version>
|
2013-01-07 15:08:13 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-03-30 14:55:19 +02:00
|
|
|
</project>
|