2018-01-16 14:21:13 +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-04-03 10:53:54 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp</artifactId>
|
2022-04-07 13:32:22 +02:00
|
|
|
<version>1.2.5-SNAPSHOT</version>
|
2021-03-22 16:36:31 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
2019-04-03 10:53:54 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>dhp-common</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2021-11-16 15:16:28 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<site>
|
|
|
|
<id>DHPSite</id>
|
2021-11-19 13:44:08 +01:00
|
|
|
<url>${dhp.site.stage.path}/dhp-common</url>
|
2021-11-16 15:16:28 +01:00
|
|
|
</site>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2020-04-29 18:44:17 +02:00
|
|
|
<description>This module contains common utilities meant to be used across the dnet-hadoop submodules</description>
|
2021-11-25 13:03:17 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
|
|
<version>${net.alchim31.maven.version}</version>
|
|
|
|
<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>
|
|
|
|
<execution>
|
|
|
|
<id>scala-doc</id>
|
|
|
|
<phase>process-resources</phase> <!-- or wherever -->
|
|
|
|
<goals>
|
|
|
|
<goal>doc</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<scalaVersion>${scala.version}</scalaVersion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
</build>
|
2020-04-29 18:44:17 +02:00
|
|
|
|
2019-04-03 10:53:54 +02:00
|
|
|
<dependencies>
|
2020-04-04 14:03:43 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
</dependency>
|
2021-05-28 10:50:44 +02:00
|
|
|
<dependency>
|
2021-06-11 16:53:01 +02:00
|
|
|
<groupId>com.github.sisyphsu</groupId>
|
|
|
|
<artifactId>dateparser</artifactId>
|
2021-05-28 10:50:44 +02:00
|
|
|
</dependency>
|
2021-07-28 16:21:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.xuender</groupId>
|
|
|
|
<artifactId>unidecode</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-04-04 14:03:43 +02: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-10-03 12:22:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
</dependency>
|
2019-12-11 15:43:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2019-04-03 10:53:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
|
|
</dependency>
|
2019-04-05 12:19:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
2020-02-13 16:49:45 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.saxon</groupId>
|
|
|
|
<artifactId>Saxon-HE</artifactId>
|
|
|
|
</dependency>
|
2020-02-19 16:56:38 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>cnr-rmi-api</artifactId>
|
|
|
|
</dependency>
|
2020-03-26 14:08:29 +01:00
|
|
|
|
2020-01-24 09:58:55 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ximpleware</groupId>
|
|
|
|
<artifactId>vtd-xml</artifactId>
|
|
|
|
</dependency>
|
2020-02-19 10:07:08 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
</dependency>
|
2020-05-04 12:22:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
</dependency>
|
2020-08-07 16:46:18 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
</dependency>
|
2020-10-08 10:33:55 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>dnet-pace-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-01 13:56:05 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-24 15:07:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
|
|
</dependency>
|
2021-02-01 13:56:05 +01:00
|
|
|
|
2020-10-08 10:33:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-schemas</artifactId>
|
|
|
|
</dependency>
|
2021-08-12 17:59:19 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.opencsv</groupId>
|
|
|
|
<artifactId>opencsv</artifactId>
|
|
|
|
</dependency>
|
2019-04-03 10:53:54 +02:00
|
|
|
</dependencies>
|
2018-01-16 14:21:13 +01:00
|
|
|
|
|
|
|
</project>
|