Author: dkulp
Date: Thu Sep 13 18:01:19 2012
New Revision: 1384443
URL: http://svn.apache.org/viewvc?rev=1384443&view=rev
Log:
Add profiles for async http to other systests (not all pass yet)
Modified:
cxf/trunk/rt/transports/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduitFactory.java
cxf/trunk/systests/databinding/pom.xml
cxf/trunk/systests/jaxrs/pom.xml
cxf/trunk/systests/jaxws/pom.xml
cxf/trunk/systests/rs-security/pom.xml
cxf/trunk/systests/uncategorized/pom.xml
cxf/trunk/systests/ws-rm/pom.xml
cxf/trunk/systests/ws-security-examples/pom.xml
cxf/trunk/systests/ws-security/pom.xml
cxf/trunk/systests/ws-specs/pom.xml
Modified:
cxf/trunk/rt/transports/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduitFactory.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/transports/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduitFactory.java?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
---
cxf/trunk/rt/transports/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduitFactory.java
(original)
+++
cxf/trunk/rt/transports/http-hc/src/main/java/org/apache/cxf/transport/http/asyncclient/AsyncHTTPConduitFactory.java
Thu Sep 13 18:01:19 2012
@@ -147,6 +147,7 @@ public class AsyncHTTPConduitFactory imp
} else if (st instanceof String) {
policy = UseAsyncPolicy.valueOf((String)st);
} else {
+ //policy = UseAsyncPolicy.ALWAYS;
policy = UseAsyncPolicy.ASYNC_ONLY;
}
Modified: cxf/trunk/systests/databinding/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/databinding/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/databinding/pom.xml (original)
+++ cxf/trunk/systests/databinding/pom.xml Thu Sep 13 18:01:19 2012
@@ -201,7 +201,16 @@
<doc.lit.bare.binding.file>none</doc.lit.bare.binding.file>
</properties>
</profile>
-
+ <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>
<dependencies>
<dependency>
Modified: cxf/trunk/systests/jaxrs/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/pom.xml (original)
+++ cxf/trunk/systests/jaxrs/pom.xml Thu Sep 13 18:01:19 2012
@@ -418,5 +418,16 @@
</plugin>
</plugins>
</build>
-
+ <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>
Modified: cxf/trunk/systests/jaxws/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/jaxws/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/jaxws/pom.xml (original)
+++ cxf/trunk/systests/jaxws/pom.xml Thu Sep 13 18:01:19 2012
@@ -212,4 +212,18 @@
<artifactId>xalan</artifactId>
</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>
Modified: cxf/trunk/systests/rs-security/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/rs-security/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/rs-security/pom.xml (original)
+++ cxf/trunk/systests/rs-security/pom.xml Thu Sep 13 18:01:19 2012
@@ -220,6 +220,19 @@
</plugin>
</plugins>
</build>
+
+ <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>
<repositories>
<repository>
Modified: cxf/trunk/systests/uncategorized/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/uncategorized/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/uncategorized/pom.xml (original)
+++ cxf/trunk/systests/uncategorized/pom.xml Thu Sep 13 18:01:19 2012
@@ -417,4 +417,17 @@
<scope>test</scope>
</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>
Modified: cxf/trunk/systests/ws-rm/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/ws-rm/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/ws-rm/pom.xml (original)
+++ cxf/trunk/systests/ws-rm/pom.xml Thu Sep 13 18:01:19 2012
@@ -189,6 +189,15 @@
</plugins>
</build>
</profile>
+ <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>
Modified: cxf/trunk/systests/ws-security-examples/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/ws-security-examples/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/ws-security-examples/pom.xml (original)
+++ cxf/trunk/systests/ws-security-examples/pom.xml Thu Sep 13 18:01:19 2012
@@ -208,6 +208,15 @@
</dependency>
</dependencies>
</profile>
+ <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>
Modified: cxf/trunk/systests/ws-security/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/ws-security/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/ws-security/pom.xml (original)
+++ cxf/trunk/systests/ws-security/pom.xml Thu Sep 13 18:01:19 2012
@@ -213,6 +213,15 @@
</dependency>
</dependencies>
</profile>
+ <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>
Modified: cxf/trunk/systests/ws-specs/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/ws-specs/pom.xml?rev=1384443&r1=1384442&r2=1384443&view=diff
==============================================================================
--- cxf/trunk/systests/ws-specs/pom.xml (original)
+++ cxf/trunk/systests/ws-specs/pom.xml Thu Sep 13 18:01:19 2012
@@ -270,6 +270,15 @@
</plugins>
</build>
</profile>
+ <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>