gFeed/pom.xml

105 lines
2.6 KiB
XML
Raw Normal View History

2020-05-20 15:19:06 +02: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>
</parent>
<groupId>org.gcube.data-publishing.gCat-Feeder</groupId>
<artifactId>gCat-Feeder-Suite</artifactId>
2020-05-08 14:34:12 +02:00
<version>${gFeedSuiteVersion}</version>
<packaging>pom</packaging>
<name>gCat-Feeder Suite</name>
<description>gCat-Feeder Suite of components : service, plugin framework, plugins</description>
2020-05-20 15:19:06 +02:00
<properties>
2020-01-14 15:59:01 +01:00
<distroDirectory>distro</distroDirectory>
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
2020-06-03 17:50:58 +02:00
<gFeedSuiteVersion>1.0.3</gFeedSuiteVersion>
2020-01-14 15:59:01 +01:00
</properties>
<scm>
<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>
<modules>
<module>gCat-Feeder</module>
<module>collectors-plugin-framework</module>
<module>DataMinerAlgorithmsCrawler</module>
<module>commons</module>
<module>catalogue-plugin-framework</module>
<module>gCat-Controller</module>
<module>test-commons</module>
2020-05-07 17:43:22 +02:00
<module>oai-harvester</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-smartgears-bom</artifactId>
2020-01-15 17:49:47 +01:00
<version>1.1.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.gcube.distribution</groupId>
<artifactId>gcube-bom</artifactId>
2020-01-15 17:49:47 +01:00
<version>1.4.0</version>
<type>pom</type>
<scope>import</scope>
2020-05-20 15:19:06 +02:00
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
2020-05-20 15:19:06 +02:00
<!-- TEST -->
2020-05-20 15:19:06 +02:00
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
2020-05-20 15:19:06 +02:00
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<updatePomFile>true</updatePomFile>
<outputDirectory>target</outputDirectory>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>