dnet-dedup/dnet-dedup-test/pom.xml

89 lines
2.8 KiB
XML
Raw Normal View History

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>
<version>3.0.3-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>
2019-03-26 15:40:40 +01:00
<sourceDirectory>src/main/java</sourceDirectory>
2018-10-18 11:56:26 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
2019-03-26 15:40:40 +01:00
<!--<configuration>-->
<!--<skip>true</skip>-->
<!--</configuration>-->
2018-10-18 11:56:26 +02:00
</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
<dependency>
<groupId>eu.dnetlib</groupId>
2018-10-18 11:56:26 +02:00
<artifactId>dnet-pace-core</artifactId>
<version>${project.version}</version>
</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>
<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>
2019-03-26 15:40:40 +01:00
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_2.11</artifactId>
</dependency>
<dependency>
<groupId>eu.dnetlib</groupId>
<artifactId>dnet-openaireplus-mapping-utils</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
2019-03-26 15:40:40 +01:00
<dependency>
<groupId>org.apache.oozie</groupId>
<artifactId>oozie-client</artifactId>
<scope>test</scope>
</dependency>
2018-10-02 10:55:29 +02:00
</dependencies>
</project>