aboutsummaryrefslogtreecommitdiff
path: root/exec/pom.xml
diff options
context:
space:
mode:
authorHanifi Gunes <hgunes@maprtech.com>2014-11-04 18:38:31 -0800
committerAditya Kishore <adi@apache.org>2014-11-05 16:55:52 -0800
commita8b309a792dae2c85d5fa4d368136cd6e45178ea (patch)
treeac8ab28696fc24505a65fe1d6af7a26e354d3f2c /exec/pom.xml
parent5adadfac5fc0f475b12d449eb00af8e9a5daadec (diff)
DRILL-1548: Remove jdbc-all from default build
* Allow devs to individually disable maven modules from build * Removed duplicate dependency "pentaho:mondrian-data-foodmart-json" from exec/java-exec/pom.xml * Removed duplicate dependency "com.mapr.hadoop:maprfs" from distribution/pom.xml
Diffstat (limited to 'exec/pom.xml')
-rw-r--r--exec/pom.xml31
1 files changed, 27 insertions, 4 deletions
diff --git a/exec/pom.xml b/exec/pom.xml
index f27320e02..608e4673f 100644
--- a/exec/pom.xml
+++ b/exec/pom.xml
@@ -28,12 +28,35 @@
<packaging>pom</packaging>
<name>exec/Parent Pom</name>
- <dependencies>
- </dependencies>
+
+ <profiles>
+ <profile>
+ <id>build-jdbc-all</id>
+ <activation>
+ <property>
+ <name>!skipJdbcAll</name>
+ </property>
+ </activation>
+ <modules>
+ <module>jdbc-all</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>build-interpreter</id>
+ <activation>
+ <property>
+ <name>!skipInterpreter</name>
+ </property>
+ </activation>
+ <modules>
+ <module>interpreter</module>
+ </modules>
+ </profile>
+ </profiles>
+
+
<modules>
<module>java-exec</module>
<module>jdbc</module>
- <module>jdbc-all</module>
- <module>interpreter</module>
</modules>
</project>