aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorKonstantin Boudnik <cos@wandisco.com>2013-07-02 17:03:24 -0700
committerKonstantin Boudnik <cos@wandisco.com>2013-07-21 11:47:29 -0700
commitf4d514810e6fd9f42868ebb9a89390c62c3b42e1 (patch)
treee5ec9bf8ef11d8f0bdd5e468bbd0f78a68420704 /pom.xml
parent15fb3948330721aba4716fa80c75e9bafab1a1b6 (diff)
downloadspark-f4d514810e6fd9f42868ebb9a89390c62c3b42e1.tar.gz
spark-f4d514810e6fd9f42868ebb9a89390c62c3b42e1.tar.bz2
spark-f4d514810e6fd9f42868ebb9a89390c62c3b42e1.zip
Building spark assembly for further consumption of the Spark project with a deployed cluster
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 4b48072c6e..6d9437b69f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,7 +60,6 @@
<module>examples</module>
<module>streaming</module>
<module>repl</module>
- <module>repl-bin</module>
</modules>
<properties>
@@ -618,5 +617,25 @@
</dependencies>
</dependencyManagement>
</profile>
+ <profile>
+ <id>assembly</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <modules>
+ <module>assembly</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>expensive-modules</id>
+ <activation>
+ <property>
+ <name>!noExpensive</name>
+ </property>
+ </activation>
+ <modules>
+ <module>repl-bin</module>
+ </modules>
+ </profile>
</profiles>
</project>