2017-02-27 11:34:55 +01: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-03 14:54:50 +02:00
|
|
|
<version>1.1.0</version>
|
2017-02-27 11:34:55 +01:00
|
|
|
</parent>
|
2017-10-31 16:24:17 +01:00
|
|
|
|
2017-02-27 11:34:55 +01:00
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-client</artifactId>
|
2020-11-24 21:19:30 +01:00
|
|
|
<version>4.1.0</version>
|
2017-02-27 11:34:55 +01:00
|
|
|
<name>Resource Registry Client</name>
|
2019-12-05 17:48:03 +01:00
|
|
|
<description>Resource Registry Client is a library designed to interact with idempotent Resource Registry APIs</description>
|
2017-02-27 11:34:55 +01:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<serviceClass>InformationSystem</serviceClass>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2019-10-03 14:54:50 +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>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
2017-02-27 11:34:55 +01:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
2016-07-18 11:57:37 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2021-06-29 18:14:10 +02:00
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2016-07-18 11:57:37 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2017-02-27 11:34:55 +01:00
|
|
|
|
2016-07-18 11:57:37 +02:00
|
|
|
<dependencies>
|
2016-09-12 14:45:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-client</artifactId>
|
|
|
|
</dependency>
|
2016-07-18 11:57:37 +02:00
|
|
|
<dependency>
|
2017-04-03 18:44:47 +02:00
|
|
|
<groupId>org.gcube.resources.discovery</groupId>
|
|
|
|
<artifactId>ic-client</artifactId>
|
2016-07-18 11:57:37 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-api</artifactId>
|
|
|
|
</dependency>
|
2016-10-18 10:52:05 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-model</artifactId>
|
|
|
|
</dependency>
|
2019-02-06 11:52:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gxHTTP</artifactId>
|
|
|
|
</dependency>
|
2016-07-18 11:57:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2017-10-31 16:24:17 +01:00
|
|
|
<!-- Test Dependencies -->
|
2016-07-18 11:57:37 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-01-12 16:39:53 +01:00
|
|
|
<dependency>
|
2018-10-02 09:19:56 +02:00
|
|
|
<groupId>org.gcube.resource-management</groupId>
|
|
|
|
<artifactId>gcube-model</artifactId>
|
2017-01-12 16:39:53 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-07-18 11:57:37 +02:00
|
|
|
</dependencies>
|
2017-02-27 11:34:55 +01:00
|
|
|
</project>
|