You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mb...@apache.org on 2017/03/14 18:15:31 UTC

asterixdb git commit: Options to Skip Managix, Yarn, and Experiments

Repository: asterixdb
Updated Branches:
  refs/heads/master 11cbe1f2d -> 8a9ed433c


Options to Skip Managix, Yarn, and Experiments

The properties skipManagix, skipYarn, and skipExperiments added to skip
asterix-managix, asterix-yarn, and asterix-experiments from the build
respectively

e.g. mvn clean -DskipYarn

Change-Id: I22d4c33feb056c8f5f86c7eb22e9d3e59546e3df
Reviewed-on: https://asterix-gerrit.ics.uci.edu/1580
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Ian Maxon <im...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/8a9ed433
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/8a9ed433
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/8a9ed433

Branch: refs/heads/master
Commit: 8a9ed433cfabe0dcb73c7ade07d82b31b0034ac2
Parents: 11cbe1f
Author: Michael Blow <mb...@apache.org>
Authored: Tue Mar 14 13:06:28 2017 -0400
Committer: Michael Blow <mb...@apache.org>
Committed: Tue Mar 14 11:15:13 2017 -0700

----------------------------------------------------------------------
 asterixdb/pom.xml | 36 +++++++++++++++++++++++++++++++++---
 1 file changed, 33 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/8a9ed433/asterixdb/pom.xml
----------------------------------------------------------------------
diff --git a/asterixdb/pom.xml b/asterixdb/pom.xml
index d890420..196fb18 100644
--- a/asterixdb/pom.xml
+++ b/asterixdb/pom.xml
@@ -634,6 +634,39 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>include-managix</id>
+      <activation>
+        <property>
+          <name>!skipManagix</name>
+        </property>
+      </activation>
+      <modules>
+        <module>asterix-installer</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>include-yarn</id>
+      <activation>
+        <property>
+          <name>!skipYarn</name>
+        </property>
+      </activation>
+      <modules>
+        <module>asterix-yarn</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>include-experiments</id>
+      <activation>
+        <property>
+          <name>!skipExperiments</name>
+        </property>
+      </activation>
+      <modules>
+        <module>asterix-experiments</module>
+      </modules>
+    </profile>
   </profiles>
 
   <modules>
@@ -654,13 +687,10 @@
     <module>asterix-test-framework</module>
     <module>asterix-maven-plugins</module>
     <module>asterix-server</module>
-    <module>asterix-installer</module>
     <module>asterix-events</module>
     <module>asterix-doc</module>
     <module>asterix-fuzzyjoin</module>
-    <module>asterix-yarn</module>
     <module>asterix-replication</module>
-    <module>asterix-experiments</module>
     <module>asterix-benchmark</module>
     <module>asterix-coverage</module>
     <module>asterix-active</module>