-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
47 lines (42 loc) · 1.83 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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>
<!-- This is a light-weight root POM for the project to show-case the proper configuration of Rheem individually in each of the modules. -->
<groupId>com.github.sekruse</groupId>
<artifactId>rheem-examples</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>wordcount</module>
<module>sindy</module>
<module>pagerank</module>
<module>sgd</module>
</modules>
<!-- Configure project settings here. -->
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<encoding>UTF-8</encoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.11.8</scala.version>
<scala.compat.version>2.11</scala.compat.version>
<spark.version>1.6.1</spark.version>
<!-- This Hadoop version is enforced by Spark in the version that is deployed in the Maven repository via code signing. -->
<hadoop.version>2.2.0</hadoop.version>
<rheem.version>0.2.0</rheem.version>
</properties>
<repositories>
<repository>
<id>sonatype</id>
<name>Sonatype</name>
<url>http://repository.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>sonatype-snapshot</id>
<name>Sonatype Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>