2019-11-22 18:17:10 +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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.data.publishing</groupId>
|
|
|
|
<artifactId>ckan2zenodo-library</artifactId>
|
2020-01-20 11:26:06 +01:00
|
|
|
<version>0.0.1</version>
|
2019-11-22 18:17:10 +01:00
|
|
|
<name>CKAN 2 Zenodo Library</name>
|
|
|
|
<description>Library to publish d4science CKAN items into Zenodo</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
2019-11-26 14:55:20 +01:00
|
|
|
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem/</gitBaseUrl>
|
2019-11-22 18:17:10 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
2019-12-06 14:32:56 +01:00
|
|
|
<version>1.4.0</version>
|
2019-11-22 18:17:10 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
2020-01-17 18:37:07 +01:00
|
|
|
</dependency>
|
2019-11-22 18:17:10 +01:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.data-publishing</groupId>
|
|
|
|
<artifactId>gcat-client</artifactId>
|
|
|
|
<version>[1.2.0,2.0.0-SNAPSHOT)</version>
|
2019-11-27 18:21:01 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-11-22 18:17:10 +01:00
|
|
|
</dependency>
|
|
|
|
|
2020-01-17 18:37:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.core</groupId>
|
|
|
|
<artifactId>common-encryption</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-11-22 18:17:10 +01:00
|
|
|
<!-- EXTERNAL -->
|
2019-11-22 16:31:50 +01:00
|
|
|
<!-- lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.14.8</version>
|
|
|
|
</dependency>
|
2019-11-22 18:17:10 +01:00
|
|
|
|
2019-11-27 18:21:01 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
2020-01-17 18:37:07 +01:00
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-multipart</artifactId>
|
2019-11-27 18:21:01 +01:00
|
|
|
</dependency>
|
2020-01-17 18:37:07 +01:00
|
|
|
|
2019-11-26 14:55:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
<version>2.4.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-11-27 18:21:01 +01:00
|
|
|
|
|
|
|
<!-- Test log binding -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-01-17 18:37:07 +01:00
|
|
|
|
2019-11-26 14:55:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2019-11-22 18:17:10 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
2019-11-22 16:31:50 +01:00
|
|
|
</project>
|