2019-10-03 14:54:45 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-07-18 11:56:56 +02: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-03 14:54:45 +02:00
|
|
|
<version>1.1.0</version>
|
2016-07-18 11:56:56 +02:00
|
|
|
</parent>
|
2017-02-27 11:33:31 +01:00
|
|
|
|
2016-07-18 11:56:56 +02:00
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-api</artifactId>
|
2020-10-29 17:21:26 +01:00
|
|
|
<version>4.0.0</version>
|
2016-10-28 16:33:57 +02:00
|
|
|
<name>Resource Registry API</name>
|
2019-12-05 17:45:31 +01:00
|
|
|
<description>Resource Registry API is a library containing classes shared across resource-registry-* components</description>
|
2016-07-18 11:56:56 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<serviceClass>InformationSystem</serviceClass>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2019-10-03 14:54:45 +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>
|
2016-07-18 11:56:56 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
2016-09-12 15:27:33 +02:00
|
|
|
<artifactId>gcube-bom</artifactId>
|
2020-10-29 17:21:26 +01:00
|
|
|
<version>2.0.0</version>
|
2016-07-18 11:56:56 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-model</artifactId>
|
|
|
|
</dependency>
|
2017-02-24 10:44:57 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-client</artifactId>
|
|
|
|
</dependency>
|
2019-01-17 11:18:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
2019-10-03 14:54:45 +02:00
|
|
|
<artifactId>gxHTTP</artifactId>
|
2019-01-17 11:18:02 +01:00
|
|
|
</dependency>
|
2016-07-18 11:56:56 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2017-10-31 16:21:29 +01:00
|
|
|
<!-- Test Dependencies -->
|
2016-07-18 11:56:56 +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>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|