This repository has been archived on 2021-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
geoportal-common/pom.xml

106 lines
2.4 KiB
XML
Raw Normal View History

2020-11-11 15:14:48 +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>
<groupId>org.gcube.application</groupId>
<artifactId>geoportal-common</artifactId>
2021-08-03 12:21:25 +02:00
<version>1.0.6-SNAPSHOT</version>
2020-11-11 15:14:48 +01:00
<name>Geoportal Common</name>
<parent>
<artifactId>maven-parent</artifactId>
<groupId>org.gcube.tools</groupId>
<version>1.1.0</version>
2020-11-12 18:02:51 +01:00
2020-11-11 15:14:48 +01:00
</parent>
2020-11-12 18:02:51 +01:00
<properties>
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
<sis.version>1.0</sis.version>
</properties>
2020-11-11 15:14:48 +01:00
<scm>
<connection>scm:git:${gitBaseUrl}/${project.artifactId}.git</connection>
<developerConnection>scm:git:${gitBaseUrl}/${project.artifactId}.git</developerConnection>
<url>${gitBaseUrl}/${project.artifactId}.git</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
2021-08-03 12:21:25 +02:00
<version>2.0.1</version>
2020-11-11 15:14:48 +01:00
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.14.8</version>
</dependency>
2020-12-16 17:55:08 +01:00
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>authorization-client</artifactId>
</dependency>
2020-11-11 15:14:48 +01:00
<!-- TEST -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.11</version>
</dependency>
2020-12-16 17:55:08 +01:00
2020-11-17 18:16:19 +01:00
<!-- read JSON -->
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
2020-12-16 17:55:08 +01:00
<!-- jackson java time -->
2020-11-17 18:16:19 +01:00
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.8.8</version>
2020-11-12 18:02:51 +01:00
</dependency>
2020-12-16 17:55:08 +01:00
<!-- STORAGE -->
<dependency>
<groupId>org.gcube.contentmanagement</groupId>
<artifactId>storage-manager-core</artifactId>
2021-08-06 11:42:52 +02:00
<version>[2.0.0, 3.0.0-SNAPSHOT)</version>
2020-12-16 17:55:08 +01:00
</dependency>
<dependency>
<groupId>org.gcube.contentmanagement</groupId>
<artifactId>storage-manager-wrapper</artifactId>
2021-08-06 11:42:52 +02:00
<version>[2.0.0, 3.0.0-SNAPSHOT)</version>
2020-12-16 17:55:08 +01:00
</dependency>
2020-11-11 15:14:48 +01:00
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
2020-11-12 18:02:51 +01:00
2020-11-11 15:14:48 +01:00
</dependencies>
</project>