JBossWS SVN: r18216 - in stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940: modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: klape
Date: 2013-12-19 20:32:43 -0500 (Thu, 19 Dec 2013)
New Revision: 18216
Modified:
stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/
stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingServerHandler.java
stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java
Log:
[JBPAPP-10940] Operation-specific WSS config doesn't get applied when SOAP body is encrypted
Property changes on: stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940
___________________________________________________________________
Added: svn:mergeinfo
+ /stack/native/branches/jbossws-native-3.1.2:18168,18198
Modified: stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingServerHandler.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingServerHandler.java 2013-12-20 01:31:55 UTC (rev 18215)
+++ stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/addressing/jaxws/WSAddressingServerHandler.java 2013-12-20 01:32:43 UTC (rev 18216)
@@ -201,7 +201,12 @@
// supply the response action
OperationMetaData opMetaData = ((CommonMessageContext)msgContext).getOperationMetaData();
-
+ if (opMetaData == null)
+ {
+ // Apparently the operation couldn't be determined
+ return;
+ }
+
if (!isFault && !opMetaData.isOneWay())
{
Modified: stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java 2013-12-20 01:31:55 UTC (rev 18215)
+++ stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/modules/core/src/main/java/org/jboss/ws/extensions/security/WSSecurityDispatcher.java 2013-12-20 01:32:43 UTC (rev 18216)
@@ -1,6 +1,6 @@
/*
* JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * Copyright 2013, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
@@ -302,9 +302,10 @@
private Config getActualConfig(WSSecurityConfiguration configuration, Config operationConfig)
{
- if (operationConfig == null)
+ if (operationConfig == null && hasSubConfigs(configuration))
{
- //if no configuration override, we try getting the right operation config
+ //if no configuration override and the provided configuration has port /
+ //operation configs, we try getting the right operation config
//according to the invoked operation that can be found using the context
CommonMessageContext ctx = MessageContextAssociation.peekMessageContext();
if (ctx != null)
@@ -328,13 +329,27 @@
}
}
if (opMetaData != null)
+ {
operationConfig = selectOperationConfig(configuration, port, opMetaData.getQName());
+ }
+ else
+ {
+ //No operation metadata matched, meaning we don't know what operationConfig to use.
+ //This is to be solved either by removing useless operation configs or by requiring
+ //WS-Addressing to be used for telling the server which operation is being invoked
+ throw new WebServiceException("Could not determine the operation configuration to be used for processing the request");
+ }
}
}
//null operationConfig means default behavior
return operationConfig != null ? operationConfig : configuration.getDefaultConfig();
}
+ private boolean hasSubConfigs(WSSecurityConfiguration configuration)
+ {
+ return !configuration.getPorts().isEmpty();
+ }
+
private Config selectOperationConfig(WSSecurityConfiguration configuration, QName portName, QName opName)
{
Port port = configuration.getPorts().get(portName != null ? portName.getLocalPart() : null);
10 years, 11 months
JBossWS SVN: r18215 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: klape
Date: 2013-12-19 20:31:55 -0500 (Thu, 19 Dec 2013)
New Revision: 18215
Added:
stack/native/branches/jbossws-native-3.1.2.SP7_JBPAPP-10940/
Log:
One off branch
10 years, 11 months
JBossWS SVN: r18214 - in stack/cxf/branches/jbossws-cxf-3.1.2: modules/client and 7 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:38:22 -0500 (Wed, 18 Dec 2013)
New Revision: 18214
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Moving to next dev cycle
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-12-18 13:34:33 UTC (rev 18213)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-12-18 13:38:22 UTC (rev 18214)
@@ -17,7 +17,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.1.2.SP15</version>
+ <version>3.1.2-SNAPSHOT</version>
<!-- Parent -->
<parent>
10 years, 11 months
JBossWS SVN: r18213 - stack/cxf/tags.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:34:33 -0500 (Wed, 18 Dec 2013)
New Revision: 18213
Added:
stack/cxf/tags/jbossws-cxf-3.1.2.SP15/
Log:
Tagging jbossws-cxf-3.1.2.SP15
10 years, 11 months
JBossWS SVN: r18212 - in stack/cxf/branches/jbossws-cxf-3.1.2: modules/client and 7 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:33:23 -0500 (Wed, 18 Dec 2013)
New Revision: 18212
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Preparing for tagging
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/client/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/endorsed/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/management/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/resources/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/cxf-tests/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/framework-tests/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/testsuite/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-12-18 13:33:23 UTC (rev 18212)
@@ -17,7 +17,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP15</version>
<!-- Parent -->
<parent>
10 years, 11 months
JBossWS SVN: r18211 - stack/cxf/branches/jbossws-cxf-3.1.2.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:30:07 -0500 (Wed, 18 Dec 2013)
New Revision: 18211
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Using latest cxf and wss4j forks
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2013-12-18 13:30:07 UTC (rev 18211)
@@ -53,7 +53,7 @@
<jbossws.jboss510.version>3.1.0-SNAPSHOT</jbossws.jboss510.version>
-->
<!-- END -->
- <cxf.version>2.2.12-patch-08-SNAPSHOT</cxf.version>
+ <cxf.version>2.2.12-patch-08</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>
@@ -77,7 +77,7 @@
<servlet.api.version>2.5</servlet.api.version>
<velocity.version>1.5</velocity.version>
<xmlsec.version>1.5.1</xmlsec.version>
- <wss4j.version>1.5.12-patch-04-SNAPSHOT</wss4j.version>
+ <wss4j.version>1.5.12-patch-04</wss4j.version>
<wstx.version>3.2.9</wstx.version>
</properties>
10 years, 11 months
JBossWS SVN: r18210 - in thirdparty/cxf/branches/cxf-2.2.12: api and 88 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:11:49 -0500 (Wed, 18 Dec 2013)
New Revision: 18210
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:
Preparing for next dev cycle
Modified: thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml 2013-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,13 +22,13 @@
<artifactId>cxf-api</artifactId>
<packaging>jar</packaging>
<name>Apache CXF API</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/buildtools/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-buildtools</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/common/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/schemas/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,13 +22,13 @@
<artifactId>cxf-common-schemas</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Common Schemas</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org/</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/wstx-msv-validation/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xerces-xsd-validation/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean-test/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/bug671/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-bug671</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv-test/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts-test/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xsd/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-xsd</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/all/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/jaxrs/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -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-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/minimal/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-minimal</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/manifest/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -23,13 +23,13 @@
<artifactId>cxf-distribution-manifest</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,13 +22,13 @@
<artifactId>apache-cxf</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/jbi/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/jca/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/codegen-plugin/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/corba/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/java2ws-plugin/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/wsdl-validator-plugin/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -3,7 +3,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-plugin/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xml2fastinfoset-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-test/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/parent/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/coloc/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/corba/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/http/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/jbi/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/object/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/soap/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/xml/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/core/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/aegis/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/jaxb/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/xmlbeans/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxrs/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxws/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/js/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/simple/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/javascript/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/management/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/testsupport/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -3,14 +3,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-testsupport</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-jetty/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-osgi/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jbi/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jms/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/local/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/addr/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/policy/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/rm/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/databinding/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/jaxrs/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/jaxws/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/transports/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/uncategorized/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/ws-specs/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/codegen/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -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-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/java2ws/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -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-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/testutils/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/common/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/corba/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/javato/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/javato/ws/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/validator/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/core/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/databinding/jaxb/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/javascript/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/jaxws/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/misc/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-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-12-18 13:05:55 UTC (rev 18209)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/test/pom.xml 2013-12-18 13:11:49 UTC (rev 18210)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08</version>
+ <version>2.2.12-patch-09-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-08</version>
+ <version>2.2.12-patch-09-SNAPSHOT</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
10 years, 11 months
JBossWS SVN: r18209 - thirdparty/cxf/tags.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:05:55 -0500 (Wed, 18 Dec 2013)
New Revision: 18209
Added:
thirdparty/cxf/tags/cxf-2.2.12-patch-08/
Log:
Tagging cxf-2.2.12-patch-08
10 years, 11 months
JBossWS SVN: r18208 - in thirdparty/cxf/branches/cxf-2.2.12: api and 88 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 08:03:53 -0500 (Wed, 18 Dec 2013)
New Revision: 18208
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:
Preparing for tagging 2.2.12-patch-08
Modified: thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml
===================================================================
--- thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml 2013-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/api/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,13 +22,13 @@
<artifactId>cxf-api</artifactId>
<packaging>jar</packaging>
<name>Apache CXF API</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/buildtools/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-buildtools</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/common/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/schemas/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,13 +22,13 @@
<artifactId>cxf-common-schemas</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Common Schemas</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org/</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/wstx-msv-validation/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xerces-xsd-validation/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/boolean-test/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/bug671/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-bug671</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/dv-test/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xjc/ts-test/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/common/xsd/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-xsd</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/all/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/jaxrs/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/minimal/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-minimal</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/bundle/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/manifest/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -23,13 +23,13 @@
<artifactId>cxf-distribution-manifest</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/distribution/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,13 +22,13 @@
<artifactId>apache-cxf</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/jbi/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/jca/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/integration/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/archetypes/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/codegen-plugin/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/corba/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/java2ws-plugin/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/wsdl-validator-plugin/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -3,7 +3,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-plugin/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xml2fastinfoset-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/maven-plugins/xml2fastinfoset-test/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/parent/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/coloc/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/corba/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/http/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/jbi/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/object/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/soap/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/bindings/xml/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/core/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/aegis/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/jaxb/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/databinding/xmlbeans/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxrs/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/jaxws/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/js/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/frontend/simple/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/javascript/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/management/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/testsupport/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -3,14 +3,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-testsupport</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-jetty/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/http-osgi/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jbi/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/jms/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/transports/local/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/addr/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/policy/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/rm/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/databinding/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/jaxrs/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/jaxws/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/transports/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/uncategorized/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/ws-specs/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/codegen/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/java2ws/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<name>Test for writing wsdl to repo</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/systests/wsdl_maven/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/testutils/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/common/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/corba/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/javato/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/javato/ws/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/validator/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/core/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/databinding/jaxb/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/javascript/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/frontend/jaxws/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/misc/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-12-18 12:59:51 UTC (rev 18207)
+++ thirdparty/cxf/branches/cxf-2.2.12/tools/wsdlto/test/pom.xml 2013-12-18 13:03:53 UTC (rev 18208)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-patch-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</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-08-SNAPSHOT</version>
+ <version>2.2.12-patch-08</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
10 years, 11 months
JBossWS SVN: r18207 - thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2013-12-18 07:59:51 -0500 (Wed, 18 Dec 2013)
New Revision: 18207
Modified:
thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml
Log:
Use latest fork of wss4j
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-12-18 12:58:29 UTC (rev 18206)
+++ thirdparty/cxf/branches/cxf-2.2.12/rt/ws/security/pom.xml 2013-12-18 12:59:51 UTC (rev 18207)
@@ -89,7 +89,7 @@
<dependency>
<groupId>org.apache.ws.security</groupId>
<artifactId>wss4j</artifactId>
- <version>1.5.12-patch-04-SNAPSHOT</version>
+ <version>1.5.12-patch-04</version>
<exclusions>
<exclusion>
<groupId>axis</groupId>
10 years, 11 months