2019-05-16 12:54:20 +02:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2013-04-17 14:00:21 +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 >
<artifactId > maven-parent</artifactId>
<groupId > org.gcube.tools</groupId>
2024-03-27 11:47:46 +01:00
<version > 1.2.0</version>
2013-04-17 14:00:21 +02:00
</parent>
<groupId > org.gcube.data.transfer</groupId>
<artifactId > uri-resolver</artifactId>
2024-03-27 11:47:46 +01:00
<version > 2.10.0-SNAPSHOT</version>
2013-04-17 14:00:21 +02:00
<packaging > war</packaging>
2022-03-24 17:33:54 +01:00
<description > The URI Resolver is an HTTP URI resolver implemented as a REST service which gives access trough HTTP to different gcube Resolvers and gCube Applications.</description>
2013-04-17 14:00:21 +02:00
2016-03-22 18:01:57 +01:00
<scm >
2019-10-03 12:50:35 +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-03-22 18:01:57 +01:00
</scm>
2013-04-17 14:00:21 +02:00
<properties >
2019-01-16 12:44:38 +01:00
<jersey.version > 2.24.1</jersey.version>
2022-03-24 18:06:54 +01:00
<maven.compiler.source > 1.8</maven.compiler.source>
2017-05-15 16:59:27 +02:00
<maven.compiler.target > 1.8</maven.compiler.target>
2022-03-24 18:06:54 +01:00
<enunciate.version > 2.14.0</enunciate.version>
2013-04-17 14:00:21 +02:00
</properties>
2017-05-16 12:06:43 +02:00
2018-10-12 16:20:46 +02:00
<dependencyManagement >
<dependencies >
<dependency >
<groupId > org.gcube.distribution</groupId>
2019-12-06 14:22:17 +01:00
<artifactId > gcube-smartgears-bom</artifactId>
2024-04-18 17:03:16 +02:00
<version > 2.5.0</version>
2018-10-12 16:20:46 +02:00
<type > pom</type>
<scope > import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2013-04-17 14:00:21 +02:00
<dependencies >
2014-10-13 18:55:53 +02:00
2018-10-12 16:20:46 +02:00
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-smartgears</artifactId>
</dependency>
2018-11-05 17:52:43 +01:00
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-smartgears-app</artifactId>
</dependency>
2018-10-12 16:20:46 +02:00
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > common-authorization</artifactId>
</dependency>
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-wrapper</artifactId>
2021-10-07 10:55:06 +02:00
<version > [3.0.0-SNAPSHOT, 4.0.0-SNAPSHOT)</version>
2013-03-14 12:00:28 +01:00
</dependency>
2018-10-19 17:06:53 +02:00
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-core</artifactId>
2021-10-07 11:02:15 +02:00
<version > [3.0.0-SNAPSHOT,4.0.0-SNAPSHOT)</version>
2013-03-14 12:00:28 +01:00
<exclusions >
<exclusion >
<artifactId > slf4j-nop</artifactId>
<groupId > org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
2018-12-05 16:58:44 +01:00
2018-12-17 15:12:59 +01:00
<dependency >
<groupId > org.gcube.data-publishing</groupId>
<artifactId > storagehub-application-persistence</artifactId>
2024-04-18 17:03:16 +02:00
<version > [1.0.0, 3.0.0-SNAPSHOT)</version>
2022-02-02 14:13:33 +01:00
<exclusions >
<exclusion >
<groupId > org.gcube.common</groupId>
<artifactId > storagehub-client-library</artifactId>
</exclusion>
</exclusions>
2018-12-17 15:12:59 +01:00
</dependency>
2022-02-02 14:13:33 +01:00
2018-12-05 16:58:44 +01:00
<dependency >
<groupId > org.gcube.data.analysis</groupId>
<artifactId > dataminer-invocation-model</artifactId>
2021-01-13 13:00:22 +01:00
<version > [1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
2018-12-05 16:58:44 +01:00
</dependency>
2018-10-19 17:06:53 +02:00
2020-06-18 15:48:47 +02:00
<dependency >
<groupId > org.gcube.infrastructure.detachedres</groupId>
<artifactId > detachedres-library</artifactId>
<version > [1.0.0,2.0.0-SNAPSHOT)</version>
</dependency>
2024-04-18 17:03:16 +02:00
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > authorization-utils</artifactId>
<version > [2.0.0, 3.0.0-SNAPSHOT)</version>
</dependency>
2019-01-09 15:40:51 +01:00
<dependency >
2021-04-07 12:19:51 +02:00
<groupId > com.google.guava</groupId>
<artifactId > guava</artifactId>
<version > 18.0</version>
2019-01-09 15:40:51 +01:00
</dependency>
2018-10-12 16:20:46 +02:00
<dependency >
<groupId > org.gcube.core</groupId>
<artifactId > common-encryption</artifactId>
<scope > compile</scope>
</dependency>
<dependency >
<groupId > org.gcube.resources.discovery</groupId>
<artifactId > discovery-client</artifactId>
</dependency>
2018-10-19 17:06:53 +02:00
2018-10-12 16:20:46 +02:00
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > authorization-client</artifactId>
</dependency>
2018-10-19 17:06:53 +02:00
<dependency >
<groupId > org.gcube.common</groupId>
<artifactId > storagehub-client-library</artifactId>
</dependency>
2018-10-12 16:20:46 +02:00
<dependency >
<groupId > org.glassfish.jersey.containers</groupId>
<artifactId > jersey-container-servlet</artifactId>
2019-02-19 15:18:19 +01:00
<version > ${jersey.version}</version>
<scope > compile</scope>
2018-10-12 16:20:46 +02:00
</dependency>
2018-10-19 17:06:53 +02:00
2018-10-18 18:24:49 +02:00
<dependency >
2019-02-19 15:18:19 +01:00
<groupId > org.glassfish.jersey.core</groupId>
<artifactId > jersey-server</artifactId>
<version > ${jersey.version}</version>
<scope > compile</scope>
2018-10-18 18:24:49 +02:00
</dependency>
2018-10-19 17:06:53 +02:00
2022-03-28 11:52:02 +02:00
<!-- java melody -->
2022-03-28 18:16:30 +02:00
<dependency >
<groupId > net.bull.javamelody</groupId>
<artifactId > javamelody-core</artifactId>
<version > 1.82.0</version>
</dependency>
2022-03-28 11:52:02 +02:00
2022-03-28 11:40:53 +02:00
<!-- https://mvnrepository.com/artifact/javax.interceptor/javax.interceptor - api -->
2022-03-28 18:16:30 +02:00
<dependency >
<groupId > javax.interceptor</groupId>
<artifactId > javax.interceptor-api</artifactId>
<version > 1.2.2</version>
</dependency>
2022-03-28 11:40:53 +02:00
2018-10-18 18:24:49 +02:00
<!-- weld -->
<dependency >
<groupId > javax.enterprise</groupId>
<artifactId > cdi-api</artifactId>
2022-03-24 14:49:48 +01:00
<version > 2.0</version>
2018-10-18 18:24:49 +02:00
</dependency>
<dependency >
<groupId > org.jboss.weld.servlet</groupId>
2022-03-17 16:43:34 +01:00
<artifactId > weld-servlet-core</artifactId>
<version > 3.1.0.Final</version>
2018-10-18 18:24:49 +02:00
</dependency>
<dependency >
<groupId > org.jboss</groupId>
<artifactId > jandex</artifactId>
2022-03-24 14:56:36 +01:00
<version > 2.2.2.Final</version>
2018-10-18 18:24:49 +02:00
</dependency>
2022-03-24 18:06:54 +01:00
2022-03-24 14:56:36 +01:00
<!-- end weld -->
2022-03-24 18:06:54 +01:00
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > javax.servlet</groupId>
<artifactId > javax.servlet-api</artifactId>
<version > 3.0.1</version>
2013-04-25 00:01:46 +02:00
<scope > provided</scope>
2013-03-14 12:00:28 +01:00
</dependency>
2018-10-19 17:06:53 +02:00
2014-10-10 14:53:39 +02:00
<dependency >
2018-10-12 16:20:46 +02:00
<groupId > org.json</groupId>
<artifactId > json</artifactId>
<version > 20140107</version>
2014-10-10 14:53:39 +02:00
<scope > compile</scope>
</dependency>
2021-04-01 17:15:03 +02:00
<dependency >
<groupId > org.projectlombok</groupId>
<artifactId > lombok</artifactId>
<version > 1.14.8</version>
</dependency>
2023-03-23 16:04:23 +01:00
<!-- FOR BUILDING towards JDK_11 -->
<dependency >
<groupId > javax.xml.bind</groupId>
<artifactId > jaxb-api</artifactId>
<version > 2.3.0</version>
<scope > provided</scope>
</dependency>
2023-03-23 16:01:17 +01:00
<!-- FOR BUILDING towards JDK_11 -->
2023-03-23 16:04:23 +01:00
<dependency >
<groupId > org.projectlombok</groupId>
<artifactId > lombok</artifactId>
<version > 1.18.4</version>
<scope > provided</scope>
</dependency>
2018-10-19 17:06:53 +02:00
2018-10-12 16:20:46 +02:00
<!-- GIS RESOLVER DEPENDENCIES -->
2014-10-10 14:53:39 +02:00
<dependency >
2018-10-12 16:20:46 +02:00
<groupId > org.gcube.spatial.data</groupId>
<artifactId > geonetwork</artifactId>
2021-01-13 14:55:06 +01:00
<version > [3.4.5, 4.0.0-SNAPSHOT)</version>
2018-10-12 16:20:46 +02:00
<scope > compile</scope>
2014-10-10 14:53:39 +02:00
</dependency>
2023-03-23 15:54:00 +01:00
<!-- THIS ONE IS NOT A DIRECT DEPENDENCY OF URI - RESOLVER IT IS REQUIRED
TO BUILD -->
<dependency >
<groupId > org.opengis</groupId>
<artifactId > geoapi</artifactId>
<version > 3.0.1</version>
2023-03-23 16:01:17 +01:00
<scope > provided</scope>
2023-03-23 15:54:00 +01:00
</dependency>
2014-10-13 18:55:53 +02:00
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<version > 2.6</version>
</dependency>
2014-10-10 14:53:39 +02:00
<!-- DOM -->
<dependency >
<groupId > org.w3c</groupId>
<artifactId > dom</artifactId>
<version > 2.3.0-jaxb-1.0.6</version>
<scope > compile</scope>
</dependency>
2018-07-20 14:38:09 +02:00
<dependency >
<groupId > org.gcube.data-catalogue</groupId>
<artifactId > ckan-util-library</artifactId>
2019-10-03 12:50:35 +02:00
<version > [2.0.0, 3.0.0-SNAPSHOT)</version>
2018-07-20 14:38:09 +02:00
<scope > compile</scope>
</dependency>
2014-10-10 14:53:39 +02:00
<!-- END GIS RESOLVER DEPENDENCIES -->
2024-04-18 17:03:16 +02:00
<dependency >
<groupId > org.gcube.application</groupId>
<artifactId > geoportal-data-mapper</artifactId>
<version > [1.0.0, 2.0.0-SNAPSHOT)</version>
<!-- Excluding these beacuse geoportal uses [2 - 3] ranges conflicting with
[3-4] used by URI-Resovler -->
<exclusions >
<exclusion >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-wrapper</artifactId>
</exclusion>
<exclusion >
<groupId > org.gcube.contentmanagement</groupId>
<artifactId > storage-manager-core</artifactId>
</exclusion>
</exclusions>
<scope > compile</scope>
</dependency>
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > org.slf4j</groupId>
2022-01-20 10:59:58 +01:00
<artifactId > slf4j-api</artifactId>
2013-03-14 12:00:28 +01:00
</dependency>
2021-06-04 15:09:06 +02:00
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
<version > 1.6.4</version>
<scope > test</scope>
</dependency>
2013-03-14 12:00:28 +01:00
<dependency >
<groupId > commons-io</groupId>
<artifactId > commons-io</artifactId>
<version > 1.2</version>
</dependency>
2018-10-19 17:06:53 +02:00
2018-10-12 16:20:46 +02:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 4.8.2</version>
<scope > test</scope>
</dependency>
2023-03-23 15:54:00 +01:00
2013-04-17 14:00:21 +02:00
</dependencies>
<build >
2014-11-13 15:19:08 +01:00
2014-10-13 19:05:53 +02:00
<resources >
<resource >
<directory > src/main/java</directory>
<includes >
<include > **/*.*</include>
</includes>
</resource>
2014-11-13 15:19:08 +01:00
2014-10-14 11:20:47 +02:00
<resource >
<directory > src/main/resources</directory>
<includes >
<include > **/*.*</include>
</includes>
</resource>
2014-10-13 19:05:53 +02:00
</resources>
2013-04-17 14:00:21 +02:00
<plugins >
2017-05-16 12:06:43 +02:00
<plugin >
<artifactId > maven-compiler-plugin</artifactId>
<configuration >
<source > ${maven.compiler.source}</source>
<target > ${maven.compiler.target}</target>
</configuration>
</plugin>
2022-03-24 13:22:29 +01:00
<!-- Enunciate Maven plugin -->
<plugin >
<groupId > com.webcohesion.enunciate</groupId>
<artifactId > enunciate-maven-plugin</artifactId>
<version > ${enunciate.version}</version>
<configuration >
2022-03-28 11:40:53 +02:00
<!-- <docsDir>${project.build.directory}/docs</docsDir> -->
2022-03-24 13:22:29 +01:00
</configuration>
<executions >
<execution >
<id > assemble</id>
<goals >
<goal > assemble</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Copy Enunciate Docs -->
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-resources-plugin</artifactId>
<version > 2.5</version>
<executions >
<execution >
<id > copy-enunciate-docs</id>
<phase > process-resources</phase>
<goals >
<goal > copy-resources</goal>
</goals>
<configuration >
<outputDirectory > target</outputDirectory>
<resources >
<resource >
<targetPath > ${project.build.directory}/${project.artifactId}-${project.version}/docs</targetPath>
<directory > ${project.build.directory}/docs</directory>
<filtering > true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
2013-04-17 14:00:21 +02:00
</plugins>
</build>
2022-01-31 17:06:32 +01:00
</project>