2019-10-03 09:42:19 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-02-15 18:14:30 +01: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>
|
2019-09-25 13:58:01 +02:00
|
|
|
<version>1.1.0</version>
|
2018-02-15 18:14:30 +01:00
|
|
|
<relativePath />
|
|
|
|
</parent>
|
|
|
|
|
2019-10-03 09:42:19 +02:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/storagehub-model.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/storagehub-model.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/storagehub-model</url>
|
|
|
|
</scm>
|
2019-09-20 10:45:45 +02:00
|
|
|
|
2018-02-15 18:14:30 +01:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>storagehub-model</artifactId>
|
2021-10-15 13:14:45 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2018-02-15 18:14:30 +01:00
|
|
|
<name>storagehub-model</name>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2021-04-16 11:46:29 +02:00
|
|
|
<version>2.0.1</version>
|
2018-02-15 18:14:30 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-04-29 16:59:01 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<jackson.version>2.8.11</jackson.version>
|
|
|
|
</properties>
|
|
|
|
|
2018-02-15 18:14:30 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.14.8</version>
|
|
|
|
</dependency>
|
2021-04-16 11:46:29 +02:00
|
|
|
|
2018-02-15 18:14:30 +01:00
|
|
|
<dependency>
|
2021-04-29 16:59:01 +02:00
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-clients</artifactId>
|
2018-02-15 18:14:30 +01:00
|
|
|
</dependency>
|
2021-04-29 16:59:01 +02:00
|
|
|
|
2019-06-18 14:16:33 +02:00
|
|
|
<dependency>
|
2021-04-16 11:46:29 +02:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2021-04-29 16:59:01 +02:00
|
|
|
<version>${jackson.version}</version>
|
2019-06-18 14:16:33 +02:00
|
|
|
</dependency>
|
2021-04-29 16:59:01 +02:00
|
|
|
|
2018-02-15 18:14:30 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.6.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.10</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-04-29 16:59:01 +02:00
|
|
|
|
2018-02-15 18:14:30 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<target>1.8</target>
|
|
|
|
<source>1.8</source>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-10-06 05:12:34 +02:00
|
|
|
</project>
|