You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jr...@apache.org on 2006/09/23 01:49:15 UTC

svn commit: r449129 - /incubator/abdera/java/trunk/pom.xml

Author: jrduncans
Date: Fri Sep 22 16:49:14 2006
New Revision: 449129

URL: http://svn.apache.org/viewvc?view=rev&rev=449129
Log:
Exclude inner classes named "Test" from junit tests.

 * pom.xml: Added exclusion for **/*$Test*

Modified:
    incubator/abdera/java/trunk/pom.xml

Modified: incubator/abdera/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/pom.xml?view=diff&rev=449129&r1=449128&r2=449129
==============================================================================
--- incubator/abdera/java/trunk/pom.xml (original)
+++ incubator/abdera/java/trunk/pom.xml Fri Sep 22 16:49:14 2006
@@ -49,6 +49,7 @@
           <configuration>
             <excludes>
               <exclude>**/*TestSuite*</exclude>
+              <exclude>**/*$Test*</exclude>
             </excludes>
           </configuration>
         </plugin>