2021-09-20 16:47:35 +02: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>
|
|
|
|
<artifactId>geoportal-common</artifactId>
|
2022-11-16 16:01:20 +01:00
|
|
|
<version>1.0.9</version>
|
2021-09-20 16:47:35 +02:00
|
|
|
<name>Geoportal Common</name>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.application.cms</groupId>
|
|
|
|
<artifactId>gcube-cms-suite</artifactId>
|
2022-11-16 16:01:20 +01:00
|
|
|
<version>1.0.2</version>
|
2021-09-20 16:47:35 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
|
|
|
|
<sis.version>1.0</sis.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<scm>
|
2021-10-12 15:43:35 +02:00
|
|
|
<connection>scm:git:${gitBaseUrl}/gcube-cms-suite</connection>
|
|
|
|
<developerConnection>scm:git:${gitBaseUrl}/gcube-cms-suite</developerConnection>
|
|
|
|
<url>${gitBaseUrl}/gcube-cms-suite</url>
|
2021-09-20 16:47:35 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
|
2022-06-24 11:42:45 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
|
|
|
<version>${gcube-bom-version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-09-20 16:47:35 +02:00
|
|
|
|
2022-06-22 17:15:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2021-09-20 16:47:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-01-14 12:31:11 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
2022-02-15 19:02:00 +01:00
|
|
|
<version>2.7.0</version>
|
2022-01-14 12:31:11 +01:00
|
|
|
</dependency>
|
2021-09-20 16:47:35 +02:00
|
|
|
|
2022-01-17 18:19:40 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.vdurmont</groupId>
|
|
|
|
<artifactId>semver4j</artifactId>
|
|
|
|
<version>3.1.0</version>
|
2022-01-31 13:09:54 +01:00
|
|
|
<scope>compile</scope>
|
2022-01-17 18:19:40 +01:00
|
|
|
</dependency>
|
|
|
|
|
2022-01-31 17:56:47 +01:00
|
|
|
<!-- STORAGE -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.contentmanagement</groupId>
|
|
|
|
<artifactId>storage-manager-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.contentmanagement</groupId>
|
|
|
|
<artifactId>storage-manager-wrapper</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2021-09-20 16:47:35 +02:00
|
|
|
<!-- TEST -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-09-24 12:09:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
|
|
</dependency>
|
2022-04-27 19:36:10 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.resources</groupId>
|
|
|
|
<artifactId>registry-publisher</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.resources</groupId>
|
|
|
|
<artifactId>registry-publisher</artifactId>
|
|
|
|
</dependency>
|
2021-09-24 14:58:14 +02:00
|
|
|
|
2022-09-26 16:11:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<!-- <version>2.3.0</version>-->
|
|
|
|
</dependency>
|
2022-04-27 19:36:10 +02:00
|
|
|
</dependencies>
|
2021-09-20 16:47:35 +02:00
|
|
|
|
|
|
|
</project>
|