dnet-hadoop/dhp-workflows/dhp-graph-mapper/pom.xml

137 lines
4.7 KiB
XML
Raw Normal View History

2019-10-24 16:00:28 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<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-10-24 16:00:28 +02:00
<parent>
<artifactId>dhp-workflows</artifactId>
<groupId>eu.dnetlib.dhp</groupId>
<version>1.2.5-SNAPSHOT</version>
2019-10-24 16:00:28 +02:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>dhp-graph-mapper</artifactId>
2020-07-10 14:44:50 +02:00
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${net.alchim31.maven.version}</version>
2020-07-10 14:44:50 +02: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>
2021-03-05 15:45:28 +01:00
<args>
<arg>-Xmax-classfile-name</arg>
2021-07-06 11:30:56 +02:00
<arg>200</arg>
2021-03-05 15:45:28 +01:00
</args>
<failOnMultipleScalaVersions>true</failOnMultipleScalaVersions>
<scalaCompatVersion>${scala.binary.version}</scalaCompatVersion>
2020-07-10 14:44:50 +02:00
<scalaVersion>${scala.version}</scalaVersion>
</configuration>
</plugin>
</plugins>
</build>
2019-10-24 16:00:28 +02:00
<dependencies>
2020-08-07 16:46:37 +02:00
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-compress -->
<dependency>
2020-08-07 16:46:37 +02:00
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
2020-02-19 10:07:08 +01:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
</dependency>
2019-10-24 16:00:28 +02:00
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_${scala.binary.version}</artifactId>
2019-10-24 16:00:28 +02:00
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-sql_${scala.binary.version}</artifactId>
2019-10-24 16:00:28 +02:00
</dependency>
2020-03-26 18:26:40 +01:00
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-hive_${scala.binary.version}</artifactId>
2020-03-26 18:26:40 +01:00
<scope>test</scope>
<exclusions>
<exclusion>
2021-03-05 15:45:28 +01:00
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
</exclusions>
2020-03-26 18:26:40 +01:00
</dependency>
2019-10-24 16:00:28 +02:00
<dependency>
<groupId>eu.dnetlib.dhp</groupId>
<artifactId>dhp-common</artifactId>
<version>${project.version}</version>
2019-10-24 16:00:28 +02:00
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</dependency>
2020-02-19 10:07:08 +01:00
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
</dependency>
<dependency>
<groupId>io.fares.junit.mongodb</groupId>
<artifactId>mongodb-junit-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
2020-06-18 11:34:47 +02:00
<dependency>
2020-07-20 18:10:03 +02:00
2020-06-18 11:34:47 +02:00
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
</dependency>
<dependency>
2020-07-08 12:50:57 +02:00
<groupId>com.github.victools</groupId>
<artifactId>jsonschema-generator</artifactId>
<scope>test</scope>
</dependency>
2020-07-10 14:44:50 +02:00
<dependency>
<groupId>org.json4s</groupId>
<artifactId>json4s-jackson_${scala.binary.version}</artifactId>
2020-07-10 14:44:50 +02:00
</dependency>
2020-07-10 14:44:50 +02:00
2019-10-24 16:00:28 +02:00
</dependencies>
</project>