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

This commit is contained in:
Sean Busbey 2015-09-29 20:00:49 -05:00 committed by Sean Busbey
parent f3dff052a6
commit e3383fd146
1 changed files with 16 additions and 1 deletions

View File

@ -589,4 +589,19 @@
</plugins>
</build>
</project>
<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>