gFeed/oai-harvester/pom.xml

97 lines
2.2 KiB
XML
Raw Permalink Normal View History

2020-12-15 17:16:49 +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>
2020-12-16 15:57:26 +01:00
<parent>
<groupId>org.gcube.data-publishing.gFeed</groupId>
<artifactId>gFeed-Suite</artifactId>
2022-11-04 14:50:36 +01:00
<version>1.0.6</version>
2020-12-16 15:57:26 +01:00
</parent>
2020-12-15 17:16:49 +01:00
<artifactId>oai-harvester</artifactId>
<name>oai-harvester</name>
2022-11-14 16:45:02 +01:00
<version>1.0.8</version>
2020-05-07 17:43:22 +02:00
<scm>
<connection>scm:git:${gitBaseUrl}/gFeed</connection>
<developerConnection>scm:git:${gitBaseUrl}/gFeed</developerConnection>
<url>${gitBaseUrl}/gFeed</url>
2020-12-15 17:16:49 +01:00
</scm>
2020-05-07 17:43:22 +02:00
<dependencies>
<dependency>
<groupId>org.gcube.common</groupId>
<artifactId>common-authorization</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.core</groupId>
<artifactId>common-scope</artifactId>
</dependency>
2020-12-15 19:07:33 +01:00
<dependency>
<groupId>org.gcube.data-publishing.gFeed</groupId>
<artifactId>commons</artifactId>
</dependency>
<dependency>
<groupId>org.gcube.data-publishing.gFeed</groupId>
<artifactId>collectors-plugin-framework</artifactId>
</dependency>
2020-12-16 15:57:26 +01:00
2022-11-10 17:30:17 +01:00
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
2020-05-07 17:43:22 +02:00
<dependency>
2020-12-15 17:43:52 +01:00
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
2020-05-07 17:43:22 +02:00
</dependency>
2020-12-16 15:57:26 +01:00
2020-05-07 17:43:22 +02:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2020-12-15 17:16:49 +01:00
2020-05-07 17:43:22 +02:00
<dependency>
<groupId>org.gcube.data-publishing</groupId>
<artifactId>gcat-client</artifactId>
2020-12-16 14:32:05 +01:00
<version>[1.2.0,2.0.0)</version>
2020-05-07 17:43:22 +02:00
</dependency>
2020-12-15 17:16:49 +01:00
2020-05-07 17:43:22 +02:00
<!-- TEST -->
<dependency>
2020-12-15 18:32:47 +01:00
<groupId>org.gcube.data-publishing.gFeed</groupId>
2020-05-07 17:43:22 +02:00
<artifactId>test-commons</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-uberjar</id>
<phase>package</phase>
</execution>
<execution>
<id>make-servicearchive</id>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>