ckan2zenodo-library/pom.xml

98 lines
2.4 KiB
XML
Raw Normal View History

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>
2023-12-13 16:14:43 +01:00
<version>1.2.0</version>
2019-11-22 18:17:10 +01:00
</parent>
<groupId>org.gcube.data.publishing</groupId>
<artifactId>ckan2zenodo-library</artifactId>
2023-12-21 09:01:27 +01:00
<version>1.0.4</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>
2020-02-14 11:53:24 +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>
2023-03-28 12:31:36 +02:00
<version>2.1.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>
2021-04-07 11:53:08 +02:00
<dependency>
<groupId>org.gcube.data-catalogue</groupId>
2019-11-22 18:17:10 +01:00
<artifactId>gcat-client</artifactId>
2023-03-28 12:39:25 +02:00
<version>[2.0.0,3.0.0-SNAPSHOT)</version>
2019-11-22 18:17:10 +01:00
</dependency>
2021-04-07 11:53:08 +02:00
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>
2023-03-28 12:39:25 +02:00
<version>1.18.4</version>
2019-11-22 16:31:50 +01:00
</dependency>
2019-11-22 18:17:10 +01:00
2022-03-01 17:39:43 +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>