Author: todd
Date: Tue Mar 15 01:11:04 2011
New Revision: 1081625
URL: http://svn.apache.org/viewvc?rev=1081625&view=rev
Log:
HBASE-3625 improve/fix support excluding Tests via Maven -D property.
(Alejandro Abdelnur via todd)
Modified:
hbase/branches/0.90/CHANGES.txt
hbase/branches/0.90/pom.xml
Modified: hbase/branches/0.90/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hbase/branches/0.90/CHANGES.txt?rev=1081625&r1=1081624&r2=1081625&view=diff
==============================================================================
--- hbase/branches/0.90/CHANGES.txt (original)
+++ hbase/branches/0.90/CHANGES.txt Tue Mar 15 01:11:04 2011
@@ -41,6 +41,8 @@ Release 0.90.2 - February 9th, 2011
HBASE-3623 Allow non-XML representable separator characters in the
ImportTSV tool (Harsh J Chouraria via Stack)
HBASE-3620 Make HBCK utility faster
+ HBASE-3625 improve/fix support excluding Tests via Maven -D property
+ (Alejandro Abdelnur via todd)
Release 0.90.1 - February 9th, 2011
Modified: hbase/branches/0.90/pom.xml
URL:
http://svn.apache.org/viewvc/hbase/branches/0.90/pom.xml?rev=1081625&r1=1081624&r2=1081625&view=diff
==============================================================================
--- hbase/branches/0.90/pom.xml (original)
+++ hbase/branches/0.90/pom.xml Tue Mar 15 01:11:04 2011
@@ -346,6 +346,7 @@
</includes>
<excludes>
<exclude>**/*$*</exclude>
+ <exclude>${test.exclude.pattern}</exclude>
</excludes>
</configuration>
</plugin>
@@ -469,6 +470,10 @@
<stax-api.version>1.0.1</stax-api.version>
<thrift.version>0.2.0</thrift.version><!-- newer version available -->
<zookeeper.version>3.3.2</zookeeper.version>
+
+ <!-- For flaky tests exclusion -->
+ <test.exclude></test.exclude>
+ <test.exclude.pattern>**/${test.exclude}.java</test.exclude.pattern>
</properties>
<!-- Sorted by groups of dependencies then groupId and artifactId -->