[jbossws-commits] JBossWS SVN: r19382 - stack/cxf/branches/arquillian/modules/test-utils.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Jan 16 12:21:14 EST 2015


Author: asoldano
Date: 2015-01-16 12:21:13 -0500 (Fri, 16 Jan 2015)
New Revision: 19382

Modified:
   stack/cxf/branches/arquillian/modules/test-utils/pom.xml
Log:
Ensure distribution module is not run after test modules, just in case someone tries using the multithread maven execution (-T x)


Modified: stack/cxf/branches/arquillian/modules/test-utils/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/test-utils/pom.xml	2015-01-15 17:29:00 UTC (rev 19381)
+++ stack/cxf/branches/arquillian/modules/test-utils/pom.xml	2015-01-16 17:21:13 UTC (rev 19382)
@@ -37,6 +37,13 @@
       <artifactId>jboss-logging</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency> <!-- dependency to dist module to ensure proper testsuite ordering when running with -T option -->
+      <groupId>org.jboss.ws.cxf</groupId>
+      <artifactId>jbossws-cxf-dist</artifactId>
+      <version>${project.version}</version>
+      <type>pom</type>
+      <scope>provided</scope>
+    </dependency>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>



More information about the jbossws-commits mailing list