2020-02-17 11:44:48 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-05-25 19:48:14 +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/xsd/maven-4.0.0.xsd">
|
2020-02-17 11:44:48 +01:00
|
|
|
<parent>
|
|
|
|
<artifactId>dhp-workflows</artifactId>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2022-04-07 13:32:22 +02:00
|
|
|
<version>1.2.5-SNAPSHOT</version>
|
2020-02-17 11:44:48 +01:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-05-11 17:32:06 +02:00
|
|
|
<artifactId>dhp-enrichment</artifactId>
|
2020-03-03 16:38:50 +01:00
|
|
|
<dependencies>
|
2020-02-17 11:44:48 +01:00
|
|
|
|
2020-03-03 16:38:50 +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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2021-04-27 10:12:27 +02:00
|
|
|
|
2020-05-11 17:32:06 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-hive_2.11</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-03-03 16:38:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
</dependency>
|
2020-04-23 11:08:47 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
</dependency>
|
2020-03-03 16:38:50 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
</dependency>
|
2020-05-11 17:32:06 +02:00
|
|
|
|
2020-04-23 11:08:47 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.classgraph</groupId>
|
|
|
|
<artifactId>classgraph</artifactId>
|
|
|
|
</dependency>
|
2021-10-29 11:20:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-aggregation</artifactId>
|
2022-04-07 13:32:22 +02:00
|
|
|
<version>1.2.5-SNAPSHOT</version>
|
2021-10-29 11:20:03 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-05-11 17:32:06 +02:00
|
|
|
|
|
|
|
|
2020-03-03 16:38:50 +01:00
|
|
|
</dependencies>
|
2020-02-17 11:44:48 +01:00
|
|
|
|
2020-04-23 11:08:47 +02:00
|
|
|
|
2020-05-11 17:32:06 +02:00
|
|
|
|
2020-02-17 11:44:48 +01:00
|
|
|
</project>
|