You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jo...@apache.org on 2011/02/16 22:47:42 UTC

svn commit: r1071413 - /commons/proper/configuration/trunk/pom.xml

Author: joehni
Date: Wed Feb 16 21:47:41 2011
New Revision: 1071413

URL: http://svn.apache.org/viewvc?rev=1071413&view=rev
Log:
Fix surefire excludes in java-1.4 profile.

Modified:
    commons/proper/configuration/trunk/pom.xml

Modified: commons/proper/configuration/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=1071413&r1=1071412&r2=1071413&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Wed Feb 16 21:47:41 2011
@@ -573,9 +573,9 @@
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
               <excludes>
-                <exclude>**/TestVFSFileChangedReloadingStrategy.java</exclude>
-                <exclude>**/TestVFSConfigurationBuilder.java</exclude>
-                <exclude>**/TestWebdavConfigurationBuilder.java</exclude>
+                <exclude>**/TestVFSFileChangedReloadingStrategy*.*</exclude>
+                <exclude>**/TestVFSConfigurationBuilder*.*</exclude>
+                <exclude>**/TestWebdavConfigurationBuilder*.*</exclude>
               </excludes>
             </configuration>
           </plugin>