2019-03-06 11:13:28 +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>
|
2020-01-14 17:11:30 +01:00
|
|
|
<version>1.1.0</version>
|
2019-03-06 11:13:28 +01:00
|
|
|
</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-03-06 11:13:28 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>gCat-Feeder Suite</name>
|
|
|
|
<description>gCat-Feeder Suite of components : service, plugin framework, plugins</description>
|
2019-03-14 19:07:56 +01:00
|
|
|
|
|
|
|
|
2020-01-14 15:59:01 +01:00
|
|
|
<properties>
|
|
|
|
<distroDirectory>distro</distroDirectory>
|
2020-01-26 05:23:37 +01:00
|
|
|
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
|
2020-01-14 15:59:01 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2020-01-26 05:23:37 +01:00
|
|
|
<connection>scm:git:${gitBaseUrl}/gFeed</connection>
|
|
|
|
<developerConnection>scm:git:${gitBaseUrl}/gFeed</developerConnection>
|
|
|
|
<url>${gitBaseUrl}/gFeed</url>
|
2020-01-14 15:59:01 +01:00
|
|
|
</scm>
|
|
|
|
|
2019-03-14 19:07:56 +01:00
|
|
|
<modules>
|
|
|
|
<module>gCat-Feeder</module>
|
|
|
|
<module>collectors-plugin-framework</module>
|
|
|
|
<module>DataMinerAlgorithmsCrawler</module>
|
|
|
|
<module>commons</module>
|
|
|
|
<module>catalogue-plugin-framework</module>
|
2019-03-18 15:58:59 +01:00
|
|
|
<module>gCat-Controller</module>
|
2019-03-19 18:02:08 +01:00
|
|
|
<module>test-commons</module>
|
2019-03-06 11:13:28 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
2019-05-08 18:32:58 +02:00
|
|
|
<artifactId>gcube-smartgears-bom</artifactId>
|
2020-01-15 17:49:47 +01:00
|
|
|
<version>1.1.0</version>
|
2019-03-06 11:13:28 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
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>
|
|
|
|
</dependency>
|
2019-03-06 11:13:28 +01:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-03-14 19:07:56 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2019-05-08 18:32:58 +02:00
|
|
|
|
2019-03-14 19:07:56 +01:00
|
|
|
|
2019-05-08 18:32:58 +02:00
|
|
|
|
|
|
|
<!-- TEST -->
|
|
|
|
|
2019-03-14 19:07:56 +01:00
|
|
|
<dependency>
|
2019-03-06 11:13:28 +01:00
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.13</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-03-14 19:07:56 +01:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
2019-03-06 11:13:28 +01:00
|
|
|
</project>
|