2022-10-18 15:08:06 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.sandro</groupId>
|
|
|
|
<artifactId>ZeppelinNotebook</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<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>dnet45-bootstrap-snapshot</id>
|
|
|
|
<name>D-Net 45 Bootstrap Snapshot</name>
|
|
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-bootstrap-snapshot/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>dnet45-bootstrap-release</id>
|
|
|
|
<name>D-Net 45 Bootstrap Release</name>
|
|
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-bootstrap-release/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<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>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<version>${dhp.jackson.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-core_2.11</artifactId>
|
|
|
|
<version>${dhp.spark.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
<artifactId>spark-sql_2.11</artifactId>
|
|
|
|
<version>${dhp.spark.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- JAR NEED -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dhp-schemas</artifactId>
|
|
|
|
<version>3.15.0</version>
|
|
|
|
</dependency>
|
2022-10-21 11:01:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>${junit-jupiter.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-10-18 15:08:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2022-10-21 11:01:31 +02:00
|
|
|
<junit-jupiter.version>5.6.1</junit-jupiter.version>
|
2022-10-18 15:08:06 +02:00
|
|
|
<net.alchim31.maven.version>4.0.1</net.alchim31.maven.version>
|
|
|
|
<dhp.jackson.version>2.9.6</dhp.jackson.version>
|
|
|
|
<scala.version>2.11.12</scala.version>
|
|
|
|
<dhp.spark.version>2.4.0.cloudera2</dhp.spark.version>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|