2019-03-13 14:43:20 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-10-31 12:08:49 +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">
|
2019-03-13 14:43:20 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2019-03-18 10:44:35 +01:00
|
|
|
<artifactId>dhp-workflows</artifactId>
|
2019-11-07 17:39:30 +01:00
|
|
|
<version>1.0.5-SNAPSHOT</version>
|
2019-03-13 14:43:20 +01:00
|
|
|
</parent>
|
2019-10-24 16:00:28 +02:00
|
|
|
<artifactId>dhp-aggregation</artifactId>
|
2019-03-13 14:43:20 +01:00
|
|
|
<dependencies>
|
2019-11-08 17:41:51 +01:00
|
|
|
|
2019-03-13 14:43:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-core_2.11</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-sql_2.11</artifactId>
|
|
|
|
</dependency>
|
2019-04-11 15:39:29 +02:00
|
|
|
|
2019-03-18 10:44:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-common</artifactId>
|
2019-11-08 17:41:51 +01:00
|
|
|
<version>${project.version}</version>
|
2019-03-18 10:44:35 +01:00
|
|
|
</dependency>
|
|
|
|
|
2019-10-10 11:33:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
|
|
|
</dependency>
|
2019-03-18 10:44:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
2019-10-18 10:50:55 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
2019-03-18 10:44:35 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
</dependency>
|
2019-10-18 10:50:55 +02:00
|
|
|
|
2019-04-11 15:39:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>2.25.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-03-18 10:44:35 +01:00
|
|
|
|
2019-03-13 14:43:20 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|