2019-10-03 14:54:11 +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:57:12 +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:11 +02:00
|
|
|
<version>1.1.0</version>
|
2016-07-18 11:57:12 +02:00
|
|
|
</parent>
|
2019-10-03 14:54:11 +02:00
|
|
|
|
2016-07-18 11:57:12 +02:00
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry</artifactId>
|
2020-11-24 21:45:24 +01:00
|
|
|
<version>4.0.0</version>
|
2019-12-05 16:59:10 +01:00
|
|
|
<name>Resource Registry Service</name>
|
|
|
|
<description>The Resource Registry is a web-service which represent the core component of the gCube Information System</description>
|
2016-08-05 14:31:18 +02:00
|
|
|
<packaging>war</packaging>
|
2016-07-18 11:57:12 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-12-05 15:27:21 +01:00
|
|
|
<webappDirectory>${project.basedir}${file.separator}src${file.separator}main${file.separator}webapp${file.separator}WEB-INF</webappDirectory>
|
2016-07-18 11:57:12 +02:00
|
|
|
<serviceClass>InformationSystem</serviceClass>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2019-10-03 14:54:11 +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:57:12 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
2016-11-22 17:22:17 +01:00
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
2020-11-24 21:45:24 +01:00
|
|
|
<version>2.1.0</version>
|
2016-07-18 11:57:12 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>resource-registry-api</artifactId>
|
2020-09-28 15:21:45 +02:00
|
|
|
<scope>provided</scope>
|
2016-07-18 11:57:12 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-model</artifactId>
|
2020-09-28 15:21:45 +02:00
|
|
|
<scope>provided</scope>
|
2016-07-18 11:57:12 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.orientechnologies</groupId>
|
|
|
|
<artifactId>orientdb-graphdb</artifactId>
|
2020-10-14 18:30:41 +02:00
|
|
|
<version>3.0.34</version>
|
2016-07-18 11:57:12 +02:00
|
|
|
</dependency>
|
2019-01-17 11:30:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
2019-10-03 14:54:11 +02:00
|
|
|
<artifactId>gxHTTP</artifactId>
|
2019-01-17 11:30:32 +01:00
|
|
|
</dependency>
|
2017-11-13 12:54:07 +01:00
|
|
|
<!-- Jersey -->
|
2016-07-18 11:57:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
|
|
<artifactId>jersey-container-servlet</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-11-13 12:54:07 +01:00
|
|
|
<!-- END Jersey -->
|
2016-07-18 11:57:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-11-13 12:54:07 +01:00
|
|
|
<!-- Test Dependencies -->
|
2016-07-18 11:57:12 +02:00
|
|
|
<dependency>
|
2018-10-02 09:17:58 +02:00
|
|
|
<groupId>org.gcube.resource-management</groupId>
|
|
|
|
<artifactId>gcube-model</artifactId>
|
2016-07-18 11:57:12 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-11-13 12:54:07 +01:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
2016-07-18 11:57:12 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-08-06 16:52:07 +02:00
|
|
|
</project>
|