JBossWS SVN: r16471 - in stack/cxf/trunk/modules/testsuite: cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-16 14:24:36 -0400 (Mon, 16 Jul 2012)
New Revision: 16471
Modified:
stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms/JMSEndpointOnlyDeploymentTestCaseForked.java
stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms_http/JMSHTTPEndpointDeploymentTestCaseForked.java
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
[JBWS-3475] Enabling tests
Modified: stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms/JMSEndpointOnlyDeploymentTestCaseForked.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms/JMSEndpointOnlyDeploymentTestCaseForked.java 2012-07-16 18:05:28 UTC (rev 16470)
+++ stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms/JMSEndpointOnlyDeploymentTestCaseForked.java 2012-07-16 18:24:36 UTC (rev 16471)
@@ -188,11 +188,9 @@
}
private static void rethrowAndHandleAuthWarning(Exception e) throws Exception {
- final String msg = "Authentication failed";
- if (e.getMessage().contains(msg) || e.getCause().getMessage().contains(msg)) {
- System.out.println("This test requires an user with 'guest' role to be available on the application server; " +
- "please ensure that then specify user and password using -Dtest.username=\"foo\" -Dtest.password=\"bar\".");
- }
+ System.out.println("This test requires a testQueue JMS queue and a user with 'guest' role to be available on the application server; " +
+ "queue are easily added using jboss-cli.sh/bat, while users are added using add-user.sh/bat. When running test please specify user " +
+ "and password using -Dtest.username=\"foo\" -Dtest.password=\"bar\".");
throw e;
}
}
Modified: stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms_http/JMSHTTPEndpointDeploymentTestCaseForked.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms_http/JMSHTTPEndpointDeploymentTestCaseForked.java 2012-07-16 18:05:28 UTC (rev 16470)
+++ stack/cxf/trunk/modules/testsuite/cxf-spring-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/jms_http/JMSHTTPEndpointDeploymentTestCaseForked.java 2012-07-16 18:24:36 UTC (rev 16471)
@@ -71,10 +71,9 @@
try {
assertEquals("Hi", proxy.echo("Hi"));
} catch (Exception e) {
- if (e.getMessage().contains("Authentication failed")) {
- System.out.println("This test requires an user with 'guest' role to be available on the application server; " +
- "please ensure that then specify user and password using -Dtest.username=\"foo\" -Dtest.password=\"bar\".");
- }
+ System.out.println("This test requires a testQueue JMS queue and a user with 'guest' role to be available on the application server; " +
+ "queue are easily added using jboss-cli.sh/bat, while users are added using add-user.sh/bat. When running test please specify user " +
+ "and password using -Dtest.username=\"foo\" -Dtest.password=\"bar\".");
throw e;
}
}
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2012-07-16 18:05:28 UTC (rev 16470)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2012-07-16 18:24:36 UTC (rev 16471)
@@ -1174,10 +1174,6 @@
<!-- # [JBWS-3249] Restore UsernameAuthorizationCustomFileTestCase on AS7 -->
<exclude>org/jboss/test/ws/jaxws/samples/wsse/UsernameAuthorizationCustomFileTestCase*</exclude>
- <!-- # [JBWS-3475] SOAP-over-JMS tests require test queue on target AS -->
- <exclude>org/jboss/test/ws/jaxws/cxf/jms/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/cxf/jms_http/**</exclude>
-
<!-- # [JBWS-3493] WS-Trust tests w/ PicketLink STS require PL 2.1.2.Final or greater -->
<exclude>org/jboss/test/ws/jaxws/samples/wsse/policy/trust/WSTrustPicketLinkTestCase*</exclude>
@@ -1378,10 +1374,6 @@
<!-- # [JBWS-3249] Restore UsernameAuthorizationCustomFileTestCase on AS7 -->
<exclude>org/jboss/test/ws/jaxws/samples/wsse/UsernameAuthorizationCustomFileTestCase*</exclude>
- <!-- # [JBWS-3475] SOAP-over-JMS tests require test queue on target AS -->
- <exclude>org/jboss/test/ws/jaxws/cxf/jms/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/cxf/jms_http/**</exclude>
-
<!-- # [JBWS-3493] WS-Trust tests w/ PicketLink STS require PL 2.1.2.Final or greater -->
<exclude>org/jboss/test/ws/jaxws/samples/wsse/policy/trust/WSTrustPicketLinkTestCase*</exclude>
12 years, 6 months
JBossWS SVN: r16470 - hudson/trunk/scripts.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-16 14:05:28 -0400 (Mon, 16 Jul 2012)
New Revision: 16470
Modified:
hudson/trunk/scripts/jbossws-qa.sh
Log:
[JBWS-3475] Adding 10sec sleep to be sure the server is up before trying connecting
Modified: hudson/trunk/scripts/jbossws-qa.sh
===================================================================
--- hudson/trunk/scripts/jbossws-qa.sh 2012-07-16 17:24:38 UTC (rev 16469)
+++ hudson/trunk/scripts/jbossws-qa.sh 2012-07-16 18:05:28 UTC (rev 16470)
@@ -157,6 +157,7 @@
}
addTestQueue() {
+ sleep 10
$JBOSS_HOME/bin/jboss-cli.sh -c command="/subsystem=messaging/hornetq-server=default/jms-queue=testQueue/:add(entries=[\"queue/test\",\"java:jboss/exported/jms/queue/test\"])"
}
12 years, 6 months
JBossWS SVN: r16469 - hudson/trunk/scripts.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-16 13:24:38 -0400 (Mon, 16 Jul 2012)
New Revision: 16469
Modified:
hudson/trunk/scripts/jbossws-qa.sh
Log:
[JBWS-3475] Adding testQueue in hudson jobs, after all the jms tests already require "manual" setup to add use with proper group..
Modified: hudson/trunk/scripts/jbossws-qa.sh
===================================================================
--- hudson/trunk/scripts/jbossws-qa.sh 2012-07-13 05:12:50 UTC (rev 16468)
+++ hudson/trunk/scripts/jbossws-qa.sh 2012-07-16 17:24:38 UTC (rev 16469)
@@ -156,6 +156,10 @@
ant $ENVIRONMENT tests-clean tests $TEST_OPTS 2>&1 | tee $WORKSPACE/tests.log
}
+addTestQueue() {
+ $JBOSS_HOME/bin/jboss-cli.sh -c command="/subsystem=messaging/hornetq-server=default/jms-queue=testQueue/:add(entries=[\"queue/test\",\"java:jboss/exported/jms/queue/test\"])"
+}
+
coreTestWithSpring() {
setupJBossHome
setupEnv
@@ -165,6 +169,7 @@
removeJBossLogs
startJBoss
ensureRunningJBoss
+ addTestQueue
logMavenDependencies
runTestsViaMavenWithSpring
copyTestLogs
@@ -199,6 +204,7 @@
removeJBossLogs
startJBoss
ensureRunningJBoss
+ addTestQueue
runTestsViaAnt
copyTestLogs
stopJBoss
@@ -231,6 +237,7 @@
removeJBossLogs
startJBoss
ensureRunningJBoss
+ addTestQueue
logMavenDependencies
runTestsViaMavenWithSpring
copyTestLogs
12 years, 6 months
JBossWS SVN: r16468 - in stack/native/branches/jbossws-native-3.1.2: modules/core and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: klape
Date: 2012-07-13 01:12:50 -0400 (Fri, 13 Jul 2012)
New Revision: 16468
Modified:
stack/native/branches/jbossws-native-3.1.2/
stack/native/branches/jbossws-native-3.1.2/modules/core/
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/SecurityStore.java
stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests/
Log:
[JBPAPP-8118] <key-passwords> in jboss-wsse-client.xml does not work.
Property changes on: stack/native/branches/jbossws-native-3.1.2
___________________________________________________________________
Modified: svn:mergeinfo
- /stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864:14776-14778,14786,14894,14905,14907-14908
/stack/native/branches/jbossws-native-3.1.2.SP3-patch-02_JBPAPP-6365:14192
/stack/native/branches/jbossws-native-3.4.0.SP1:13928,13933,13936,13946
/stack/native/trunk:12502,13992,14157,14160,14181,14183,14842
+ /stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP-8128:15667
/stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864:14776-14778,14786,14894,14905,14907-14908
/stack/native/branches/jbossws-native-3.1.2.SP3-patch-02_JBPAPP-6365:14192
/stack/native/branches/jbossws-native-3.4.0.SP1:13928,13933,13936,13946
/stack/native/trunk:12502,13992,14157,14160,14181,14183,14842
Property changes on: stack/native/branches/jbossws-native-3.1.2/modules/core
___________________________________________________________________
Modified: svn:mergeinfo
- /stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core:14776-14778,14786,14894,14905,14907-14908
/stack/native/branches/jbossws-native-3.1.2.SP3-patch-02_JBPAPP-6365/modules/core:14192
/stack/native/branches/jbossws-native-3.4.0.SP1/modules/core:13928,13933,13936,13946
/stack/native/trunk/modules/core:12502,13992,14011,14157,14160,14181,14183,14842
+ /stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP-8128/modules/core:15667
/stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/core:14776-14778,14786,14894,14905,14907-14908
/stack/native/branches/jbossws-native-3.1.2.SP3-patch-02_JBPAPP-6365/modules/core:14192
/stack/native/branches/jbossws-native-3.4.0.SP1/modules/core:13928,13933,13936,13946
/stack/native/trunk/modules/core:12502,13992,14011,14157,14160,14181,14183,14842
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/SecurityStore.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/SecurityStore.java 2012-07-12 17:25:50 UTC (rev 16467)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/extensions/security/SecurityStore.java 2012-07-13 05:12:50 UTC (rev 16468)
@@ -132,6 +132,8 @@
String trustStoreType = conf.getTrustStoreType();
String trustStorePassword = conf.getTrustStorePassword();
+ keyPasswords = conf.getKeyPasswords();
+
loadKeyStore(keyStoreURL, keyStoreType, keyStorePassword);
loadTrustStore(trustStoreURL, trustStoreType, trustStorePassword);
}
Property changes on: stack/native/branches/jbossws-native-3.1.2/modules/testsuite/native-tests
___________________________________________________________________
Modified: svn:mergeinfo
- /stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests:14776-14778,14786,14894,14905,14907-14908
/stack/native/branches/jbossws-native-3.1.2.SP3-patch-02_JBPAPP-6365/modules/testsuite/native-tests:14192
/stack/native/branches/jbossws-native-3.4.0.SP1/modules/testsuite/native-tests:13928,13933,13936,13946
/stack/native/trunk/modules/testsuite/native-tests:12502,13992,14013,14157,14160,14181,14183,14842
+ /stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP-8128/modules/testsuite/native-tests:15667
/stack/native/branches/jbossws-native-3.1.2.SP10_JBPAPP6864/modules/testsuite/native-tests:14776-14778,14786,14894,14905,14907-14908
/stack/native/branches/jbossws-native-3.1.2.SP3-patch-02_JBPAPP-6365/modules/testsuite/native-tests:14192
/stack/native/branches/jbossws-native-3.4.0.SP1/modules/testsuite/native-tests:13928,13933,13936,13946
/stack/native/trunk/modules/testsuite/native-tests:12502,13992,14013,14157,14160,14181,14183,14842
12 years, 6 months
JBossWS SVN: r16467 - in stack/cxf/tags/jbossws-cxf-3.1.2.SP10: modules/server and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-12 13:25:50 -0400 (Thu, 12 Jul 2012)
New Revision: 16467
Modified:
stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java
stack/cxf/tags/jbossws-cxf-3.1.2.SP10/pom.xml
Log:
svn merge -r 16464:16466 https://svn.jboss.org/repos/jbossws/stack/cxf/branches/jbossws-cxf-3.1.2 .
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/pom.xml 2012-07-12 17:13:10 UTC (rev 16466)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/pom.xml 2012-07-12 17:25:50 UTC (rev 16467)
@@ -158,6 +158,10 @@
<artifactId>jaxws-api</artifactId>
</dependency>
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.jboss.javaee</groupId>
<artifactId>jboss-ejb-api</artifactId>
</dependency>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java 2012-07-12 17:13:10 UTC (rev 16466)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP10/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java 2012-07-12 17:25:50 UTC (rev 16467)
@@ -80,7 +80,7 @@
writeTo(writer);
writer.close();
- return tmpFile.toURL();
+ return tmpFile.toURI().toURL();
}
catch (IOException ex)
{
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP10/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP10/pom.xml 2012-07-12 17:13:10 UTC (rev 16466)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP10/pom.xml 2012-07-12 17:25:50 UTC (rev 16467)
@@ -74,6 +74,7 @@
<commons.logging.version>1.1.1</commons.logging.version>
<log4j.version>1.2.14</log4j.version>
<saaj.api.version>1.3</saaj.api.version>
+ <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-01</wss4j.version>
@@ -480,6 +481,12 @@
<!-- jboss provided -->
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>${servlet.api.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<version>${jboss.common.core.version}</version>
12 years, 6 months
JBossWS SVN: r16466 - in stack/cxf/branches/jbossws-cxf-3.1.2: modules/server and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-12 13:13:10 -0400 (Thu, 12 Jul 2012)
New Revision: 16466
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml
stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Adding provided scope dependency to servlet-api as per EAP5 build needs
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 2012-07-12 17:03:56 UTC (rev 16465)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/pom.xml 2012-07-12 17:13:10 UTC (rev 16466)
@@ -158,6 +158,10 @@
<artifactId>jaxws-api</artifactId>
</dependency>
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.jboss.javaee</groupId>
<artifactId>jboss-ejb-api</artifactId>
</dependency>
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2012-07-12 17:03:56 UTC (rev 16465)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2012-07-12 17:13:10 UTC (rev 16466)
@@ -74,6 +74,7 @@
<commons.logging.version>1.1.1</commons.logging.version>
<log4j.version>1.2.14</log4j.version>
<saaj.api.version>1.3</saaj.api.version>
+ <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-01</wss4j.version>
@@ -480,6 +481,12 @@
<!-- jboss provided -->
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>${servlet.api.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<version>${jboss.common.core.version}</version>
12 years, 6 months
JBossWS SVN: r16465 - stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-12 13:03:56 -0400 (Thu, 12 Jul 2012)
New Revision: 16465
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java
Log:
Fixing deprecation warning
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java 2012-07-12 10:35:49 UTC (rev 16464)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/modules/server/src/main/java/org/jboss/wsf/stack/cxf/metadata/services/DDBeans.java 2012-07-12 17:03:56 UTC (rev 16465)
@@ -80,7 +80,7 @@
writeTo(writer);
writer.close();
- return tmpFile.toURL();
+ return tmpFile.toURI().toURL();
}
catch (IOException ex)
{
12 years, 6 months
JBossWS SVN: r16464 - stack/cxf/branches/jbossws-cxf-4.0.x/modules/resources/src/main/resources/modules/jboss710/org/jboss/as/webservices/server/jaxrpc-integration/main.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-12 06:35:49 -0400 (Thu, 12 Jul 2012)
New Revision: 16464
Modified:
stack/cxf/branches/jbossws-cxf-4.0.x/modules/resources/src/main/resources/modules/jboss710/org/jboss/as/webservices/server/jaxrpc-integration/main/module.xml
Log:
jbossws-native-factories module does not exist anymore on 4.0.x too
Modified: stack/cxf/branches/jbossws-cxf-4.0.x/modules/resources/src/main/resources/modules/jboss710/org/jboss/as/webservices/server/jaxrpc-integration/main/module.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-4.0.x/modules/resources/src/main/resources/modules/jboss710/org/jboss/as/webservices/server/jaxrpc-integration/main/module.xml 2012-07-11 16:37:45 UTC (rev 16463)
+++ stack/cxf/branches/jbossws-cxf-4.0.x/modules/resources/src/main/resources/modules/jboss710/org/jboss/as/webservices/server/jaxrpc-integration/main/module.xml 2012-07-12 10:35:49 UTC (rev 16464)
@@ -35,7 +35,6 @@
<module name="org.jboss.ws.api" export="true"/>
<module name="org.jboss.ws.spi" export="true"/>
<module name="org.jboss.ws.common" services="import" export="true"/>
- <module name="org.jboss.ws.native.jbossws-native-factories" services="export" export="true"/>
<module name="org.jboss.ws.native.jbossws-native-core" services="export" export="true">
<imports>
<include path="META-INF"/>
12 years, 6 months
JBossWS SVN: r16463 - in thirdparty/cxf/tags/cxf-2.2.12-soa-02: api and 133 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-11 12:37:45 -0400 (Wed, 11 Jul 2012)
New Revision: 16463
Modified:
thirdparty/cxf/tags/cxf-2.2.12-soa-02/api/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/buildtools/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/common/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/schemas/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/wstx-msv-validation/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xerces-xsd-validation/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/bug671/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xsd/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/all/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/jaxrs/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/minimal/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/manifest/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis_standalone/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/callback/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/configuration_interceptor/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/in_jvm_transport/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_pojo/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_spring_support/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_async/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_handlers/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_pubsub/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_queue/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_client/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/mtom/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_dispatch/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_http_binding/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/soap_header/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_addressing/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_policy/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_rm/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_https/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jbi/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jca/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/codegen-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/corba/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/java2ws-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/wsdl-validator-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-plugin/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-test/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/parent/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/coloc/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/corba/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/http/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/jbi/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/object/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/soap/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/xml/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/core/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/aegis/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/jaxb/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/xmlbeans/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxrs/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/js/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/simple/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/javascript/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/management/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/testsupport/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-jetty/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-osgi/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jbi/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jms/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/local/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/addr/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/policy/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/rm/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/security/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/databinding/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxrs/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/transports/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/uncategorized/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/ws-specs/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/codegen/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/java2ws/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/testutils/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/common/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/corba/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/ws/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/validator/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/core/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/databinding/jaxb/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/javascript/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/jaxws/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/misc/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/pom.xml
thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/test/pom.xml
Log:
Fixing poms
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/api/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/api/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/api/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,13 +22,13 @@
<artifactId>cxf-api</artifactId>
<packaging>jar</packaging>
<name>Apache CXF API</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/buildtools/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/buildtools/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/buildtools/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-buildtools</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<name>Apache CXF Buildtools</name>
<url>http://cxf.apache.org</url>
<packaging>jar</packaging>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/common/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/common/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/common/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/schemas/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/schemas/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/schemas/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,13 +22,13 @@
<artifactId>cxf-common-schemas</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Common Schemas</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org/</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/wstx-msv-validation/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/wstx-msv-validation/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/wstx-msv-validation/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xerces-xsd-validation/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xerces-xsd-validation/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xerces-xsd-validation/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,13 +22,13 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xerces-xsd-validation</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean-test/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/boolean-test/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/bug671/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/bug671/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/bug671/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-bug671</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv-test/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/dv-test/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-dv-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts-test/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xjc/ts-test/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xsd/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xsd/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/common/xsd/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-xsd</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/all/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/all/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/all/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Bundle Jar</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle</bundle.symbolic.name>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/jaxrs/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/jaxrs/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-jaxrs</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF JAX-RS Bundle Jar</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-jaxrs</bundle.symbolic.name>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/minimal/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/minimal/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/minimal/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-minimal</artifactId>
<packaging>bundle</packaging>
<name>Apache CXF Minimal Bundle Jar</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
<bundle.symbolic.name>${project.groupId}.bundle-minimal</bundle.symbolic.name>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/bundle/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -23,13 +23,13 @@
<artifactId>cxf-bundle-parent</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Bundle Parent</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/manifest/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/manifest/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/manifest/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -23,13 +23,13 @@
<artifactId>cxf-distribution-manifest</artifactId>
<packaging>jar</packaging>
<name>Apache CXF Manifest Jar</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,13 +22,13 @@
<artifactId>apache-cxf</artifactId>
<packaging>pom</packaging>
<name>Apache CXF Distribution</name>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../parent</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -99,23 +99,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis_standalone/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis_standalone/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/aegis_standalone/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -100,7 +100,7 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>net.java.dev.stax-utils</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/callback/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/callback/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/callback/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -165,17 +165,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/configuration_interceptor/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/configuration_interceptor/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -147,22 +147,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/in_jvm_transport/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/in_jvm_transport/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -96,18 +96,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -95,18 +95,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_jaxws_factory_bean/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -95,18 +95,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_pojo/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_pojo/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_pojo/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -95,18 +95,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_spring_support/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/java_first_spring_support/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -112,18 +112,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -114,18 +114,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/basic_https/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -147,18 +147,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_rs/content_negotiation/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -96,18 +96,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- This dependency is needed if you're using the Jetty container -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jax_server_aegis_client/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -95,23 +95,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-aegis</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_async/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_async/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_async/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -126,18 +126,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_dispatch_provider/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -187,18 +187,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_handlers/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jaxws_handlers/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -139,18 +139,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_pubsub/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_pubsub/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_pubsub/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -145,23 +145,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_queue/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_queue/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/jms_queue/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -146,23 +146,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_java_first/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -90,22 +90,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_simple/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_browser_client_simple/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -137,22 +137,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_client/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_client/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/js_client/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -123,22 +123,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-javascript</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/mtom/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/mtom/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/mtom/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -140,18 +140,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,7 +21,7 @@
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<name>Apache CXF Samples</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_dispatch/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_dispatch/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_dispatch/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -115,23 +115,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_http_binding/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_http_binding/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/restful_http_binding/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -115,28 +115,28 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-bindings-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/soap_header/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/soap_header/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/soap_header/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_addressing/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_addressing/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_addressing/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -142,22 +142,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_policy/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_policy/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_policy/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -140,22 +140,22 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_rm/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_rm/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_rm/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -134,38 +134,38 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssc/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -186,29 +186,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec10/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
@@ -173,29 +173,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wssec11/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
@@ -174,29 +174,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/interopfest/wstrust10/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -155,29 +155,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/sign_enc/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -126,43 +126,43 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -134,43 +134,43 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_policy/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -173,29 +173,29 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/ws_security/ut_sign/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -127,43 +127,43 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-rm</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-addr</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-policy</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-common-utilities</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -157,18 +157,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_dynamic_client/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -120,18 +120,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_https/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_https/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -229,17 +229,17 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_pure_xml/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_rpclit/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -122,18 +122,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_soap12/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -148,18 +148,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xml_wrapped/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -148,18 +148,18 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/distribution/src/main/release/samples/wsdl_first_xmlbeans/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.cxf.samples</groupId>
<artifactId>cxf-samples</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<properties>
@@ -141,23 +141,23 @@
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-xmlbeans</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</dependency>
</dependencies>
</project>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jbi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jbi/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jbi/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jca/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jca/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/jca/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration-jca</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/integration/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-integration</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<properties>
<maven.test.skip>true</maven.test.skip>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/archetypes/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-archetypes</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/codegen-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/codegen-plugin/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/codegen-plugin/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/corba/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/corba/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/corba/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-corbatools-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/java2ws-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/java2ws-plugin/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/java2ws-plugin/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-java2ws-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-maven-plugins</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/wsdl-validator-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/wsdl-validator-plugin/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/wsdl-validator-plugin/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -3,7 +3,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-wsdl-validator-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-plugin/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-plugin/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-plugin/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,7 +22,7 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xml2fastinfoset-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-test/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/maven-plugins/xml2fastinfoset-test/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -32,7 +32,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<dependencies>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/parent/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/parent/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/parent/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -20,13 +20,13 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<name>Apache CXF Parent</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<name>Apache CXF</name>
<url>http://cxf.apache.org</url>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/coloc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/coloc/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/coloc/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/corba/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/corba/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/corba/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/http/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/http/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/http/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/jbi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/jbi/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/jbi/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/object/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/object/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/object/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/soap/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/soap/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/soap/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/xml/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/xml/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/bindings/xml/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/core/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/core/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/core/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/aegis/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/aegis/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/aegis/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -28,7 +28,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/jaxb/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/jaxb/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/xmlbeans/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/xmlbeans/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/databinding/xmlbeans/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxrs/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxrs/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxws/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/jaxws/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/js/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/js/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/js/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-js</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/simple/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/simple/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/frontend/simple/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-simple</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/javascript/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/javascript/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/javascript/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/management/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/management/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/management/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-management</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/testsupport/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/testsupport/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/testsupport/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -3,14 +3,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-testsupport</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-jetty/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-jetty/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-jetty/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-osgi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-osgi/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/http-osgi/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-osgi</artifactId>
<packaging>bundle</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jbi/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jbi/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jbi/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jbi</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jms/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jms/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/jms/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-jms</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/local/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/local/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/transports/local/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-local</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/addr/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/addr/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/addr/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/policy/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/policy/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/policy/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/rm/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/rm/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/rm/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/security/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/security/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/rt/ws/security/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -27,7 +27,7 @@
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/databinding/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/databinding/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/databinding/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxrs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxrs/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxrs/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxws/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/jaxws/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<build>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/transports/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/transports/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/transports/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/uncategorized/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/uncategorized/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/uncategorized/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/ws-specs/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/ws-specs/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/ws-specs/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<parent>
<artifactId>cxf-parent</artifactId>
<groupId>org.apache.cxf</groupId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<url>http://cxf.apache.org</url>
<build>
<plugins>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/codegen/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/codegen/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/codegen/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/java2ws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/java2ws/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/java2ws/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<name>Test for writing wsdl to repo</name>
<parent>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-parent</artifactId>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<build>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/systests/wsdl_maven/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-wsdl-maven</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/testutils/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/testutils/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/testutils/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-testutils</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/common/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/common/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/common/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-common</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/corba/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/corba/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/corba/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -22,14 +22,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-corba</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-javato</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/ws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/ws/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/javato/ws/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-java2ws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/validator/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/validator/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/validator/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-validator</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/core/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/core/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/core/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-core</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/databinding/jaxb/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/databinding/jaxb/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/databinding/jaxb/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-databinding-jaxb</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/javascript/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/javascript/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/javascript/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-javascript</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/jaxws/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/jaxws/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/frontend/jaxws/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-frontend-jaxws</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/misc/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/misc/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/misc/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-misctools</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto</artifactId>
<packaging>pom</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
</parent>
<modules>
Modified: thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/test/pom.xml
===================================================================
--- thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/test/pom.xml 2012-07-11 16:10:44 UTC (rev 16462)
+++ thirdparty/cxf/tags/cxf-2.2.12-soa-02/tools/wsdlto/test/pom.xml 2012-07-11 16:37:45 UTC (rev 16463)
@@ -21,14 +21,14 @@
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-tools-wsdlto-test</artifactId>
<packaging>jar</packaging>
- <version>2.2.12-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</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-soa-02-SNAPSHOT</version>
+ <version>2.2.12-soa-02</version>
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
12 years, 6 months
JBossWS SVN: r16462 - thirdparty/cxf/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2012-07-11 12:10:44 -0400 (Wed, 11 Jul 2012)
New Revision: 16462
Added:
thirdparty/cxf/tags/cxf-2.2.12-soa-02/
Log:
Tagging cxf-2.2.12-soa-02
12 years, 6 months