You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/09/13 17:49:09 UTC

svn commit: r1384381 - in /cxf/trunk: parent/pom.xml systests/transports/pom.xml

Author: dkulp
Date: Thu Sep 13 15:49:09 2012
New Revision: 1384381

URL: http://svn.apache.org/viewvc?rev=1384381&view=rev
Log:
Add a profile for testing the async transport

Modified:
    cxf/trunk/parent/pom.xml
    cxf/trunk/systests/transports/pom.xml

Modified: cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=1384381&r1=1384380&r2=1384381&view=diff
==============================================================================
--- cxf/trunk/parent/pom.xml (original)
+++ cxf/trunk/parent/pom.xml Thu Sep 13 15:49:09 2012
@@ -400,6 +400,7 @@
                             <derby.system.home>${basedir}/target/derby</derby.system.home>
                             <spring.validation.mode>${cxf.spring.validation.mode}</spring.validation.mode>
                             <server.launcher.vmargs>${cxf.server.launcher.vmargs}</server.launcher.vmargs>
+                            <org.apache.cxf.transport.http.async.usePolicy>ALWAYS</org.apache.cxf.transport.http.async.usePolicy>
                         </systemPropertyVariables>
                     </configuration>
                 </plugin>

Modified: cxf/trunk/systests/transports/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/transports/pom.xml?rev=1384381&r1=1384380&r2=1384381&view=diff
==============================================================================
--- cxf/trunk/systests/transports/pom.xml (original)
+++ cxf/trunk/systests/transports/pom.xml Thu Sep 13 15:49:09 2012
@@ -303,4 +303,17 @@
         </dependency>
     </dependencies>
 
+    <profiles>
+        <profile>
+            <id>async</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.cxf</groupId>
+                    <artifactId>cxf-rt-transports-http-hc</artifactId>
+                    <version>${project.version}</version>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+
 </project>