2019-12-06 13:38:00 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-02-13 18:09:31 +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-12-06 13:38:00 +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>
|
2019-12-06 13:38:00 +01:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-03-25 15:57:09 +01:00
|
|
|
<artifactId>dhp-dedup-openaire</artifactId>
|
2020-03-26 14:08:29 +01:00
|
|
|
|
2020-01-20 16:04:19 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<version>${net.alchim31.maven.version}</version>
|
2020-01-20 16:04:19 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>scala-compile-first</id>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>scala-test-compile</id>
|
|
|
|
<phase>process-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2023-07-17 17:18:46 +02:00
|
|
|
<failOnMultipleScalaVersions>true</failOnMultipleScalaVersions>
|
|
|
|
<scalaCompatVersion>${scala.binary.version}</scalaCompatVersion>
|
2020-01-20 16:04:19 +01:00
|
|
|
<scalaVersion>${scala.version}</scalaVersion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
2019-12-06 13:38:00 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
2023-07-06 10:02:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-pace-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-07-17 17:18:46 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-07-06 10:02:23 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.scala-lang.modules</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>scala-java8-compat_${scala.binary.version}</artifactId>
|
2023-07-06 10:02:23 +02:00
|
|
|
<version>1.0.2</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.scala-lang.modules</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>scala-collection-compat_${scala.binary.version}</artifactId>
|
|
|
|
<version>2.11.0</version>
|
2023-07-06 10:02:23 +02:00
|
|
|
</dependency>
|
|
|
|
|
2019-12-06 13:38:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>spark-core_${scala.binary.version}</artifactId>
|
2019-12-06 13:38:00 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>spark-sql_${scala.binary.version}</artifactId>
|
2019-12-06 13:38:00 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-07-06 10:02:23 +02:00
|
|
|
<groupId>org.apache.spark</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>spark-graphx_${scala.binary.version}</artifactId>
|
2019-12-06 13:38:00 +01:00
|
|
|
</dependency>
|
2021-04-27 10:12:27 +02:00
|
|
|
|
2019-12-06 13:38:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.arakelian</groupId>
|
|
|
|
<artifactId>java-jq</artifactId>
|
|
|
|
</dependency>
|
2020-03-20 19:17:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
</dependency>
|
2019-12-06 13:38:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
2021-02-26 10:19:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</dependency>
|
2021-03-29 16:10:46 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.4.200</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-12-06 13:38:00 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|