2019-05-09 14:43:09 +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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.data-publishing.gCat-Feeder</groupId>
|
|
|
|
<artifactId>gCat-Feeder-Suite</artifactId>
|
2020-01-14 18:22:24 +01:00
|
|
|
<version>1.0.1</version>
|
2019-05-09 14:43:09 +02:00
|
|
|
</parent>
|
|
|
|
<artifactId>commons</artifactId>
|
|
|
|
<name>commons</name>
|
|
|
|
<description>Common utilities for gCatFeeder logic</description>
|
|
|
|
|
2019-05-08 18:32:58 +02:00
|
|
|
<dependencyManagement>
|
2019-05-09 14:43:09 +02:00
|
|
|
<dependencies>
|
2019-05-08 18:32:58 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2020-01-15 17:49:47 +01:00
|
|
|
<version>1.4.0</version>
|
2019-05-08 18:32:58 +02:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
2019-05-09 14:43:09 +02:00
|
|
|
</dependency>
|
2019-05-08 18:32:58 +02:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2019-03-06 11:13:28 +01:00
|
|
|
<groupId>org.gcube.resourcemanagement</groupId>
|
|
|
|
<artifactId>resourcemanager-client</artifactId>
|
|
|
|
<version>[1.0.0-SNAPSHOT,2.0.0-SNAPSHOT)</version>
|
|
|
|
</dependency>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- GCUBE -->
|
2019-05-08 18:32:58 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-generic-clients</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-gcube-calls</artifactId>
|
|
|
|
</dependency>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
|
2019-05-08 18:32:58 +02:00
|
|
|
|
|
|
|
<!-- JERSEY -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
</dependency>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2019-03-06 11:13:28 +01:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2019-05-08 18:32:58 +02:00
|
|
|
<scope>provided</scope>
|
2019-03-06 11:13:28 +01:00
|
|
|
</dependency>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
2019-03-06 11:13:28 +01:00
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>authorization-client</artifactId>
|
|
|
|
</dependency>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
|
2019-03-12 19:01:29 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
2019-05-09 14:43:09 +02:00
|
|
|
<artifactId>common-encryption</artifactId>
|
2019-03-12 19:01:29 +01:00
|
|
|
</dependency>
|
2019-05-09 14:43:09 +02:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
2019-03-06 11:13:28 +01:00
|
|
|
</project>
|