[jbossws-commits] JBossWS SVN: r18614 - in stack/cxf/trunk/modules: testsuite and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Tue May 6 07:49:16 EDT 2014


Author: asoldano
Date: 2014-05-06 07:49:15 -0400 (Tue, 06 May 2014)
New Revision: 18614

Modified:
   stack/cxf/trunk/modules/addons/transports/udp/pom.xml
   stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3790] adding profile for excluding udp tests


Modified: stack/cxf/trunk/modules/addons/transports/udp/pom.xml
===================================================================
--- stack/cxf/trunk/modules/addons/transports/udp/pom.xml	2014-05-05 15:42:47 UTC (rev 18613)
+++ stack/cxf/trunk/modules/addons/transports/udp/pom.xml	2014-05-06 11:49:15 UTC (rev 18614)
@@ -33,4 +33,27 @@
     </dependency>
   </dependencies>
 
+  <profiles>
+    <profile>
+      <id>exclude-udp-unit-tests</id>
+      <activation>
+        <property>
+          <name>exclude-udp-tests</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <excludes combine.children="append">
+                <exclude>org/jboss/wsf/stack/cxf/addons/transports/udp/UDPTransportTest*</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
 </project>

Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml	2014-05-05 15:42:47 UTC (rev 18613)
+++ stack/cxf/trunk/modules/testsuite/pom.xml	2014-05-06 11:49:15 UTC (rev 18614)
@@ -993,6 +993,31 @@
     </profile>
 
     <!--
+    Name:  exclude-udp-integration-tests
+    Descr: Additional exclusions of integration tests which require a network environment properly setup for UDP tests
+    -->
+    <profile>
+      <id>exclude-udp-integration-tests</id>
+      <activation>
+        <property>
+          <name>exclude-udp-tests</name>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <excludes combine.children="append">
+                <exclude>org/jboss/test/ws/jaxws/cxf/udp/UDPEndpointAPITestCase*</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!--
     Name:  no-jboss-bind-address
     Descr: Set the default jboss.bind.address
 



More information about the jbossws-commits mailing list