You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2015/09/30 15:35:38 UTC

hbase git commit: HBASE-14515 make sure spark tests are skippable like the other modules.

Repository: hbase
Updated Branches:
  refs/heads/master f3dff052a -> e3383fd14


HBASE-14515 make sure spark tests are skippable like the other modules.


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

Branch: refs/heads/master
Commit: e3383fd14638ade2ee2d5dc042a7561667e3554c
Parents: f3dff05
Author: Sean Busbey <bu...@apache.org>
Authored: Tue Sep 29 20:00:49 2015 -0500
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Wed Sep 30 08:35:11 2015 -0500

----------------------------------------------------------------------
 hbase-spark/pom.xml | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/e3383fd1/hbase-spark/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-spark/pom.xml b/hbase-spark/pom.xml
index 0af80ba..89509fe 100644
--- a/hbase-spark/pom.xml
+++ b/hbase-spark/pom.xml
@@ -589,4 +589,19 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+  <profiles>
+    <!-- Skip the tests in this module -->
+    <profile>
+      <id>skipSparkTests</id>
+      <activation>
+        <property>
+          <name>skipSparkTests</name>
+        </property>
+      </activation>
+      <properties>
+        <surefire.skipFirstPart>true</surefire.skipFirstPart>
+        <surefire.skipSecondPart>true</surefire.skipSecondPart>
+      </properties>
+    </profile>
+  </profiles>
+</project>