[jboss-cvs] JBossAS SVN: r96382 - in projects/naming/branches/Branch_5_0: jnpserver and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Nov 14 12:59:53 EST 2009


Author: scott.stark at jboss.org
Date: 2009-11-14 12:59:52 -0500 (Sat, 14 Nov 2009)
New Revision: 96382

Modified:
   projects/naming/branches/Branch_5_0/jnpserver/pom.xml
   projects/naming/branches/Branch_5_0/pom.xml
Log:
JBNAME-39, correct the TestSecurityManager exclusion


Modified: projects/naming/branches/Branch_5_0/jnpserver/pom.xml
===================================================================
--- projects/naming/branches/Branch_5_0/jnpserver/pom.xml	2009-11-14 16:39:25 UTC (rev 96381)
+++ projects/naming/branches/Branch_5_0/jnpserver/pom.xml	2009-11-14 17:59:52 UTC (rev 96382)
@@ -56,6 +56,25 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.4.3</version>
+        <configuration>
+          <excludes>
+            <!-- This is not a unit test -->
+            <exclude>**/TestSecurityManager.java</exclude>
+            <exclude>**/*$*</exclude>
+          </excludes>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
+          <systemProperties>
+            <property>
+              <name>xb.builder.useUnorderedSequence</name>
+              <value>true</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
    

Modified: projects/naming/branches/Branch_5_0/pom.xml
===================================================================
--- projects/naming/branches/Branch_5_0/pom.xml	2009-11-14 16:39:25 UTC (rev 96381)
+++ projects/naming/branches/Branch_5_0/pom.xml	2009-11-14 17:59:52 UTC (rev 96382)
@@ -42,24 +42,6 @@
           <autoVersionSubmodules>true</autoVersionSubmodules>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.4.3</version>
-        <configuration>
-          <excludes>
-            <!-- This is not a unit test -->
-            <exclude>**/TestSecurityManager.java</exclude>
-          </excludes>
-          <redirectTestOutputToFile>true</redirectTestOutputToFile>
-          <systemProperties>
-            <property>
-              <name>xb.builder.useUnorderedSequence</name>
-              <value>true</value>
-            </property>
-          </systemProperties>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
   




More information about the jboss-cvs-commits mailing list