189 lines
5.4 KiB
XML
189 lines
5.4 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>maven-parent</artifactId>
|
|
<groupId>org.gcube.tools</groupId>
|
|
<version>1.1.0</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>org.gcube.data-catalogue</groupId>
|
|
<artifactId>gcat</artifactId>
|
|
<packaging>war</packaging>
|
|
<version>2.1.0-SNAPSHOT</version>
|
|
<name>gCube Catalogue (gCat) Service</name>
|
|
<description>
|
|
This service allows any client to publish on the gCube Catalogue.
|
|
</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<webappDirectory>${project.basedir}${file.separator}src${file.separator}main${file.separator}webapp${file.separator}WEB-INF</webappDirectory>
|
|
<serviceClass>data-catalogue</serviceClass>
|
|
</properties>
|
|
|
|
<scm>
|
|
<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>
|
|
</scm>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.gcube.distribution</groupId>
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
|
<version>2.1.0</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.data-catalogue</groupId>
|
|
<artifactId>gcat-api</artifactId>
|
|
<version>[2.0.0-SNAPSHOT,3.0.0-SNAPSHOT)</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.common</groupId>
|
|
<artifactId>authorization-utils</artifactId>
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.information-system</groupId>
|
|
<artifactId>information-system-model</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.resource-management</groupId>
|
|
<artifactId>gcube-model</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.information-system</groupId>
|
|
<artifactId>resource-registry-client</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.information-system</groupId>
|
|
<artifactId>resource-registry-publisher</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.gcube.data-catalogue</groupId>
|
|
<artifactId>gcubedatacatalogue-metadata-discovery</artifactId>
|
|
<version>[3.0.0-SNAPSHOT, 4.0.0-SNAPSHOT)</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
<artifactId>jersey-container-servlet</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.common</groupId>
|
|
<artifactId>gxHTTP</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.gcube.core</groupId>
|
|
<artifactId>common-smartgears</artifactId>
|
|
</dependency>
|
|
|
|
<!-- ehCAChe -->
|
|
<dependency>
|
|
<groupId>javax.cache</groupId>
|
|
<artifactId>cache-api</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.ehcache</groupId>
|
|
<artifactId>ehcache</artifactId>
|
|
<version>3.5.2</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<!-- END ehCAChe -->
|
|
|
|
<!-- Used for validation in oldutils. TO BE REMOVED ASAP -->
|
|
<dependency>
|
|
<groupId>de.grundid.opendatalab</groupId>
|
|
<artifactId>geojson-jackson</artifactId>
|
|
<version>1.8</version>
|
|
</dependency>
|
|
|
|
<!-- Used to automatically convert XML to JSON -->
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.json</groupId> -->
|
|
<!-- <artifactId>json</artifactId> -->
|
|
<!-- <version>20140107</version> -->
|
|
<!-- </dependency> -->
|
|
|
|
<dependency>
|
|
<groupId>org.gcube.data-publishing</groupId>
|
|
<artifactId>storagehub-application-persistence</artifactId>
|
|
<version>[3.0.0-SNAPSHOT,4.0.0-SNAPSHOT)</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20211205</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.tika</groupId>
|
|
<artifactId>tika-core</artifactId>
|
|
<version>2.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.12.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.taliox</groupId>
|
|
<artifactId>zulip-java-rest</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.gcube.common</groupId>
|
|
<artifactId>gcube-jackson-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.common</groupId>
|
|
<artifactId>gcube-jackson-annotations</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gcube.common</groupId>
|
|
<artifactId>gcube-jackson-databind</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Test libraries -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |