aboutsummaryrefslogtreecommitdiff
path: root/repl-bin/pom.xml
diff options
context:
space:
mode:
authorJey Kottalam <jey@cs.berkeley.edu>2013-08-15 12:10:31 -0700
committerJey Kottalam <jey@cs.berkeley.edu>2013-08-16 13:50:12 -0700
commit353fab2440dbf1369df20393e0377de2b327de72 (patch)
treec68c5ff891a6cf80e923254dda9bd07bdeea18a2 /repl-bin/pom.xml
parent8add2d7a59c59e72539da86a58b9c2980843f1e0 (diff)
downloadspark-353fab2440dbf1369df20393e0377de2b327de72.tar.gz
spark-353fab2440dbf1369df20393e0377de2b327de72.tar.bz2
spark-353fab2440dbf1369df20393e0377de2b327de72.zip
Initial changes to make Maven build agnostic of hadoop version
Diffstat (limited to 'repl-bin/pom.xml')
-rw-r--r--repl-bin/pom.xml76
1 files changed, 31 insertions, 45 deletions
diff --git a/repl-bin/pom.xml b/repl-bin/pom.xml
index 7c4e722cc1..81aba06e14 100644
--- a/repl-bin/pom.xml
+++ b/repl-bin/pom.xml
@@ -37,6 +37,37 @@
<deb.user>root</deb.user>
</properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.spark-project</groupId>
+ <artifactId>spark-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.spark-project</groupId>
+ <artifactId>spark-bagel</artifactId>
+ <version>${project.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.spark-project</groupId>
+ <artifactId>spark-examples</artifactId>
+ <version>${project.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.spark-project</groupId>
+ <artifactId>spark-repl</artifactId>
+ <version>${project.version}</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-client</artifactId>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+
<build>
<plugins>
<plugin>
@@ -86,46 +117,6 @@
<profiles>
<profile>
- <id>hadoop1</id>
- <properties>
- <classifier>hadoop1</classifier>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.spark-project</groupId>
- <artifactId>spark-core</artifactId>
- <version>${project.version}</version>
- <classifier>hadoop1</classifier>
- </dependency>
- <dependency>
- <groupId>org.spark-project</groupId>
- <artifactId>spark-bagel</artifactId>
- <version>${project.version}</version>
- <classifier>hadoop1</classifier>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.spark-project</groupId>
- <artifactId>spark-examples</artifactId>
- <version>${project.version}</version>
- <classifier>hadoop1</classifier>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.spark-project</groupId>
- <artifactId>spark-repl</artifactId>
- <version>${project.version}</version>
- <classifier>hadoop1</classifier>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-core</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
<id>hadoop2</id>
<properties>
<classifier>hadoop2</classifier>
@@ -160,11 +151,6 @@
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
- <artifactId>hadoop-core</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<scope>runtime</scope>
</dependency>