discovery-client/pom.xml

66 lines
2.1 KiB
XML
Raw Normal View History

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"
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 />
</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>
<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>
</scm>
<properties>
2024-10-03 15:06:52 +02:00
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
</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>
<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>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
2023-03-30 11:58:58 +02:00
</dependency>
<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>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
2023-03-30 11:58:58 +02:00
<version>1.7.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>