2019-04-03 16:05:16 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<!-- Inherit defaults from Spring Boot -->
|
|
|
|
<parent>
|
2019-10-02 14:45:12 +02:00
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-applications</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-04-03 16:05:16 +02:00
|
|
|
<relativePath>../</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2019-10-02 14:45:12 +02:00
|
|
|
|
2019-04-03 16:05:16 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>dhp-collector-worker</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-04-11 15:39:29 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.19.1</version>
|
|
|
|
<configuration>
|
|
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<configuration>
|
|
|
|
<detectLinks>true</detectLinks>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
|
|
|
|
2019-04-03 16:05:16 +02:00
|
|
|
<dependencies>
|
2019-04-03 16:03:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-common</artifactId>
|
|
|
|
</dependency>
|
2019-04-11 15:39:29 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
2019-04-03 16:05:16 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-client</artifactId>
|
|
|
|
<version>2.6.0-cdh5.9.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
2019-10-02 14:45:12 +02:00
|
|
|
<version>2.9.8</version>
|
2019-04-03 16:05:16 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
2019-10-02 14:45:12 +02:00
|
|
|
<version>2.9.0</version>
|
2019-04-03 16:05:16 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2019-10-02 14:45:12 +02:00
|
|
|
<version>2.9.8</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
<version>1.1.6</version>
|
2019-04-03 16:05:16 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
2019-10-02 14:45:12 +02:00
|
|
|
<version>1.6.1</version>
|
|
|
|
<scope>compile</scope>
|
2019-04-03 16:05:16 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-10-02 14:45:12 +02:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>2.9.8</version>
|
|
|
|
<scope>compile</scope>
|
2019-04-03 16:05:16 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-10-02 14:45:12 +02:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2019-04-03 16:05:16 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<dhp.cdh.version>cdh5.9.2</dhp.cdh.version>
|
|
|
|
<dhp.hadoop.version>2.6.0-${dhp.cdh.version}</dhp.hadoop.version>
|
|
|
|
<dhp.spark.version>2.2.0</dhp.spark.version>
|
|
|
|
<scala.version>2.11.8</scala.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|