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>
|
2026-01-28 11:32:39 +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>
|
2026-07-17 15:22:37 +02:00
|
|
|
<version>2.11.0-SNAPSHOT</version>
|
2013-04-17 14:00:21 +02:00
|
|
|
<packaging>war</packaging>
|
2025-11-14 12:10:17 +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>
|
2025-11-14 12:10:17 +01: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>
|
2019-10-03 12:50:35 +02:00
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
2016-03-22 18:01:57 +01:00
|
|
|
</scm>
|
|
|
|
|
|
2024-04-30 16:24:51 +02:00
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<!-- PROD profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>uri-resolver-release-profile</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>Release</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2024-05-08 11:09:15 +02:00
|
|
|
<!-- <gcube-bom>2.4.0</gcube-bom> -->
|
2024-09-23 15:29:28 +02:00
|
|
|
<gcube-smartgears-bom-version>2.5.1</gcube-smartgears-bom-version>
|
2024-04-30 16:24:51 +02:00
|
|
|
<authorization-utils-range>[2.0.0, 3.0.0-SNAPSHOT)</authorization-utils-range>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<!-- DEV profile -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>uri-resolver-snapshot-profile</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>!Release</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
2024-05-08 11:09:15 +02:00
|
|
|
<!-- <gcube-bom>2.4.1-SNAPSHOT</gcube-bom> -->
|
2024-09-23 15:29:28 +02:00
|
|
|
<gcube-smartgears-bom-version>2.5.1-SNAPSHOT</gcube-smartgears-bom-version>
|
2024-04-30 16:24:51 +02:00
|
|
|
<authorization-utils-range>[2.0.0, 3.0.0-SNAPSHOT)</authorization-utils-range>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
|
2013-04-17 14:00:21 +02:00
|
|
|
<properties>
|
2024-04-19 14:20:04 +02:00
|
|
|
<jersey.version>2.25.1</jersey.version>
|
2025-11-14 12:10:17 +01:00
|
|
|
<!-- Using 2.8.4 because storagehub-model.1.1.1 uses indirectly this
|
2026-04-29 15:40:00 +02:00
|
|
|
version via jsersey-media-json -->
|
|
|
|
|
<jackson.version>2.8.4</jackson.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-30 16:24:51 +02:00
|
|
|
<version>${gcube-smartgears-bom-version}</version>
|
2018-10-12 16:20:46 +02:00
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
2026-02-10 15:20:40 +01:00
|
|
|
<repositories>
|
2026-02-10 15:38:53 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>geo-solutions-snapshots</id>
|
|
|
|
|
<url>https://nexus.d4science.org/nexus/content/repositories/geo-solutions-snapshots/</url>
|
|
|
|
|
</repository>
|
2026-02-10 15:20:40 +01:00
|
|
|
<repository>
|
2026-02-10 17:04:50 +01:00
|
|
|
<id>geotoolkit-mirror</id>
|
2026-02-10 15:20:40 +01:00
|
|
|
<url>https://nexus.d4science.org/nexus/content/repositories/geotoolkit/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
2024-04-30 16:24:51 +02:00
|
|
|
|
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>
|
|
|
|
|
|
2024-10-15 16:06:43 +02:00
|
|
|
<dependency>
|
2024-10-15 16:45:28 +02:00
|
|
|
<groupId>org.eclipse.microprofile.health</groupId>
|
|
|
|
|
<artifactId>microprofile-health-api</artifactId>
|
|
|
|
|
<version>4.0</version>
|
2024-10-15 16:06:43 +02:00
|
|
|
</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>
|
2024-06-28 15:22:06 +02:00
|
|
|
<version>[3.0.0, 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>
|
2024-06-28 15:22:06 +02:00
|
|
|
<version>[3.0.0,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>
|
2024-06-28 15:22:06 +02:00
|
|
|
<version>[1.0.0,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>
|
2024-04-30 16:24:51 +02:00
|
|
|
<version>${authorization-utils-range}</version>
|
2024-04-18 17:03:16 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2025-11-14 12:10:17 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
|
|
|
|
<artifactId>uri-resolver-manager</artifactId>
|
|
|
|
|
<version>[1.0.0, 2.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>
|
|
|
|
|
|
2024-11-29 16:55:33 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
<version>2.3.32</version>
|
|
|
|
|
</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-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
|
|
|
|
2024-05-08 10:36:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2024-05-02 15:42:50 +02:00
|
|
|
|
2024-05-08 10:36:26 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
</dependency>
|
2024-05-02 15:42:50 +02:00
|
|
|
|
2024-05-02 15:26:52 +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
|
|
|
|
2025-11-14 12:10:17 +01: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>
|
|
|
|
|
|
2023-03-23 16:04:23 +01:00
|
|
|
<!-- FOR BUILDING towards JDK_11 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
2024-05-08 10:36:26 +02:00
|
|
|
<!-- <version>2.3.0</version> -->
|
2023-03-23 16:04:23 +01:00
|
|
|
<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>
|
2024-05-08 10:36:26 +02:00
|
|
|
<!-- <version>1.18.4</version> -->
|
2023-03-23 16:04:23 +01:00
|
|
|
<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>
|
2024-05-08 11:59:16 +02:00
|
|
|
<groupId>org.gcube.datacatalogue</groupId>
|
|
|
|
|
<artifactId>catalogue-util-library</artifactId>
|
2026-07-17 15:22:37 +02:00
|
|
|
<version>[3.0.0-SNAPSHOT, 4.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>
|
2024-11-29 16:55:33 +01:00
|
|
|
<version>[1.1.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2025-11-14 12:10:17 +01:00
|
|
|
<!-- Excluding these beacuse geoportal uses [2-3] ranges conflicting
|
|
|
|
|
with
|
2024-04-30 14:20:22 +02:00
|
|
|
[3-4] used by URI-Resolver -->
|
2024-04-18 17:03:16 +02:00
|
|
|
<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>
|
2026-01-27 13:19:05 +01:00
|
|
|
</configuration>
|
2017-05-16 12:06:43 +02:00
|
|
|
</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>
|
2025-11-14 12:10:17 +01:00
|
|
|
<targetPath>
|
|
|
|
|
${project.build.directory}/${project.artifactId}-${project.version}/docs</targetPath>
|
2022-03-24 13:22:29 +01:00
|
|
|
<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>
|