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>
|
2020-06-22 11:27:39 +02:00
|
|
|
<version>1.2.3</version>
|
2019-03-13 14:43:20 +01:00
|
|
|
</parent>
|
2019-10-24 16:00:28 +02:00
|
|
|
<artifactId>dhp-aggregation</artifactId>
|
2019-12-20 13:41:08 +01:00
|
|
|
|
|
|
|
|
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>
|
2020-03-13 15:56:52 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-03-18 10:44:35 +01:00
|
|
|
</dependency>
|
2020-01-10 15:55:23 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-schemas</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2019-03-18 10:44:35 +01:00
|
|
|
|
|
|
|
|
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>
|
2020-02-19 10:07:08 +01:00
|
|
|
|
2020-05-18 13:04:39 +02:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-csv -->
|
2019-04-11 15:39:29 +02:00
|
|
|
<dependency>
|
2020-05-18 13:04:39 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-csv</artifactId>
|
|
|
|
<version>1.8</version>
|
2020-03-13 15:56:52 +01:00
|
|
|
</dependency>
|
2019-03-18 10:44:35 +01:00
|
|
|
|
2020-05-18 13:04:39 +02:00
|
|
|
|
|
|
|
|
2019-03-13 14:43:20 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|