2024-05-15 11:21:37 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-01-08 09:12:00 +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>
|
2019-10-16 16:41:44 +02:00
|
|
|
<version>1.1.0</version>
|
2023-03-30 11:58:58 +02:00
|
|
|
<relativePath />
|
2013-01-08 09:12:00 +01:00
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.resources.discovery</groupId>
|
|
|
|
<artifactId>discovery-client</artifactId>
|
2024-05-15 11:21:37 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2013-01-08 09:12:00 +01:00
|
|
|
<name>Discovery Client</name>
|
|
|
|
<description>Base API for resource discovery clients</description>
|
|
|
|
<scm>
|
2024-05-15 11:21:37 +02:00
|
|
|
<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>
|
2023-03-30 11:58:58 +02:00
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
2013-01-08 09:12:00 +01:00
|
|
|
</scm>
|
|
|
|
<properties>
|
2024-10-03 15:06:52 +02:00
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
2013-01-08 09:12:00 +01:00
|
|
|
</properties>
|
2023-03-30 11:58:58 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2024-10-03 15:06:52 +02:00
|
|
|
<version>4.0.0</version>
|
2023-03-30 11:58:58 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2013-01-08 09:12:00 +01:00
|
|
|
<dependencies>
|
2023-03-30 11:58:58 +02:00
|
|
|
<dependency>
|
2024-05-15 11:21:37 +02:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2023-03-30 11:58:58 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-05-15 11:21:37 +02:00
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
2023-03-30 11:58:58 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-05-15 17:01:32 +02:00
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
2023-03-30 11:58:58 +02:00
|
|
|
</dependency>
|
2013-01-08 09:12:00 +01:00
|
|
|
<dependency>
|
2024-05-15 11:21:37 +02:00
|
|
|
<groupId>jakarta.xml.ws</groupId>
|
|
|
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.ws</groupId>
|
|
|
|
<artifactId>jaxws-rt</artifactId>
|
2013-01-08 09:12:00 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2023-03-30 11:58:58 +02:00
|
|
|
<version>1.7.4</version>
|
2023-05-05 11:51:23 +02:00
|
|
|
<scope>test</scope>
|
2013-01-08 09:12:00 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|