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>
|
2021-11-10 15:44:42 +01:00
|
|
|
<version>1.0.8-SNAPSHOT</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>
|
2021-12-07 12:16:29 +01:00
|
|
|
<version>1.0.1-SNAPSHOT</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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
<!-- STORAGE -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.contentmanagement</groupId>
|
|
|
|
<artifactId>storage-manager-core</artifactId>
|
|
|
|
</dependency>
|
2021-09-24 14:58:14 +02:00
|
|
|
|
2021-09-24 12:09:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.contentmanagement</groupId>
|
|
|
|
<artifactId>storage-manager-wrapper</artifactId>
|
|
|
|
</dependency>
|
2021-09-20 16:47:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|