JBossWS SVN: r14833 - spi/branches/jbossws-spi-1.4.1.SP1/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 19:02:43 -0400 (Sat, 13 Aug 2011)
New Revision: 14833
Modified:
spi/branches/jbossws-spi-1.4.1.SP1/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java
Log:
[JBWS-3338] extending SPI to support distinction between no @Addressing and @Addressing(enabled='false') for ports construction from service refs.
Modified: spi/branches/jbossws-spi-1.4.1.SP1/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java
===================================================================
--- spi/branches/jbossws-spi-1.4.1.SP1/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java 2011-08-13 22:56:37 UTC (rev 14832)
+++ spi/branches/jbossws-spi-1.4.1.SP1/src/main/java/org/jboss/wsf/spi/metadata/j2ee/serviceref/UnifiedPortComponentRefMetaData.java 2011-08-13 23:02:43 UTC (rev 14833)
@@ -54,6 +54,7 @@
// The optional JBossWS config-file
private String configFile;
// The optional <adressing> element
+ private boolean isAddressingAnnotationSpecified;
private boolean addressingEnabled;
private boolean addressingRequired;
private String addressingResponses = "ALL";
@@ -62,6 +63,7 @@
// The optional <mtom-threshold> element
private int mtomThreshold;
// @RespectBinding annotation metadata
+ private boolean isRespectBindingAnnotationSpecified;
private boolean respectBindingEnabled;
public UnifiedPortComponentRefMetaData(UnifiedServiceRefMetaData serviceRefMetaData)
@@ -74,6 +76,22 @@
return serviceRefMetaData;
}
+ public void setAddressingAnnotationSpecified(final boolean isAddressingAnnotationSpecified) {
+ this.isAddressingAnnotationSpecified = isAddressingAnnotationSpecified;
+ }
+
+ public boolean isAddressingAnnotationSpecified() {
+ return this.isAddressingAnnotationSpecified;
+ }
+
+ public void setRespectBindingAnnotationSpecified(final boolean isRespectBindingAnnotationSpecified) {
+ this.isRespectBindingAnnotationSpecified = isRespectBindingAnnotationSpecified;
+ }
+
+ public boolean isRespectBindingAnnotationSpecified() {
+ return this.isRespectBindingAnnotationSpecified;
+ }
+
/**
* @deprecated Use {@link #isMtomEnabled()} instead.
*/
@@ -260,11 +278,13 @@
str.append("\nUnifiedPortComponentRef");
str.append("\n serviceEndpointInterface=" + serviceEndpointInterface);
str.append("\n portQName=" + portQName);
+ str.append("\n isAddressingAnnotationSpecified=" + isAddressingAnnotationSpecified);
str.append("\n addressingEnabled=" + addressingEnabled);
str.append("\n addressingRequired=" + addressingRequired);
str.append("\n addressingResponses=" + addressingResponses);
str.append("\n mtomEnabled=" + mtomEnabled);
str.append("\n mtomThreshold=" + mtomThreshold);
+ str.append("\n isRespectBindingAnnotationSpecified=" + isRespectBindingAnnotationSpecified);
str.append("\n respectBindingEnabled=" + respectBindingEnabled);
str.append("\n portComponentLink=" + portComponentLink);
str.append("\n callProperties=" + callProperties);
13 years, 8 months
JBossWS SVN: r14831 - spi/branches.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 18:52:48 -0400 (Sat, 13 Aug 2011)
New Revision: 14831
Added:
spi/branches/jbossws-spi-1.4.1.SP1/
Log:
creating JBossWS SPI 1.4.1.SP1 branch
13 years, 8 months
JBossWS SVN: r14830 - in thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples: aegis and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 18:09:32 -0400 (Sat, 13 Aug 2011)
New Revision: 14830
Modified:
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml
Log:
changing version number
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml 2011-08-13 21:12:40 UTC (rev 14829)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml 2011-08-13 22:09:32 UTC (rev 14830)
@@ -44,7 +44,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.1-patch-01</version>
+ <version>2.3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml 2011-08-13 21:12:40 UTC (rev 14829)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml 2011-08-13 22:09:32 UTC (rev 14830)
@@ -123,7 +123,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.1-patch-01</version>
+ <version>2.3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
13 years, 8 months
JBossWS SVN: r14828 - thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 16:06:26 -0400 (Sat, 13 Aug 2011)
New Revision: 14828
Modified:
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java
Log:
fixing check style error - too long line
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java 2011-08-13 20:00:43 UTC (rev 14827)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java 2011-08-13 20:06:26 UTC (rev 14828)
@@ -589,7 +589,8 @@
assertAddressing(message);
}
//CXF-3740 If the addressing headers are not present and
- // WSAddressingFeature.isAddressingRequired is set to true , we need to throw WebServiceException on client side
+ // WSAddressingFeature.isAddressingRequired is set to true
+ // we need to throw WebServiceException on client side
if (!ContextUtils.isOutbound(message) && ContextUtils.isRequestor(message)
&& getWSAddressingFeature(message) != null
&& getWSAddressingFeature(message).isAddressingRequired()
13 years, 8 months
JBossWS SVN: r14827 - in thirdparty/cxf/branches/cxf-2.3.1: distribution/src/main/release/samples/ws_security/interopfest/wstrust13 and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 16:00:43 -0400 (Sat, 13 Aug 2011)
New Revision: 14827
Modified:
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust13/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/grizzly/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/jetty6/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/test-samples/pom.xml
Log:
changing version number
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust13/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust13/pom.xml 2011-08-13 19:30:15 UTC (rev 14826)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust13/pom.xml 2011-08-13 20:00:43 UTC (rev 14827)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples.interopfest</groupId>
<name>CXF Interopfest WS-TRUST13 Demo</name>
<artifactId>ws-trust13</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -143,29 +143,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/pom.xml 2011-08-13 19:30:15 UTC (rev 14826)
+++ thirdparty/cxf/branches/cxf-2.3.1/pom.xml 2011-08-13 20:00:43 UTC (rev 14827)
@@ -458,7 +458,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
- <version>2.3.1-patch-01</version>
+ <version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -541,7 +541,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1-patch-01</version>
+ <version>2.3.1</version>
<configuration>
<archive>
<manifestEntries>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/grizzly/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/grizzly/pom.xml 2011-08-13 19:30:15 UTC (rev 14826)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/grizzly/pom.xml 2011-08-13 20:00:43 UTC (rev 14827)
@@ -4,13 +4,13 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-grizzly</artifactId>
<name>Apache CXF Container Integration Test Grizzly</name>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<repositories>
<repository>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/jetty6/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/jetty6/pom.xml 2011-08-13 19:30:15 UTC (rev 14826)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/jetty6/pom.xml 2011-08-13 20:00:43 UTC (rev 14827)
@@ -4,13 +4,13 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-jetty6</artifactId>
<name>Apache CXF Container Integration Test Jetty6</name>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<build>
<plugins>
<plugin>
Modified: thirdparty/cxf/branches/cxf-2.3.1/test-samples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/test-samples/pom.xml 2011-08-13 19:30:15 UTC (rev 14826)
+++ thirdparty/cxf/branches/cxf-2.3.1/test-samples/pom.xml 2011-08-13 20:00:43 UTC (rev 14827)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-test-samples</artifactId>
<packaging>pom</packaging>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Run Samples as Integration Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1-SNAPSHOT</version>
+ <version>2.3.1-patch-01</version>
</parent>
<build>
<plugins>
13 years, 8 months
JBossWS SVN: r14826 - thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 15:30:15 -0400 (Sat, 13 Aug 2011)
New Revision: 14826
Modified:
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/Messages.properties
Log:
[CXF-3740] fixing WSA handler to throw WSException on client side if addressing headers are not present in message but are required
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java 2011-08-13 19:10:48 UTC (rev 14825)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/MAPAggregator.java 2011-08-13 19:30:15 UTC (rev 14826)
@@ -34,6 +34,7 @@
import javax.wsdl.extensions.ExtensibilityElement;
import javax.xml.namespace.QName;
import javax.xml.ws.WebFault;
+import javax.xml.ws.WebServiceException;
import org.apache.cxf.Bus;
import org.apache.cxf.binding.soap.SoapBindingConstants;
@@ -376,6 +377,7 @@
}
return null;
}
+
/**
* If the isRequestor(message) == true and isAddressRequired() == false
* Assert all the wsa related assertion to true
@@ -586,6 +588,15 @@
&& !getWSAddressingFeature(message).isAddressingRequired()) {
assertAddressing(message);
}
+ //CXF-3740 If the addressing headers are not present and
+ // WSAddressingFeature.isAddressingRequired is set to true , we need to throw WebServiceException on client side
+ if (!ContextUtils.isOutbound(message) && ContextUtils.isRequestor(message)
+ && getWSAddressingFeature(message) != null
+ && getWSAddressingFeature(message).isAddressingRequired()
+ && theMaps == null) {
+ String reason = BUNDLE.getString("MISSING_ADDRESSING_HEADERS");
+ throw new WebServiceException(reason);
+ }
//CXF-3060 :If wsa policy is not enforced, AddressingProperties map is null and
// AddressingFeature.isRequired, requestor checks inbound message and throw exception
if (null == theMaps
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/Messages.properties
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/Messages.properties 2011-08-13 19:10:48 UTC (rev 14825)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/src/main/java/org/apache/cxf/ws/addressing/Messages.properties 2011-08-13 19:30:15 UTC (rev 14826)
@@ -26,4 +26,5 @@
MAP_REQUIRED_MSG = Message Addressing Property {0} required
DUPLICATE_MESSAGE_ID_MSG = Duplicate Message ID {0}
INVALID_ADDRESSING_PROPERTY_MESSAGE = A header representing a Message Addressing Property is not valid and the message cannot be processed
-MISSING_ACTION_MESSAGE = A required header representing a Message Addressing Property is not present
\ No newline at end of file
+MISSING_ACTION_MESSAGE = A required header representing a Message Addressing Property is not present
+MISSING_ADDRESSING_HEADERS = Missing addressing headers
13 years, 8 months
JBossWS SVN: r14825 - in thirdparty/cxf/branches/cxf-2.3.1: api and 128 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 15:10:48 -0400 (Sat, 13 Aug 2011)
New Revision: 14825
Modified:
thirdparty/cxf/branches/cxf-2.3.1/api/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/common/common/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/common/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/common/schemas/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/common/wstx-msv-validation/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/common/xerces-xsd-validation/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/all/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/minimal/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/manifest/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis_standalone/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/callback/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/configuration_interceptor/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/in_jvm_transport/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jms/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_pojo/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_spring_support/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_async/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_handlers/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms-spec-demo/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_pubsub/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_queue/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_client/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/mtom/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_dispatch/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_http_binding/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/soap_header/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_addressing/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_policy/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_rm/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_https/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/integration/jbi/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/integration/jca/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/integration/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/codegen-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/corba/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/java2ws-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/wsdl-validator-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/coloc/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/corba/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/http/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/jbi/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/object/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/soap/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/xml/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/core/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/sdo/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/js/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/simple/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/management-web/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/management/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-jetty/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-osgi/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jbi/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jms/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/transports/local/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/policy/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/rm/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/ws/security/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/webapp/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/databinding/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/transports/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/uncategorized/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/ws-specs/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/codegen/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/java2ws/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/testutils/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/common/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/corba/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/javato/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/javato/ws/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/validator/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/core/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/misc/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/test/pom.xml
Log:
changing version number
Modified: thirdparty/cxf/branches/cxf-2.3.1/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/api/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/api/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,13 +22,13 @@
<artifactId>cxf-api</artifactId>
<packaging>jar</packaging>
<name>Apache CXF API</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/common/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/common/common/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/common/common/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Common Utilities</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/common/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/common/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Common</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/common/schemas/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/common/schemas/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/common/schemas/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,13 +22,13 @@
<artifactId>cxf-common-schemas</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Common Schemas</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org/</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/common/wstx-msv-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/common/wstx-msv-validation/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/common/wstx-msv-validation/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wstx-msv-validation</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Woodstox/MSV Schema Validation</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.3.1/common/xerces-xsd-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/common/xerces-xsd-validation/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/common/xerces-xsd-validation/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF XML Schema Validation with Xerces</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/all/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/all/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/all/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/jaxrs/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/jaxrs/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-jaxrs</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF JAX-RS Bundle Jar</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-jaxrs</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/minimal/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/minimal/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/minimal/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-minimal</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-minimal</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/bundle/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/manifest/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/manifest/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/manifest/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -23,13 +23,13 @@
<artifactId>cxf-distribution-manifest</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,13 +22,13 @@
<artifactId>apache-cxf</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>aegis</artifactId>
<name>CXF sample using code first POJO's and the Aegis Binding</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -44,7 +44,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
@@ -111,24 +111,24 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- The server example in here launches the embedded jetty. Not needed
if you deploy a WAR. -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis_standalone/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis_standalone/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/aegis_standalone/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>aegis-standalone</artifactId>
<name>CXF sample using the Aegis Binding without any webservice</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -101,7 +101,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>net.java.dev.stax-utils</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/callback/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/callback/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/callback/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>callback</artifactId>
<name>CXF sample using a callbak object</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -166,17 +166,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/configuration_interceptor/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>configuration_interceptor</artifactId>
<name>CXF Sample of Stream GZIP Interceptor</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -147,22 +147,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/in_jvm_transport/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>in_jvm_transport</artifactId>
<name>Colocated Demo using Document/Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -97,18 +97,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_jaxws</artifactId>
<name>Java First demo using JAX-WS APIs</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -95,17 +95,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_jaxws_factory_bean</artifactId>
<name>Java First demo service using the JAXWSFactoryBeans</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -95,18 +95,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jms/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_jms/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -23,12 +23,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_jaxws_jms</artifactId>
<name>Java First demo using JAX-WS and JMS</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -118,17 +118,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_pojo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_pojo/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_pojo/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_pojo</artifactId>
<name>Java First POJO Sample</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -96,18 +96,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>java_first_spring_support</artifactId>
<name>Spring HTTP Sample</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -112,18 +112,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're not using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jax_rs_basic</artifactId>
<name>JAX-RS Basic Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -115,18 +115,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jax_rs_basic_https</artifactId>
<name>JAX-RS Basic Demo With HTTPS communications</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -148,18 +148,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jax_rs_content_negotiation</artifactId>
<name>JAX-RS Content Negotiation Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -97,18 +97,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_rs/spring_security/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,12 +22,12 @@
<groupId>org.apache.cxf.samples</groupId>
<name>JAX-RS Spring Security Demo</name>
<artifactId>jax_rs_spring_security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -116,18 +116,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,11 +21,11 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jax_service_aegis_client</artifactId>
<name>Sample of JAX-* Service Using an Aegis Client</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -95,23 +95,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_async/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_async/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_async/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jaxws_async</artifactId>
<name>JAX-WS Asynchronous Demo using Document/Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -127,18 +127,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jaxws_dispatch_provider</artifactId>
<name>JAX-WS Dispatch/Provider Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -187,18 +187,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_handlers/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,11 +21,11 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jaxws_handlers</artifactId>
<name>JAX-WS Handler Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -140,18 +140,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms-spec-demo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms-spec-demo/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms-spec-demo/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jms_spec_demo</artifactId>
<name>SOAP/JMS Transport Specification Demo using Document-Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -146,23 +146,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_pubsub/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_pubsub/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_pubsub/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,11 +21,11 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jms_pubsub</artifactId>
<name>JMS Transport Publish/Subscribe Demo using Document-Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -44,7 +44,7 @@
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -145,23 +145,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_queue/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_queue/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/jms_queue/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>jms_queue</artifactId>
<name>JMS Transport Queue Demo using Document-Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -146,23 +146,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>js_browser_client_java</artifactId>
<name>Generated JavaScript Sample using JAX-WS and JSR-181</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -91,22 +91,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>js_browser_client_simple</artifactId>
<name>JavaScript Client Demo using Document/Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -138,22 +138,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_client/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/js_client/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>js_client</artifactId>
<name>Hello World Client Demo using JavaScript</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -123,22 +123,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/mtom/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/mtom/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/mtom/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>mtom</artifactId>
<name>MTOM Demo for SWA and XOP</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -142,18 +142,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Samples</name>
<url>http://cxf.apache.org</url>
@@ -123,7 +123,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_dispatch/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_dispatch/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_dispatch/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>restful_dispatch</artifactId>
<name>RESTful Hello World Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -115,23 +115,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_http_binding/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_http_binding/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/restful_http_binding/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>restful_http_binding</artifactId>
<name>RESTful HTTP Binding Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -114,28 +114,28 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/soap_header/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/soap_header/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/soap_header/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>soap_header</artifactId>
<name>Sample using SOAP Headers</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -123,18 +123,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_addressing/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_addressing/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_addressing/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>ws_addressing</artifactId>
<name>WS-Addressing Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -144,22 +144,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_policy/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_policy/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>ws_policy</artifactId>
<name>WS-Policy Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -141,22 +141,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_rm/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_rm/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>ws_rm</artifactId>
<name>WS-RM Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -134,38 +134,38 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples.interopfest</groupId>
<name>CXF Interopfest WS-SC Demo </name>
<artifactId>ws-sc</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -180,29 +180,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples.interopfest</groupId>
<name>CXF Interopfest WS-SEC10 Demo</name>
<artifactId>ws-sec10</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -166,29 +166,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples.interopfest</groupId>
<name>CXF Interopfest WS-SEC11 Demo</name>
<artifactId>ws-sec11</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -167,29 +167,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples.interopfest</groupId>
<name>CXF Interopfest WS-TRUST10 Demo</name>
<artifactId>ws-trust10</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
@@ -151,29 +151,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wssec_sign_enc</artifactId>
<name>CXF WS-Security Sign Encoding Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
@@ -128,43 +128,43 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wssec_ut</artifactId>
<name>CXF WS-Security UT Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
<properties>
@@ -135,43 +135,43 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wssec_ut_policy</artifactId>
<name>WS-Security UT Policy Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
@@ -175,29 +175,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wssec_ut_sign</artifactId>
<name>WS-Security UT Sign Demo</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../..</relativePath>
</parent>
@@ -129,43 +129,43 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,12 +22,12 @@
<artifactId>wsdl_first</artifactId>
<packaging>war</packaging>
<name>WSDL first demo using Document/Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -159,18 +159,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_dynamic_client</artifactId>
<name>CXF Dynamic Client Sample</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -120,18 +120,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_https/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_https</artifactId>
<name>WSDL first demo using HTTPS</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -229,17 +229,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_pure_xml</artifactId>
<name>WSDL first demo using BARE Style in XML Binding (pure XML over HTTP)</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_rpclit</artifactId>
<name>WSDL first demo using RPC-Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -124,18 +124,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_soap12</artifactId>
<name>WSDL first demo using SOAP12 in Document/Literal Style</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -148,18 +148,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_xml_wrapped</artifactId>
<name>CXF sample using WRAPPED Style in XML Binding (pure XML over HTTP)</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
@@ -149,18 +149,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,12 +21,12 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>wsdl_first_xmlbeans</artifactId>
<name>WSDL first demo using Document/Literal Style and XMLBeans DataBinding</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<properties>
<cxf.version>${project.version}</cxf.version>
@@ -134,23 +134,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-xmlbeans</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/branches/cxf-2.3.1/integration/jbi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/integration/jbi/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/integration/jbi/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF JBI Integration</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/integration/jca/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/integration/jca/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/integration/jca/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF JCA Connection</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/integration/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/integration/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Integration</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.archetype</groupId>
<artifactId>cxf-jaxws-javafirst</artifactId>
<name>Apache CXF Archetype - Simple JAX-WS Java First</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<properties>
<maven.test.skip>true</maven.test.skip>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/archetypes/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Maven Archetypes</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/codegen-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/codegen-plugin/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/codegen-plugin/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Code Generation Maven2 Plugins</name>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/corba/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/corba/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF CORBA Tools Maven2 Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/java2ws-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/java2ws-plugin/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/java2ws-plugin/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Java2WS Maven2 Plugin</name>
<url>http://cxf.apache.org</url>
@@ -30,7 +30,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Maven Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/wsdl-validator-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/wsdl-validator-plugin/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/maven-plugins/wsdl-validator-plugin/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -3,7 +3,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF WSDL Validator Maven2 Plugin</name>
<url>http://cxf.apache.org</url>
@@ -11,7 +11,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/parent/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Parent</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.3.1/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF</name>
<url>http://cxf.apache.org</url>
@@ -458,7 +458,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -541,7 +541,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<configuration>
<archive>
<manifestEntries>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/coloc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/coloc/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/coloc/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/corba/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/corba/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/http/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/http/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/http/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/jbi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/jbi/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/jbi/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/object/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/object/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/object/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/soap/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/soap/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/soap/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/xml/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/bindings/xml/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/core/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/core/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime Core</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/aegis/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/aegis/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/jaxb/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/jaxb/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/sdo/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/sdo/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/sdo/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/xmlbeans/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/databinding/xmlbeans/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxrs/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxrs/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime JAX-RS Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxws/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/jaxws/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime JAX-WS Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/js/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/js/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/js/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime JavaScript Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/simple/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/frontend/simple/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime Simple Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/javascript/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/javascript/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/management/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/management/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/management/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime Management</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/management-web/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/management-web/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/management-web/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management-web</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime Web Management</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -3,14 +3,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-testsupport</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Test Case Support</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime HTTP Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-jetty/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-jetty/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-jetty/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime HTTP Jetty Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-osgi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-osgi/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/transports/http-osgi/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF HTTP Transport for OSGi</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jbi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jbi/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jbi/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime JBI Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jms/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/transports/jms/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime JMS Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/transports/local/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/transports/local/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/transports/local/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Runtime Local Transport</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/addr/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/policy/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/policy/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/rm/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/rm/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/rt/ws/security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/ws/security/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/ws/security/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
<name>Apache CXF Container Integration System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<packaging>pom</packaging>
<url>http://cxf.apache.org</url>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/webapp/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/webapp/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/container-integration/webapp/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -4,13 +4,13 @@
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-container-integration</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-webapp</artifactId>
<name>Apache CXF Container Integration Test Webapp</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<packaging>war</packaging>
<dependencies>
<dependency>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/databinding/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/databinding/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/databinding/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-databinding</artifactId>
<name>Apache CXF Databinding System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/jaxrs/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/jaxrs/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-jaxrs</artifactId>
<name>Apache CXF JAX-RS System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/jaxws/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/jaxws/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-jaxws</artifactId>
<name>Apache CXF JAX-WS System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF System Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/transports/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/transports/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/transports/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-transports</artifactId>
<name>Apache CXF Transport System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/uncategorized/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/uncategorized/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/uncategorized/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-uncategorized</artifactId>
<name>Apache CXF Uncategorized System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/ws-specs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/ws-specs/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/ws-specs/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ws-specs</artifactId>
<name>Apache CXF WS-* Specifications System Tests</name>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/codegen/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/codegen/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/codegen/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -20,12 +20,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-codegen</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Test for reading wsdl from repo and generating code from it</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/java2ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/java2ws/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/java2ws/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -20,12 +20,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-java2ws</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Test for writing wsdl to repo</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/systests/wsdl_maven/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF System Tests for WSDL generation and retrieval</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/testutils/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/testutils/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/testutils/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Test Utilities</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/common/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/common/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools Common</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/corba/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/corba/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools CORBA</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/javato/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/javato/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/javato/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools JavaTo</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/javato/ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/javato/ws/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/javato/ws/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools JavaTo WS</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/validator/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/validator/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/validator/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools Validator</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/core/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/core/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo Core</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/databinding/jaxb/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/databinding/jaxb/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo JAXB Databinding</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/javascript/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/javascript/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDL to JavaScript Front End</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/jaxws/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/frontend/jaxws/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo JAXWS Frontend</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/misc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/misc/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/misc/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo Misctools</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/test/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
+++ thirdparty/cxf/branches/cxf-2.3.1/tools/wsdlto/test/pom.xml 2011-08-13 19:10:48 UTC (rev 14825)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<name>Apache CXF Command Line Tools WSDLTo Test</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.3.1</version>
+ <version>2.3.1-patch-01</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
13 years, 8 months
JBossWS SVN: r14824 - in thirdparty/cxf/branches/cxf-2.3.1/rt: testsupport and 19 other directories.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2011-08-13 12:53:41 -0400 (Sat, 13 Aug 2011)
New Revision: 14824
Added:
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/systest/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/systest/servlet/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/systest/servlet/GetMethodQueryWebRequest.java
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/AbstractServletTest.java
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/TestUtilitiesWithBasicBus.java
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/systest/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/systest/servlet/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/systest/servlet/web.xml
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/test/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/test/java/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/test/java/org/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/test/java/org/apache/
thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/test/java/org/apache/cxf/
Log:
importing CXF 2.3.1 tag - (per partes) because of unreliable SVN RH repo :(
Added: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml (rev 0)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml 2011-08-13 16:53:41 UTC (rev 14824)
@@ -0,0 +1,99 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-testsupport</artifactId>
+ <packaging>jar</packaging>
+ <version>2.3.1</version>
+ <name>Apache CXF Test Case Support</name>
+ <url>http://cxf.apache.org</url>
+
+ <parent>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-parent</artifactId>
+ <version>2.3.1</version>
+ <relativePath>../../parent/pom.xml</relativePath>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-transports-local</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-transports-http</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-bindings-soap</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.jra</groupId>
+ <artifactId>jra</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>httpunit</groupId>
+ <artifactId>httpunit</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.6.2</version>
+ </dependency>
+ </dependencies>
+
+ <profiles>
+ <profile>
+ <id>jdk15</id>
+ <activation>
+ <jdk>1.5</jdk>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jaxws_2.2_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.soap</groupId>
+ <artifactId>saaj-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-annotation_1.0_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-activation_1.1_spec</artifactId>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles>
+
+</project>
Property changes on: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/pom.xml
___________________________________________________________________
Added: svn:executable
+ *
Added: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/systest/servlet/GetMethodQueryWebRequest.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/systest/servlet/GetMethodQueryWebRequest.java (rev 0)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/systest/servlet/GetMethodQueryWebRequest.java 2011-08-13 16:53:41 UTC (rev 14824)
@@ -0,0 +1,43 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.cxf.systest.servlet;
+
+import com.meterware.httpunit.GetMethodWebRequest;
+
+//Customer WebRequest for sending the "http://localhost/xxx?wsdl" request
+public class GetMethodQueryWebRequest extends GetMethodWebRequest {
+ private String urlString;
+
+ public GetMethodQueryWebRequest(String urlStr) {
+ super(urlStr);
+ urlString = urlStr;
+ }
+
+ public String getQueryString() {
+ int pos = urlString.indexOf('?');
+ if (pos > 0) {
+ return urlString.substring(pos + 1);
+ } else {
+ return "";
+ }
+ }
+
+
+
+}
Added: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/AbstractServletTest.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/AbstractServletTest.java (rev 0)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/AbstractServletTest.java 2011-08-13 16:53:41 UTC (rev 14824)
@@ -0,0 +1,96 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.cxf.testsupport;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.net.MalformedURLException;
+
+import org.xml.sax.SAXException;
+
+import com.meterware.httpunit.HttpException;
+import com.meterware.httpunit.HttpNotFoundException;
+import com.meterware.httpunit.HttpUnitOptions;
+import com.meterware.httpunit.WebRequest;
+import com.meterware.servletunit.ServletRunner;
+import com.meterware.servletunit.ServletUnitClient;
+
+import org.apache.cxf.test.AbstractCXFTest;
+import org.junit.Before;
+
+public abstract class AbstractServletTest extends AbstractCXFTest {
+ public static final String CONTEXT = "/mycontext";
+ public static final String CONTEXT_URL = "http://localhost/mycontext";
+ protected ServletRunner sr;
+
+ @Before
+ public void setUp() throws Exception {
+ InputStream configurationStream = getResourceAsStream(getConfiguration());
+ sr = new ServletRunner(configurationStream, CONTEXT);
+
+ try {
+ sr.newClient().getResponse(CONTEXT_URL + "/services");
+ } catch (HttpNotFoundException e) {
+ // ignore, we just want to boot up the servlet
+ }
+
+ HttpUnitOptions.setExceptionsThrownOnErrorStatus(true);
+ }
+
+ /**
+ * @return The web.xml to use for testing.
+ */
+ protected String getConfiguration() {
+ return "/org/apache/cxf/systest/servlet/web.xml";
+ }
+
+ protected ServletUnitClient newClient() {
+ return sr.newClient();
+ }
+
+ /**
+ * Here we expect an errorCode other than 200, and look for it checking for
+ * text is omitted as it doesnt work. It would never work on java1.3, but
+ * one may have expected java1.4+ to have access to the error stream in
+ * responses. Clearly not.
+ *
+ * @param request
+ * @param errorCode
+ * @param errorText optional text string to search for
+ * @throws MalformedURLException
+ * @throws IOException
+ * @throws SAXException
+ */
+ protected void expectErrorCode(WebRequest request, int errorCode, String errorText)
+ throws MalformedURLException, IOException, SAXException {
+ String failureText = "Expected error " + errorCode + " from " + request.getURL();
+
+ try {
+ newClient().getResponse(request);
+ fail(errorText + " -got success instead");
+ } catch (HttpException e) {
+ assertEquals(failureText, errorCode, e.getResponseCode());
+ /*
+ * checking for text omitted as it doesnt work. if(errorText!=null) {
+ * assertTrue( "Failed to find "+errorText+" in "+
+ * e.getResponseMessage(), e.getMessage().indexOf(errorText)>=0); }
+ */
+ }
+ }
+}
Added: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/TestUtilitiesWithBasicBus.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/TestUtilitiesWithBasicBus.java (rev 0)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/TestUtilitiesWithBasicBus.java 2011-08-13 16:53:41 UTC (rev 14824)
@@ -0,0 +1,79 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.cxf.testsupport;
+
+import org.apache.cxf.BusException;
+import org.apache.cxf.binding.BindingFactoryManager;
+import org.apache.cxf.binding.soap.SoapBindingFactory;
+import org.apache.cxf.binding.soap.SoapTransportFactory;
+import org.apache.cxf.common.util.SOAPConstants;
+import org.apache.cxf.test.TestUtilities;
+import org.apache.cxf.transport.ConduitInitiatorManager;
+import org.apache.cxf.transport.DestinationFactoryManager;
+import org.apache.cxf.transport.local.LocalTransportFactory;
+import org.apache.cxf.wsdl.WSDLManager;
+import org.apache.cxf.wsdl11.WSDLManagerImpl;
+
+public class TestUtilitiesWithBasicBus extends TestUtilities {
+
+ private LocalTransportFactory localTransport;
+
+ public TestUtilitiesWithBasicBus(Class<?> classpathReference) {
+ super(classpathReference);
+ }
+
+ /**
+ * Add objects to the bus to set up the local transport, soap transport, soap bindings, and WSDL manager.
+ * All you need to test databindings and other type-related operations.
+ * @throws BusException
+ */
+ public void setUp() throws BusException {
+ SoapBindingFactory bindingFactory = new SoapBindingFactory();
+
+ bus.getExtension(BindingFactoryManager.class)
+ .registerBindingFactory("http://schemas.xmlsoap.org/wsdl/soap/", bindingFactory);
+
+ DestinationFactoryManager dfm = bus.getExtension(DestinationFactoryManager.class);
+
+ SoapTransportFactory soapDF = new SoapTransportFactory();
+ soapDF.setBus(bus);
+ dfm.registerDestinationFactory("http://schemas.xmlsoap.org/wsdl/soap/", soapDF);
+ dfm.registerDestinationFactory("http://schemas.xmlsoap.org/soap/", soapDF);
+ dfm.registerDestinationFactory("http://cxf.apache.org/transports/local", soapDF);
+
+ localTransport = new LocalTransportFactory();
+ dfm.registerDestinationFactory("http://schemas.xmlsoap.org/soap/http", localTransport);
+ dfm.registerDestinationFactory("http://schemas.xmlsoap.org/wsdl/soap/http", localTransport);
+ dfm.registerDestinationFactory("http://cxf.apache.org/bindings/xformat", localTransport);
+ dfm.registerDestinationFactory("http://cxf.apache.org/transports/local", localTransport);
+
+ ConduitInitiatorManager extension = bus.getExtension(ConduitInitiatorManager.class);
+ extension.registerConduitInitiator(LocalTransportFactory.TRANSPORT_ID, localTransport);
+ extension.registerConduitInitiator("http://schemas.xmlsoap.org/wsdl/soap/", localTransport);
+ extension.registerConduitInitiator("http://schemas.xmlsoap.org/soap/http", localTransport);
+ extension.registerConduitInitiator("http://schemas.xmlsoap.org/soap/", localTransport);
+
+ bus.setExtension(new WSDLManagerImpl(), WSDLManager.class);
+
+ addNamespace("wsdl", SOAPConstants.WSDL11_NS);
+ addNamespace("wsdlsoap", SOAPConstants.WSDL11_SOAP_NS);
+ addNamespace("xsd", SOAPConstants.XSD);
+ }
+
+}
Property changes on: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/java/org/apache/cxf/testsupport/TestUtilitiesWithBasicBus.java
___________________________________________________________________
Added: svn:executable
+ *
Added: thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/systest/servlet/web.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/systest/servlet/web.xml (rev 0)
+++ thirdparty/cxf/branches/cxf-2.3.1/rt/testsupport/src/main/resources/org/apache/cxf/systest/servlet/web.xml 2011-08-13 16:53:41 UTC (rev 14824)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!DOCTYPE web-app
+ PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+ "http://java.sun.com/dtd/web-app_2_3.dtd">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<web-app>
+
+ <servlet>
+ <servlet-name>CXFServlet</servlet-name>
+ <display-name>CXF Servlet</display-name>
+ <servlet-class>
+ org.apache.cxf.transport.servlet.CXFServlet
+ </servlet-class>
+ <init-param>
+ <param-name>config-location</param-name>
+ <param-value>/org/apache/cxf/systest/servlet/cxf-servlet.xml</param-value>
+ </init-param>
+ <!--init-param>
+ <param-name>bus.id</param-name>
+ <param-value>servlet.systest.bus.id</param-value>
+ </init-param-->
+ </servlet>
+
+ <servlet-mapping>
+ <servlet-name>CXFServlet</servlet-name>
+ <url-pattern>/services/*</url-pattern>
+ </servlet-mapping>
+
+
+</web-app>
\ No newline at end of file
13 years, 8 months