HBASE-7265 Make Maven skip module test properties consistent
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1416723 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
57e068fd31
commit
abd334265e
|
@ -80,10 +80,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-client-tests</id>
|
||||
<id>skipClientTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-client-tests</name>
|
||||
<name>skipClientTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
|
@ -83,10 +83,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-common-tests</id>
|
||||
<id>skipCommonTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-common-tests</name>
|
||||
<name>skipCommonTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
|
@ -73,6 +73,20 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skipExamplesTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipExamplesTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<surefire.skipFirstPart>true</surefire.skipFirstPart>
|
||||
<surefire.skipSecondPart>true</surefire.skipSecondPart>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<!-- Profiles for building against different hadoop versions -->
|
||||
<!-- There are a lot of common dependencies used here, should investigate
|
||||
if we can combine these profiles somehow -->
|
||||
|
|
|
@ -65,4 +65,19 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skipHadoopCompatTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipHadoopCompatTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<surefire.skipFirstPart>true</surefire.skipFirstPart>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -109,4 +109,19 @@ limitations under the License.
|
|||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skipHadoopOneCompatTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipHadoopOneCompatTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<surefire.skipFirstPart>true</surefire.skipFirstPart>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
|
@ -150,4 +150,19 @@ limitations under the License.
|
|||
<version>${hadoop-two.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skipHadoopTwoCompatTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skipHadoopTwoCompatTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
<surefire.skipFirstPart>true</surefire.skipFirstPart>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
|
@ -138,10 +138,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-integration-tests</id>
|
||||
<id>skipIntegrationTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-integration-tests</name>
|
||||
<name>skipIntegrationTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
|
@ -486,10 +486,10 @@
|
|||
<profiles>
|
||||
<!-- Skip the tests in this module -->
|
||||
<profile>
|
||||
<id>skip-server-tests</id>
|
||||
<id>skipServerTests</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>skip-server-tests</name>
|
||||
<name>skipServerTests</name>
|
||||
</property>
|
||||
</activation>
|
||||
<properties>
|
||||
|
|
Loading…
Reference in New Issue