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">
|
2018-01-16 14:21:13 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp</artifactId>
|
2020-06-22 11:27:44 +02:00
|
|
|
<version>1.2.4-SNAPSHOT</version>
|
2019-04-03 16:05:16 +02:00
|
|
|
<relativePath>../</relativePath>
|
2018-01-16 14:21:13 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>dhp-schemas</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2020-04-29 18:44:17 +02:00
|
|
|
<description>This module contains common schema classes meant to be used across the dnet-hadoop submodules</description>
|
2019-03-13 14:43:20 +01:00
|
|
|
|
2020-07-10 14:44:50 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>net.alchim31.maven</groupId>
|
|
|
|
<artifactId>scala-maven-plugin</artifactId>
|
|
|
|
<version>4.0.1</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>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<scalaVersion>${scala.version}</scalaVersion>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-10-24 10:20:31 +02:00
|
|
|
<dependencies>
|
2019-10-29 18:10:20 +01:00
|
|
|
|
2019-10-24 10:20:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-11-14 10:34:09 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-01-16 11:02:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
2020-03-19 10:44:16 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2019-10-24 10:20:31 +02:00
|
|
|
</dependencies>
|
2019-03-13 14:43:20 +01:00
|
|
|
|
2018-01-16 14:21:13 +01:00
|
|
|
|
|
|
|
</project>
|