366 lines
13 KiB
XML
366 lines
13 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
<artifactId>raid-inference</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<url>http://www.d-net.research-infrastructures.eu</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<developerConnection>https://code-repo.d4science.org/michele.debonis/raid-inference.git</developerConnection>
|
|
<tag>raid-inference-1.0.0</tag>
|
|
</scm>
|
|
|
|
<modules>
|
|
<module>dhp-raid</module>
|
|
<module>dhp-build</module>
|
|
</modules>
|
|
|
|
<issueManagement>
|
|
<system>Redmine</system>
|
|
<url>https://issue.openaire.research-infrastructures.eu/projects/openaire</url>
|
|
</issueManagement>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>dnet45-releases</id>
|
|
<name>D-Net 45 Releases</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-releases</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>dnet45-releases</id>
|
|
<name>D-Net 45 releases</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-releases</url>
|
|
<layout>default</layout>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>dnet45-snapshots</id>
|
|
<name>D-Net 45 snapshots</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-snapshots</url>
|
|
<layout>default</layout>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>dnet-deps</id>
|
|
<name>dnet-dependencies</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet-deps</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>cloudera</id>
|
|
<name>Cloudera Repository</name>
|
|
<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>ceon</id>
|
|
<name>Ceon Repository</name>
|
|
<url>https://maven.ceon.pl/artifactory/repo</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<build>
|
|
<directory>target</directory>
|
|
<outputDirectory>target/classes</outputDirectory>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
|
|
|
|
|
|
|
|
|
<!--*************************************************-->
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.6.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.19.1</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>${junit-jupiter.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<redirectTestOutputToFile>false</redirectTestOutputToFile>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.10.4</version>
|
|
<configuration>
|
|
<detectLinks>true</detectLinks>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>2.13</version>
|
|
<executions>
|
|
<execution>
|
|
<id>integration-test</id>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>verify</id>
|
|
<goals>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>iis-releases</id>
|
|
<name>iis releases plugin repository</name>
|
|
<url>http://maven.ceon.pl/artifactory/iis-releases</url>
|
|
<layout>default</layout>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<properties>
|
|
|
|
<oozie.package.file.name>oozie-package</oozie.package.file.name>
|
|
<workflow.source.dir>src/test/resources/define/path/pointing/to/directory/holding/oozie_app</workflow.source.dir>
|
|
<oozieAppDir>oozie_app</oozieAppDir>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<google.gson.version>2.2.2</google.gson.version>
|
|
<google.guava.version>15.0</google.guava.version>
|
|
<spark.version>2.4.0.cloudera2</spark.version>
|
|
<jackson.version>2.14.2</jackson.version>
|
|
<mockito-core.version>3.3.3</mockito-core.version>
|
|
<dhp-schemas.version>[8.0.1]</dhp-schemas.version>
|
|
<json4s.version>3.5.3</json4s.version>
|
|
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<scalatest.version>2.2.6</scalatest.version>
|
|
<encoding>UTF-8</encoding>
|
|
<hadoop-version>2.7.3</hadoop-version>
|
|
<redis.version>2.8.1</redis.version>
|
|
|
|
<commons.lang.version>3.5</commons.lang.version>
|
|
<commons.io.version>2.4</commons.io.version>
|
|
<commons.collections.version>3.2.1</commons.collections.version>
|
|
<commons.logging.version>1.1.3</commons.logging.version>
|
|
|
|
<junit.version>4.9</junit.version>
|
|
<scala.binary.version>2.11</scala.binary.version>
|
|
<scala.version>2.11.12</scala.version>
|
|
|
|
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
|
|
<maven.compiler.plugin.version>3.6.0</maven.compiler.plugin.version>
|
|
|
|
<!-- from dhp-workflows -->
|
|
<queueName>default</queueName>
|
|
<importerQueueName>default</importerQueueName>
|
|
<oozieLauncherQueueName>default</oozieLauncherQueueName>
|
|
<primed.dir>primed</primed.dir>
|
|
|
|
<oozie.package.dependencies.include.scope>runtime</oozie.package.dependencies.include.scope>
|
|
<oozie.package.dependencies.exclude.scope />
|
|
<oozie.package.skip.test.jar>true</oozie.package.skip.test.jar>
|
|
|
|
<dhpConnectionProperties>${user.home}/.dhp/application.properties</dhpConnectionProperties>
|
|
|
|
<output.dir.name>${maven.build.timestamp}</output.dir.name>
|
|
|
|
<projectVersion>${project.version}</projectVersion>
|
|
<oozie.use.system.libpath>true</oozie.use.system.libpath>
|
|
<properties.maven.plugin.version>2.0.1</properties.maven.plugin.version>
|
|
<junit-jupiter.version>5.6.1</junit-jupiter.version>
|
|
<maven.dependency.eu.dnetlib.dhp.dhp-build-assembly-resources.jar.path>../dhp-build/dhp-build-assembly-resources/target/dhp-build-assembly-resources-${project.version}.jar</maven.dependency.eu.dnetlib.dhp.dhp-build-assembly-resources.jar.path>
|
|
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.spark</groupId>
|
|
<artifactId>spark-core_${scala.binary.version}</artifactId>
|
|
<version>${spark.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.spark</groupId>
|
|
<artifactId>spark-graphx_${scala.binary.version}</artifactId>
|
|
<version>${spark.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.spark</groupId>
|
|
<artifactId>spark-sql_${scala.binary.version}</artifactId>
|
|
<version>${spark.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.spark</groupId>
|
|
<artifactId>spark-mllib_${scala.binary.version}</artifactId>
|
|
<version>${spark.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>${junit-jupiter.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.scala-lang</groupId>
|
|
<artifactId>scala-library</artifactId>
|
|
<version>${scala.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.oozie</groupId>
|
|
<artifactId>oozie-client</artifactId>
|
|
<version>5.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
<artifactId>json-path</artifactId>
|
|
<version>2.9.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
<artifactId>dhp-schemas</artifactId>
|
|
<version>${dhp-schemas.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.lmu.ifi.dbs.elki</groupId>
|
|
<artifactId>elki</artifactId>
|
|
<version>0.7.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.haifengl</groupId>
|
|
<artifactId>smile-core</artifactId>
|
|
<version>2.5.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.json4s</groupId>
|
|
<artifactId>json4s-jackson_2.11</artifactId>
|
|
<version>${json4s.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<profiles>
|
|
</profiles>
|
|
</project>
|