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>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.data-publishing.gCat-Feeder</groupId>
|
|
|
|
<artifactId>gCat-Feeder-Suite</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>gCat-Feeder Suite</name>
|
|
|
|
<description>gCat-Feeder Suite of components : service, plugin framework, plugins</description>
|
|
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>gCat-Feeder</module>
|
2019-03-07 17:34:33 +01:00
|
|
|
<module>collectors-plugin-framework</module>
|
2019-03-06 11:13:28 +01:00
|
|
|
<module>DataMinerAlgorithmsCrawler</module>
|
|
|
|
<module>commons</module>
|
2019-03-11 18:40:39 +01:00
|
|
|
<module>catalogue-plugin-framework</module>
|
2019-03-06 11:13:28 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
|
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|