2018-12-04 12:06:22 +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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
2019-09-24 11:12:17 +02:00
|
|
|
<version>1.1.0</version>
|
2018-12-04 12:06:22 +01:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube.data-publishing</groupId>
|
|
|
|
<artifactId>gcat</artifactId>
|
|
|
|
<packaging>war</packaging>
|
2020-06-10 11:38:39 +02:00
|
|
|
<version>1.4.3</version>
|
2019-12-06 13:55:36 +01:00
|
|
|
<name>gCube Catalogue (gCat) Service</name>
|
2018-12-04 12:06:22 +01:00
|
|
|
<description>
|
|
|
|
This service allows any client to publish on the gCube Catalogue.
|
|
|
|
</description>
|
|
|
|
|
2019-10-03 12:51:31 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-11-21 17:01:08 +01:00
|
|
|
<webappDirectory>${project.basedir}${file.separator}src${file.separator}main${file.separator}webapp${file.separator}WEB-INF</webappDirectory>
|
2019-10-03 12:51:31 +02:00
|
|
|
<serviceClass>DataPublishing</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>
|
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
2019-12-05 14:54:39 +01:00
|
|
|
<version>1.1.0</version>
|
2018-12-04 12:06:22 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
2019-01-29 17:46:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.data-publishing</groupId>
|
|
|
|
<artifactId>gcat-api</artifactId>
|
2019-12-05 14:54:39 +01:00
|
|
|
<version>[1.2.0, 2.0.0-SNAPSHOT)</version>
|
2019-01-29 17:46:22 +01:00
|
|
|
</dependency>
|
2019-05-20 17:23:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tika</groupId>
|
|
|
|
<artifactId>tika-core</artifactId>
|
|
|
|
<version>1.20</version>
|
|
|
|
</dependency>
|
2018-12-04 12:06:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2019-12-19 17:25:30 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-encryption</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<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>
|
2019-09-16 12:00:49 +02:00
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<dependency>
|
2019-09-16 12:00:49 +02:00
|
|
|
<groupId>org.glassfish.jersey.containers</groupId>
|
|
|
|
<artifactId>jersey-container-servlet</artifactId>
|
2018-12-04 12:06:22 +01:00
|
|
|
</dependency>
|
2019-10-03 12:51:31 +02:00
|
|
|
|
|
|
|
<!-- Required with jersey 2.27 <dependency> <groupId>org.glassfish.jersey.inject</groupId>
|
|
|
|
<artifactId>jersey-hk2</artifactId> </dependency> -->
|
2018-12-04 12:06:22 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-multipart</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>storagehub-client-library</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-01-10 12:29:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
2019-02-08 11:10:59 +01:00
|
|
|
<artifactId>gxHTTP</artifactId>
|
2019-01-10 12:29:47 +01:00
|
|
|
</dependency>
|
2019-01-29 17:46:22 +01:00
|
|
|
|
|
|
|
|
2019-09-16 12:00:49 +02:00
|
|
|
<!-- 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 -->
|
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-smartgears</artifactId>
|
|
|
|
</dependency>
|
2019-01-29 17:46:22 +01:00
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.grundid.opendatalab</groupId>
|
|
|
|
<artifactId>geojson-jackson</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</dependency>
|
2019-01-29 17:46:22 +01:00
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</dependency>
|
2019-09-12 17:58:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
2019-01-29 17:46:22 +01:00
|
|
|
|
2018-12-04 12:06:22 +01:00
|
|
|
<!-- Used to automatically convert XML to JSON -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20140107</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-01-10 12:29:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.data-publishing</groupId>
|
2019-01-29 17:46:22 +01:00
|
|
|
<artifactId>storagehub-application-persistence</artifactId>
|
2019-12-05 14:54:39 +01:00
|
|
|
<version>[1.0.0,2.0.0-SNAPSHOT)</version>
|
2019-01-10 12:29:47 +01:00
|
|
|
</dependency>
|
2018-12-04 12:06:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
<!-- Test libraries -->
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-profile</id>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${webappDirectory}</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
2019-10-07 12:30:31 +02:00
|
|
|
<directory>${project.basedir}</directory>
|
2018-12-04 12:06:22 +01:00
|
|
|
<filtering>true</filtering>
|
2019-10-07 12:53:18 +02:00
|
|
|
<excludes>
|
|
|
|
<exclude>src</exclude>
|
|
|
|
</excludes>
|
|
|
|
<includes>
|
2019-11-21 17:01:08 +01:00
|
|
|
<include>LICENSE.md</include>
|
|
|
|
<include>README.md</include>
|
2020-06-11 15:53:01 +02:00
|
|
|
<include>CHANGELOG.md</include>
|
2019-10-07 12:53:18 +02:00
|
|
|
<include>gcube-app.xml</include>
|
|
|
|
</includes>
|
2018-12-04 12:06:22 +01:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2019-10-07 12:30:31 +02:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2018-12-04 12:06:22 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-12-05 16:32:24 +01:00
|
|
|
<id>make-servicearchive</id>
|
|
|
|
<phase>package</phase>
|
2018-12-04 12:06:22 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|