2020-11-14 17:42:07 +01: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">
|
|
|
|
<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-11-14 17:42:07 +01:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>dhp-usage-raw-data-update</artifactId>
|
2020-12-12 11:00:14 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
|
|
<version>2.1.15</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>revision</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<dotGitDirectory>${project.basedir}/../.git</dotGitDirectory>
|
|
|
|
<!-- more config here as you see fit -->
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.6.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2020-11-14 17:42:07 +01:00
|
|
|
<cdh.hive.version>0.13.1-cdh5.2.1</cdh.hive.version>
|
|
|
|
<cdh.hadoop.version>2.5.0-cdh5.2.1</cdh.hadoop.version>
|
2020-12-12 11:00:14 +01:00
|
|
|
</properties>
|
|
|
|
|
2020-11-14 17:42:07 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>spark-core_${scala.binary.version}</artifactId>
|
2020-11-14 17:42:07 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
2023-07-17 17:18:46 +02:00
|
|
|
<artifactId>spark-sql_${scala.binary.version}</artifactId>
|
2020-11-14 17:42:07 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
<version>1.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20180130</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2020-12-12 11:00:14 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hive</groupId>
|
|
|
|
<artifactId>hive-jdbc</artifactId>
|
|
|
|
<version>${cdh.hive.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-common</artifactId>
|
|
|
|
<version>${cdh.hadoop.version}</version>
|
|
|
|
</dependency>
|
2020-11-14 17:42:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>c3p0</groupId>
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
<version>0.9.1.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<name>dhp-usage-raw-data-update</name>
|
|
|
|
</project>
|