You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by gt...@apache.org on 2012/10/10 11:25:17 UTC

svn commit: r1396518 - /activemq/trunk/activemq-core/pom.xml

Author: gtully
Date: Wed Oct 10 09:25:17 2012
New Revision: 1396518

URL: http://svn.apache.org/viewvc?rev=1396518&view=rev
Log:
fix dry exclusion config, override default merge with append for the excludes so the are additive for the two profiles in use

Modified:
    activemq/trunk/activemq-core/pom.xml

Modified: activemq/trunk/activemq-core/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/pom.xml?rev=1396518&r1=1396517&r2=1396518&view=diff
==============================================================================
--- activemq/trunk/activemq-core/pom.xml (original)
+++ activemq/trunk/activemq-core/pom.xml Wed Oct 10 09:25:17 2012
@@ -635,8 +635,8 @@
                     <plugin>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
-                            <excludes>
-                                <exclude>**/DoSTest.*</exclude>
+                            <excludes combine.children="append">
+                                <exclude>none</exclude>
                             </excludes>
                         </configuration>
                     </plugin>
@@ -656,7 +656,7 @@
                     <plugin>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
-                            <excludes>
+                            <excludes combine.children="append">
                                 <!-- http://jira.activemq.org/jira/browse/AMQ-626 -->
                                 <exclude>**/MultipleTestsWithSpringFactoryBeanTest.*</exclude>
                                 <exclude>**/MultipleTestsWithXBeanFactoryBeanTest.*</exclude>
@@ -726,7 +726,7 @@
                     <plugin>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
-                            <excludes>
+                            <excludes combine.children="append">
                                 <exclude>**/perf/SimpleDurableTopicTest.*</exclude>
                                 <!-- These tests run too slow to execute as part of the unit tests -->
                                 <exclude>**/TransactionNotStartedErrorTest.*</exclude>