2020-12-01 15:53:44 +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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
2023-06-09 10:59:36 +02:00
|
|
|
<version>1.2.0</version>
|
2020-12-01 15:53:44 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.gcube.application</groupId>
|
|
|
|
<artifactId>geoportal-data-common</artifactId>
|
2023-09-08 12:27:07 +02:00
|
|
|
<version>2.3.0-SNAPSHOT</version>
|
2020-12-01 15:53:44 +01:00
|
|
|
<description>GeoPortal Data Common is common library used by GUI components developed for GeoNA</description>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Francesco Mangiacrapa</name>
|
|
|
|
<email>francesco.mangiacrapa@isti.cnr.it</email>
|
|
|
|
<organization>CNR Pisa, Istituto di Scienza e Tecnologie dell'Informazione "A. Faedo"</organization>
|
|
|
|
<roles>
|
|
|
|
<role>architect</role>
|
|
|
|
<role>developer</role>
|
|
|
|
</roles>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<properties>
|
2022-03-07 11:52:43 +01:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2020-12-01 15:53:44 +01:00
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2023-05-11 15:51:38 +02:00
|
|
|
<version>2.3.0</version>
|
2020-12-01 15:53:44 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- FWS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.resources.discovery</groupId>
|
|
|
|
<artifactId>ic-client</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- END FWS -->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-encryption</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-07-30 11:37:46 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.application</groupId>
|
|
|
|
<artifactId>geoportal-client</artifactId>
|
2022-08-02 17:05:39 +02:00
|
|
|
<version>[1.1.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
|
2021-07-30 11:37:46 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-01 15:53:44 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.portlets.user</groupId>
|
2023-05-11 15:49:06 +02:00
|
|
|
<artifactId>uri-resolver-manager</artifactId>
|
2020-12-01 15:53:44 +01:00
|
|
|
<version>[1.0.0,2.0.0-SNAPSHOT)</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-12-01 16:37:17 +01:00
|
|
|
|
2022-11-16 16:40:27 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
2022-12-13 14:23:04 +01:00
|
|
|
<version>20090211</version>
|
2022-11-17 10:05:33 +01:00
|
|
|
<scope>compile</scope>
|
2022-11-16 16:40:27 +01:00
|
|
|
</dependency>
|
|
|
|
|
2022-09-22 15:55:27 +02:00
|
|
|
<!-- REQUIRED FOR JDK_11 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-01 12:19:37 +01:00
|
|
|
<!-- LOGGER -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2020-12-01 15:53:44 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.6.4</version>
|
2022-03-01 12:19:37 +01:00
|
|
|
<scope>test</scope>
|
2020-12-01 15:53:44 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- JUNIT -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2023-05-11 15:49:06 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>9.4.1212</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-01 15:53:44 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
|
|
<resources>
|
2020-12-01 16:54:59 +01:00
|
|
|
<!-- DO NOT REMOVE THIS -->
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2020-12-01 16:37:17 +01:00
|
|
|
|
2020-12-01 15:53:44 +01:00
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
|
|
|
<!-- <finalName>${artifactId}</finalName> -->
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>descriptor.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>servicearchive</id>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|