JBossWS SVN: r17267 - stack/cxf/branches/jbossws-cxf-3.1.2.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-02-01 11:18:10 -0500 (Fri, 01 Feb 2013)
New Revision: 17267
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Use cxf 2.2.12-patch-06-SNAPSHOT
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-02-01 15:14:50 UTC (rev 17266)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-02-01 16:18:10 UTC (rev 17267)
@@ -53,7 +53,7 @@
<jbossws.jboss510.version>3.1.0-SNAPSHOT</jbossws.jboss510.version>
-->
<!-- END -->
- <cxf.version>2.2.12-patch-04</cxf.version>
+ <cxf.version>2.2.12-patch-06-SNAPSHOT</cxf.version>
<cxf.spring.version>2.5.6.SEC02</cxf.spring.version>
<cxf.stax.version>1.0.1</cxf.stax.version>
<cxf.asm.version>3.1</cxf.asm.version>
11 years, 10 months
JBossWS SVN: r17266 - in thirdparty/cxf/branches/cxf-2.4.10/rt: ws/security/src/main/java/org/apache/cxf/ws/security/wss4j and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-02-01 10:14:50 -0500 (Fri, 01 Feb 2013)
New Revision: 17266
Modified:
thirdparty/cxf/branches/cxf-2.4.10/rt/core/src/main/java/org/apache/cxf/interceptor/URIMappingInterceptor.java
thirdparty/cxf/branches/cxf-2.4.10/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java
Log:
BZ 906819 (backport CXF-4629)
Modified: thirdparty/cxf/branches/cxf-2.4.10/rt/core/src/main/java/org/apache/cxf/interceptor/URIMappingInterceptor.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.4.10/rt/core/src/main/java/org/apache/cxf/interceptor/URIMappingInterceptor.java 2013-02-01 11:04:55 UTC (rev 17265)
+++ thirdparty/cxf/branches/cxf-2.4.10/rt/core/src/main/java/org/apache/cxf/interceptor/URIMappingInterceptor.java 2013-02-01 15:14:50 UTC (rev 17266)
@@ -46,6 +46,7 @@
import org.apache.cxf.message.Exchange;
import org.apache.cxf.message.Message;
import org.apache.cxf.message.MessageContentsList;
+import org.apache.cxf.message.MessageUtils;
import org.apache.cxf.phase.Phase;
import org.apache.cxf.service.Service;
import org.apache.cxf.service.model.BindingInfo;
@@ -55,6 +56,7 @@
import org.apache.cxf.service.model.ServiceModelUtil;
public class URIMappingInterceptor extends AbstractInDatabindingInterceptor {
+ public static final String URIMAPPING_SKIP = URIMappingInterceptor.class.getName() + ".skip";
private static final Logger LOG = LogUtils.getL7dLogger(URIMappingInterceptor.class);
@@ -73,6 +75,9 @@
}
return;
}
+ if (MessageUtils.getContextualBoolean(message, URIMAPPING_SKIP, false)) {
+ return;
+ }
String opName = getOperationName(message);
if (LOG.isLoggable(Level.FINE)) {
Modified: thirdparty/cxf/branches/cxf-2.4.10/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java
===================================================================
--- thirdparty/cxf/branches/cxf-2.4.10/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java 2013-02-01 11:04:55 UTC (rev 17265)
+++ thirdparty/cxf/branches/cxf-2.4.10/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JInInterceptor.java 2013-02-01 15:14:50 UTC (rev 17266)
@@ -52,6 +52,7 @@
import org.apache.cxf.endpoint.Endpoint;
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.interceptor.Fault;
+import org.apache.cxf.interceptor.URIMappingInterceptor;
import org.apache.cxf.message.MessageUtils;
import org.apache.cxf.phase.Phase;
import org.apache.cxf.phase.PhaseInterceptor;
@@ -170,7 +171,13 @@
}
public final boolean isGET(SoapMessage message) {
String method = (String)message.get(SoapMessage.HTTP_REQUEST_METHOD);
- return "GET".equals(method) && message.getContent(XMLStreamReader.class) == null;
+ boolean isGet =
+ "GET".equals(method) && message.getContent(XMLStreamReader.class) == null;
+ if (isGet) {
+ //make sure we skip the URIMapping as we cannot apply security requirements to that
+ message.put(URIMappingInterceptor.URIMAPPING_SKIP, Boolean.TRUE);
+ }
+ return isGet;
}
public void handleMessage(SoapMessage msg) throws Fault {
11 years, 10 months
JBossWS SVN: r17265 - in thirdparty/cxf/branches/cxf-2.2.12: api and 88 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2013-02-01 06:04:55 -0500 (Fri, 01 Feb 2013)
New Revision: 17265
Modified:
thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/buildtools/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/common/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/schemas/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/wstx-msv-validation/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xerces-xsd-validation/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean-test/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/bug671/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv-test/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts-test/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/common/xsd/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/all/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/minimal/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/distribution/manifest/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/distribution/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/integration/jbi/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/integration/jca/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/integration/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/codegen-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/corba/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/java2ws-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/wsdl-validator-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-plugin/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-test/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/parent/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/coloc/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/corba/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/http/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/jbi/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/object/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/soap/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/xml/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/core/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/aegis/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/js/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/simple/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/management/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/testsupport/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-jetty/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-osgi/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jbi/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jms/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/transports/local/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/ws/addr/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/ws/policy/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/ws/rm/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/databinding/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/jaxrs/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/transports/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/uncategorized/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/ws-specs/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/codegen/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/java2ws/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/testutils/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/common/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/corba/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/javato/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/javato/ws/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/validator/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/core/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/databinding/jaxb/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/javascript/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/jaxws/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/misc/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/pom.xml
thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/test/pom.xml
Log:
Bump up version to 2.2.12-patch-06-SNAPSHOT as patch05 has already been taken by productization
Modified: thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,13 +22,13 @@
<artifactId>cxf-api</artifactId>
<packaging>jar</packaging>
<name>Apache CXF API</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/buildtools/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/buildtools/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/buildtools/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-buildtools</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Buildtools</name>
<url>http://cxf.apache.org</url>
<packaging>jar</packaging>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/common/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/common/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Common</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/schemas/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/schemas/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/schemas/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,13 +22,13 @@
<artifactId>cxf-common-schemas</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Common Schemas</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org/</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/wstx-msv-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/wstx-msv-validation/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/wstx-msv-validation/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xerces-xsd-validation/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xerces-xsd-validation/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xerces-xsd-validation/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC Boolean Getter Plugin</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean-test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean-test/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean-test/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC Boolean Getter Plugin Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/bug671/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/bug671/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/bug671/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-bug671</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC Plugin To Workaround JAXB Bug 671</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC Default Value Plugin</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv-test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv-test/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv-test/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC Default Value Plugin Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC toString Plugin</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts-test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts-test/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts-test/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XJC toString Plugin Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/common/xsd/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/common/xsd/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xsd/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-xsd</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Common XSD2Java Plugins</name>
<url>http://cxf.apache.org</url>
@@ -29,7 +29,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/all/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/all/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/all/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/jaxrs/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/jaxrs/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-jaxrs</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF JAX-RS Bundle Jar</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-jaxrs</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/minimal/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/minimal/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/minimal/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-minimal</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-minimal</bundle.symbolic.name>
Modified: thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/distribution/manifest/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/distribution/manifest/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/manifest/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -23,13 +23,13 @@
<artifactId>cxf-distribution-manifest</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/distribution/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/distribution/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,13 +22,13 @@
<artifactId>apache-cxf</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/integration/jbi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/integration/jbi/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/jbi/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/integration/jca/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/integration/jca/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/jca/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/integration/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/integration/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Integration</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<properties>
<maven.test.skip>true</maven.test.skip>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Maven Archetypes</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/codegen-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/codegen-plugin/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/codegen-plugin/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/corba/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/corba/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/java2ws-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/java2ws-plugin/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/java2ws-plugin/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Maven Plugins</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/wsdl-validator-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/wsdl-validator-plugin/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/wsdl-validator-plugin/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -3,7 +3,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-plugin/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-plugin/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-plugin/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xml2fastinfoset-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF XML to FastInfoset Maven2 Plugin</name>
<url>http://cxf.apache.org</url>
<prerequisites>
@@ -32,7 +32,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-test/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-test/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/branches/cxf-2.2.12/parent/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/parent/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/parent/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Parent</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/branches/cxf-2.2.12/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF</name>
<description>Apache CXF is an open-source services framework that aids in
the development of services using front-end programming APIs, like JAX-WS
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/coloc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/coloc/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/coloc/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/corba/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/corba/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/http/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/http/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/http/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/jbi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/jbi/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/jbi/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/object/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/object/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/object/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/soap/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/soap/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/soap/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/xml/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/xml/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/xml/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/core/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/core/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/aegis/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/aegis/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/aegis/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/jaxb/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/jaxb/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/xmlbeans/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/xmlbeans/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxrs/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxrs/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxws/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxws/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/js/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/js/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/js/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/simple/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/simple/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/simple/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/javascript/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/javascript/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/management/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/management/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/management/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF Runtime</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/testsupport/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/testsupport/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/testsupport/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -3,14 +3,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-testsupport</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-jetty/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-jetty/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-jetty/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-osgi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-osgi/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-osgi/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jbi/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jbi/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jbi/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jms/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jms/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jms/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/transports/local/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/transports/local/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/local/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/ws/addr/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/ws/addr/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/addr/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/ws/policy/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/ws/policy/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/policy/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/ws/rm/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/ws/rm/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/rm/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<repositories>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/databinding/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/databinding/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/databinding/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/jaxrs/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/jaxrs/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/jaxws/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/jaxws/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Apache CXF System Tests</name>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/transports/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/transports/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/transports/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/uncategorized/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/uncategorized/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/uncategorized/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/ws-specs/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/ws-specs/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/ws-specs/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/codegen/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/codegen/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/codegen/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -20,12 +20,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-codegen</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/java2ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/java2ws/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/java2ws/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -20,12 +20,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf.systests.wsdl_maven</groupId>
<artifactId>cxf-systests-java2ws</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<name>Test for writing wsdl to repo</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/testutils/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/testutils/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/testutils/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/common/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/common/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/common/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/corba/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/corba/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/javato/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/javato/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/javato/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/javato/ws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/javato/ws/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/javato/ws/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/validator/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/validator/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/validator/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/core/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/core/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/core/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/databinding/jaxb/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/databinding/jaxb/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/javascript/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/javascript/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/javascript/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/jaxws/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/jaxws/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/misc/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/misc/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/misc/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
</parent>
<modules>
Modified: thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/test/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/test/pom.xml 2013-01-30 13:21:08 UTC (rev 17264)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/test/pom.xml 2013-02-01 11:04:55 UTC (rev 17265)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</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.2.12-patch-05-SNAPSHOT</version>
+ <version>2.2.12-patch-06-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
11 years, 10 months