-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
36 lines (36 loc) · 845 Bytes
/
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
<project>
<groupId>edu.berkeley</groupId>
<artifactId>full_light_runner</artifactId>
<modelVersion>4.0.0</modelVersion>
<name>Full Runner But Light</name>
<packaging>jar</packaging>
<version>1.0</version>
<dependencies>
<dependency> <!-- Spark dependency -->
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.10</artifactId>
<version>1.6.0</version>
<!-- <configuration>
<source>7</source>
<target>7</target>
</configuration> -->
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>1.0.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- <version>1.6.0</version> -->
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>7</source>
<target>7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>