You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by to...@apache.org on 2011/03/15 02:10:27 UTC

svn commit: r1081624 - in /hbase/trunk: CHANGES.txt pom.xml

Author: todd
Date: Tue Mar 15 01:10:27 2011
New Revision: 1081624

URL: http://svn.apache.org/viewvc?rev=1081624&view=rev
Log:
HBASE-3625  improve/fix support excluding Tests via Maven -D property. (Alejandro Abdelnur via todd)

Modified:
    hbase/trunk/CHANGES.txt
    hbase/trunk/pom.xml

Modified: hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=1081624&r1=1081623&r2=1081624&view=diff
==============================================================================
--- hbase/trunk/CHANGES.txt (original)
+++ hbase/trunk/CHANGES.txt Tue Mar 15 01:10:27 2011
@@ -167,6 +167,8 @@ Release 0.90.2 - Unreleased
    HBASE-3586  Improve the selection of regions to balance
    HBASE-3623  Allow non-XML representable separator characters in the ImportTSV tool
                (Harsh J Chouraria via Stack)
+   HBASE-3625  improve/fix support excluding Tests via Maven -D property
+               (Alejandro Abdelnur via todd)
 
 Release 0.90.1 - Unreleased
 

Modified: hbase/trunk/pom.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=1081624&r1=1081623&r2=1081624&view=diff
==============================================================================
--- hbase/trunk/pom.xml (original)
+++ hbase/trunk/pom.xml Tue Mar 15 01:10:27 2011
@@ -396,6 +396,7 @@
           </includes>
           <excludes>
             <exclude>**/*$*</exclude>
+            <exclude>${test.exclude.pattern}</exclude>
           </excludes>
         </configuration>
       </plugin>
@@ -528,6 +529,10 @@
     <stax-api.version>1.0.1</stax-api.version>
     <thrift.version>0.5.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 -->