2018-10-02 10:55:29 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-10-18 11:56:26 +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/maven-v4_0_0.xsd">
|
|
|
|
|
2018-10-02 10:55:29 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-10-18 11:56:26 +02:00
|
|
|
|
2018-10-02 10:55:29 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
2018-10-18 11:56:26 +02:00
|
|
|
<artifactId>dnet-dedup</artifactId>
|
2018-11-12 11:28:28 +01:00
|
|
|
<version>3.0.1-SNAPSHOT</version>
|
2018-10-18 11:56:26 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2018-10-02 10:55:29 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>dnet-dedup-test</artifactId>
|
2018-10-18 11:56:26 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<includes>
|
|
|
|
<include>src/main/java/**/*.java</include>
|
|
|
|
<include>src/main/java/**/*.scala</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-10-02 10:55:29 +02:00
|
|
|
|
|
|
|
<dependencies>
|
2018-10-18 10:12:44 +02:00
|
|
|
|
2018-10-02 17:07:17 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
2018-10-18 11:56:26 +02:00
|
|
|
<artifactId>dnet-pace-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2018-10-02 17:07:17 +02:00
|
|
|
</dependency>
|
|
|
|
|
2018-10-02 10:55:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
2018-10-18 11:56:26 +02:00
|
|
|
<artifactId>dnet-openaire-data-protos</artifactId>
|
2018-10-02 10:55:29 +02:00
|
|
|
</dependency>
|
|
|
|
|
2018-10-02 17:07:17 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-core_2.11</artifactId>
|
|
|
|
</dependency>
|
2018-10-11 15:19:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-graphx_2.11</artifactId>
|
|
|
|
</dependency>
|
2018-10-18 15:30:51 +02:00
|
|
|
|
2018-11-06 12:09:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>dnet-openaireplus-mapping-utils</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-10-18 15:30:51 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2018-10-02 10:55:29 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|