JBossWS SVN: r8521 - stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-10-17 06:07:10 -0400 (Fri, 17 Oct 2008)
New Revision: 8521
Modified:
stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java
Log:
Sync trunk with QA branch
Modified: stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java
===================================================================
--- stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java 2008-10-17 10:05:41 UTC (rev 8520)
+++ stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java 2008-10-17 10:07:10 UTC (rev 8521)
@@ -153,9 +153,9 @@
if (!tempJBossWSDir.exists())
tempJBossWSDir.mkdir();
String archivePath = archiveUrl.getPath();
- if (archivePath.endsWith(File.separator))
+ if (archivePath.endsWith("/"))
archivePath = archivePath.substring(0, archivePath.length() - 1);
- String archiveName = archivePath.substring(archivePath.lastIndexOf(File.separator));
+ String archiveName = archivePath.substring(archivePath.lastIndexOf("/"));
File tempDir = new File(tempJBossWSDir, archiveName + "-" + new Date().getTime());
if (!tempDir.exists())
tempDir.mkdir();
17 years, 2 months
JBossWS SVN: r8520 - stack/metro/branches/jbossws-metro-3.0.4/modules/server/src/main/java/org/jboss/wsf/stack/metro.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2008-10-17 06:05:41 -0400 (Fri, 17 Oct 2008)
New Revision: 8520
Modified:
stack/metro/branches/jbossws-metro-3.0.4/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java
Log:
Making sure Metro integration is cross platform
Modified: stack/metro/branches/jbossws-metro-3.0.4/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java
===================================================================
--- stack/metro/branches/jbossws-metro-3.0.4/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java 2008-10-15 16:09:58 UTC (rev 8519)
+++ stack/metro/branches/jbossws-metro-3.0.4/modules/server/src/main/java/org/jboss/wsf/stack/metro/WsgenWrapperGenerator.java 2008-10-17 10:05:41 UTC (rev 8520)
@@ -153,9 +153,9 @@
if (!tempJBossWSDir.exists())
tempJBossWSDir.mkdir();
String archivePath = archiveUrl.getPath();
- if (archivePath.endsWith(File.separator))
+ if (archivePath.endsWith("/"))
archivePath = archivePath.substring(0, archivePath.length() - 1);
- String archiveName = archivePath.substring(archivePath.lastIndexOf(File.separator));
+ String archiveName = archivePath.substring(archivePath.lastIndexOf("/"));
File tempDir = new File(tempJBossWSDir, archiveName + "-" + new Date().getTime());
if (!tempDir.exists())
tempDir.mkdir();
17 years, 2 months
JBossWS SVN: r8519 - in stack/cxf/trunk: modules/client and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 12:09:58 -0400 (Wed, 15 Oct 2008)
New Revision: 8519
Modified:
stack/cxf/trunk/modules/client/pom.xml
stack/cxf/trunk/modules/management/pom.xml
stack/cxf/trunk/modules/resources/pom.xml
stack/cxf/trunk/modules/server/pom.xml
stack/cxf/trunk/modules/testsuite/cxf-tests/pom.xml
stack/cxf/trunk/modules/testsuite/framework-tests/pom.xml
stack/cxf/trunk/modules/testsuite/pom.xml
stack/cxf/trunk/pom.xml
Log:
Preparing for next dev cycle
Modified: stack/cxf/trunk/modules/client/pom.xml
===================================================================
--- stack/cxf/trunk/modules/client/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/client/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/modules/management/pom.xml
===================================================================
--- stack/cxf/trunk/modules/management/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/management/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/modules/resources/pom.xml
===================================================================
--- stack/cxf/trunk/modules/resources/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/resources/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/modules/server/pom.xml
===================================================================
--- stack/cxf/trunk/modules/server/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/server/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/framework-tests/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/testsuite/framework-tests/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
+++ stack/cxf/trunk/pom.xml 2008-10-15 16:09:58 UTC (rev 8519)
@@ -18,7 +18,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<!-- Parent -->
<parent>
@@ -44,7 +44,7 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.0.7.GA</jbossws.common.version>
+ <jbossws.common.version>1.0.8-SNAPSHOT</jbossws.common.version>
<jbossws.framework.version>3.0.4.GA</jbossws.framework.version>
<jbossws.spi.version>1.0.6.GA</jbossws.spi.version>
<jbossws.jboss422.version>3.0.4.GA</jbossws.jboss422.version>
17 years, 2 months
JBossWS SVN: r8518 - in stack/cxf/branches/jbossws-cxf-3.0.4: modules/client and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 12:07:38 -0400 (Wed, 15 Oct 2008)
New Revision: 8518
Modified:
stack/cxf/branches/jbossws-cxf-3.0.4/modules/client/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/modules/management/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/modules/resources/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/modules/server/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/cxf-tests/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/framework-tests/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/pom.xml
stack/cxf/branches/jbossws-cxf-3.0.4/pom.xml
Log:
Updating poms
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/client/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/client/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/client/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/management/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/management/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/management/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/resources/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/resources/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/resources/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/server/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/server/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/server/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/cxf-tests/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/cxf-tests/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/framework-tests/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/framework-tests/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/modules/testsuite/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/branches/jbossws-cxf-3.0.4/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.0.4/pom.xml 2008-10-15 16:04:03 UTC (rev 8517)
+++ stack/cxf/branches/jbossws-cxf-3.0.4/pom.xml 2008-10-15 16:07:38 UTC (rev 8518)
@@ -18,7 +18,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<!-- Parent -->
<parent>
17 years, 2 months
JBossWS SVN: r8517 - stack/cxf/branches.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 12:04:03 -0400 (Wed, 15 Oct 2008)
New Revision: 8517
Added:
stack/cxf/branches/jbossws-cxf-3.0.4/
Log:
Branching for QA
Copied: stack/cxf/branches/jbossws-cxf-3.0.4 (from rev 8516, stack/cxf/trunk)
17 years, 2 months
JBossWS SVN: r8516 - in stack/native/trunk: modules/client and 10 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 11:57:04 -0400 (Wed, 15 Oct 2008)
New Revision: 8516
Modified:
stack/native/trunk/modules/client/pom.xml
stack/native/trunk/modules/core/pom.xml
stack/native/trunk/modules/jaxrpc/pom.xml
stack/native/trunk/modules/jaxws-ext/pom.xml
stack/native/trunk/modules/jaxws/pom.xml
stack/native/trunk/modules/management/pom.xml
stack/native/trunk/modules/resources/pom.xml
stack/native/trunk/modules/saaj/pom.xml
stack/native/trunk/modules/testsuite/framework-tests/pom.xml
stack/native/trunk/modules/testsuite/native-tests/pom.xml
stack/native/trunk/modules/testsuite/pom.xml
stack/native/trunk/pom.xml
Log:
Preparing for next dev cycle
Modified: stack/native/trunk/modules/client/pom.xml
===================================================================
--- stack/native/trunk/modules/client/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/client/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/core/pom.xml
===================================================================
--- stack/native/trunk/modules/core/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/core/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/trunk/modules/jaxrpc/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/jaxrpc/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/jaxws/pom.xml
===================================================================
--- stack/native/trunk/modules/jaxws/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/jaxws/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/trunk/modules/jaxws-ext/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/jaxws-ext/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/management/pom.xml
===================================================================
--- stack/native/trunk/modules/management/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/management/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/resources/pom.xml
===================================================================
--- stack/native/trunk/modules/resources/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/resources/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/saaj/pom.xml
===================================================================
--- stack/native/trunk/modules/saaj/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/saaj/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/framework-tests/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/testsuite/framework-tests/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/testsuite/native-tests/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/native/trunk/modules/testsuite/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/modules/testsuite/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
+++ stack/native/trunk/pom.xml 2008-10-15 15:57:04 UTC (rev 8516)
@@ -18,7 +18,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<!-- Parent -->
<parent>
@@ -48,7 +48,7 @@
<!-- Properties -->
<properties>
- <jbossws.common.version>1.0.7.GA</jbossws.common.version>
+ <jbossws.common.version>1.0.8-SNAPSHOT</jbossws.common.version>
<jbossws.framework.version>3.0.4.GA</jbossws.framework.version>
<jbossws.spi.version>1.0.6.GA</jbossws.spi.version>
<jbossws.jboss422.version>3.0.4.GA</jbossws.jboss422.version>
17 years, 2 months
JBossWS SVN: r8515 - in stack/native/branches/jbossws-native-3.0.4: modules/client and 10 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 11:49:31 -0400 (Wed, 15 Oct 2008)
New Revision: 8515
Modified:
stack/native/branches/jbossws-native-3.0.4/modules/client/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/core/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/jaxrpc/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/jaxws-ext/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/jaxws/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/management/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/resources/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/saaj/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/testsuite/framework-tests/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/testsuite/native-tests/pom.xml
stack/native/branches/jbossws-native-3.0.4/modules/testsuite/pom.xml
stack/native/branches/jbossws-native-3.0.4/pom.xml
Log:
Updating poms
Modified: stack/native/branches/jbossws-native-3.0.4/modules/client/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/client/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/client/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/core/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/core/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/core/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/jaxrpc/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/jaxrpc/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/jaxws/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/jaxws/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/jaxws/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/jaxws-ext/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/jaxws-ext/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/management/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/management/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/management/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/resources/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/resources/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/resources/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/saaj/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/saaj/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/saaj/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/testsuite/framework-tests/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/testsuite/framework-tests/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/testsuite/native-tests/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/testsuite/native-tests/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/modules/testsuite/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/modules/testsuite/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/modules/testsuite/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/branches/jbossws-native-3.0.4/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.0.4/pom.xml 2008-10-15 15:37:49 UTC (rev 8514)
+++ stack/native/branches/jbossws-native-3.0.4/pom.xml 2008-10-15 15:49:31 UTC (rev 8515)
@@ -18,7 +18,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.4.GA</version>
<!-- Parent -->
<parent>
@@ -29,9 +29,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/native/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/trunk</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/native/branches/jbos...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/branches/jbossws...</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/branches/jbossws-na...</url>
</scm>
<!-- Modules -->
17 years, 2 months
JBossWS SVN: r8514 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 11:37:49 -0400 (Wed, 15 Oct 2008)
New Revision: 8514
Removed:
stack/native/branches/asoldano/
Log:
Removing old branch
17 years, 2 months
JBossWS SVN: r8513 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 11:11:46 -0400 (Wed, 15 Oct 2008)
New Revision: 8513
Added:
stack/native/branches/jbossws-native-3.0.4/
Log:
Branching for QA
Copied: stack/native/branches/jbossws-native-3.0.4 (from rev 8512, stack/native/trunk)
17 years, 2 months
JBossWS SVN: r8512 - in stack/metro/trunk: modules/client and 7 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-10-15 11:09:43 -0400 (Wed, 15 Oct 2008)
New Revision: 8512
Modified:
stack/metro/trunk/modules/client/pom.xml
stack/metro/trunk/modules/management/pom.xml
stack/metro/trunk/modules/resources/pom.xml
stack/metro/trunk/modules/server/pom.xml
stack/metro/trunk/modules/testsuite/framework-tests/pom.xml
stack/metro/trunk/modules/testsuite/metro-tests/pom.xml
stack/metro/trunk/modules/testsuite/pom.xml
stack/metro/trunk/modules/wsit/pom.xml
stack/metro/trunk/pom.xml
Log:
Preparing for next development cycle
Modified: stack/metro/trunk/modules/client/pom.xml
===================================================================
--- stack/metro/trunk/modules/client/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/client/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/modules/management/pom.xml
===================================================================
--- stack/metro/trunk/modules/management/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/management/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/modules/resources/pom.xml
===================================================================
--- stack/metro/trunk/modules/resources/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/resources/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/modules/server/pom.xml
===================================================================
--- stack/metro/trunk/modules/server/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/server/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/metro/trunk/modules/testsuite/framework-tests/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/testsuite/framework-tests/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/modules/testsuite/metro-tests/pom.xml
===================================================================
--- stack/metro/trunk/modules/testsuite/metro-tests/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/testsuite/metro-tests/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro-testsuite</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
</parent>
<!-- Dependencies -->
Modified: stack/metro/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/metro/trunk/modules/testsuite/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/testsuite/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/modules/wsit/pom.xml
===================================================================
--- stack/metro/trunk/modules/wsit/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/modules/wsit/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/trunk/pom.xml
===================================================================
--- stack/metro/trunk/pom.xml 2008-10-15 15:07:40 UTC (rev 8511)
+++ stack/metro/trunk/pom.xml 2008-10-15 15:09:43 UTC (rev 8512)
@@ -18,7 +18,7 @@
<artifactId>jbossws-metro</artifactId>
<packaging>pom</packaging>
- <version>3.0.4-SNAPSHOT</version>
+ <version>3.0.5-SNAPSHOT</version>
<!-- Parent -->
<parent>
17 years, 2 months