You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2017/01/31 04:36:23 UTC

hbase git commit: HBASE-17569 HBase-Procedure module need to support mvn clean test -PskipProcedureTests to skip unit test (Yi Liang)

Repository: hbase
Updated Branches:
  refs/heads/master 47ce72d78 -> 2511cc827


HBASE-17569 HBase-Procedure module need to support mvn clean test -PskipProcedureTests to skip unit test (Yi Liang)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2511cc82
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2511cc82
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2511cc82

Branch: refs/heads/master
Commit: 2511cc8278ccdc32b010bd340140dfffb597cf93
Parents: 47ce72d
Author: Michael Stack <st...@apache.org>
Authored: Mon Jan 30 20:36:15 2017 -0800
Committer: Michael Stack <st...@apache.org>
Committed: Mon Jan 30 20:36:15 2017 -0800

----------------------------------------------------------------------
 hbase-procedure/pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/2511cc82/hbase-procedure/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-procedure/pom.xml b/hbase-procedure/pom.xml
index 12cb5a1..f8e2c8a 100644
--- a/hbase-procedure/pom.xml
+++ b/hbase-procedure/pom.xml
@@ -89,6 +89,19 @@
   </dependencies>
 
   <profiles>
+   <!-- Skip the tests in this module -->
+   <profile>
+      <id>skipProcedureTests</id>
+      <activation>
+        <property>
+          <name>skipProcedureTests</name>
+        </property>
+      </activation>
+      <properties>
+        <surefire.skipFirstPart>true</surefire.skipFirstPart>
+        <surefire.skipSecondPart>true</surefire.skipSecondPart>
+      </properties>
+    </profile>
     <!-- Profiles for building against different hadoop versions -->
 
     <!-- profile for building against Hadoop 2.x.  This is the default -->