JBossWS SVN: r13108 - in stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools: jbws1080 and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: richard.opalka(a)jboss.com
Date: 2010-10-13 08:08:39 -0400 (Wed, 13 Oct 2010)
New Revision: 13108
Modified:
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/config/ToolsSchemaConfigReaderTestCase.java
stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/jbws1080/JBWS1080TestCase.java
Log:
fixing hudson regression - JBossXB exception propagation message changed - making tests more reliable
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/config/ToolsSchemaConfigReaderTestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/config/ToolsSchemaConfigReaderTestCase.java 2010-10-13 10:53:44 UTC (rev 13107)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/config/ToolsSchemaConfigReaderTestCase.java 2010-10-13 12:08:39 UTC (rev 13108)
@@ -21,7 +21,9 @@
*/
package org.jboss.test.ws.tools.config;
+import java.io.ByteArrayOutputStream;
import java.io.IOException;
+import java.io.PrintStream;
import java.util.List;
import org.jboss.ws.tools.Configuration;
@@ -70,7 +72,9 @@
}
catch (Exception ex)
{
- String msg = ex.getMessage();
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ ex.printStackTrace(new PrintStream(baos));
+ String msg = baos.toString();
assertTrue("Unexpected message: " + msg, msg.indexOf("service-typo") > 0);
}
}
Modified: stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/jbws1080/JBWS1080TestCase.java
===================================================================
--- stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/jbws1080/JBWS1080TestCase.java 2010-10-13 10:53:44 UTC (rev 13107)
+++ stack/native/trunk/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/tools/jbws1080/JBWS1080TestCase.java 2010-10-13 12:08:39 UTC (rev 13108)
@@ -21,7 +21,9 @@
*/
package org.jboss.test.ws.tools.jbws1080;
+import java.io.ByteArrayOutputStream;
import java.io.IOException;
+import java.io.PrintStream;
import org.jboss.ws.tools.WSTools;
import org.jboss.wsf.test.JBossWSTest;
@@ -47,7 +49,9 @@
}
catch (IOException e)
{
- assertTrue("Expected error", e.getMessage().indexOf("'{\"http://www.jboss.org/jbossws-tools\":namespaces}' is expected.") > -1);
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ e.printStackTrace(new PrintStream(baos));
+ assertTrue("Expected error", baos.toString().indexOf("'{\"http://www.jboss.org/jbossws-tools\":namespaces}' is expected.") > -1);
}
}
13 years, 12 months
JBossWS SVN: r13107 - projects/plugins/maven/jaxws-tools/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-13 06:53:44 -0400 (Wed, 13 Oct 2010)
New Revision: 13107
Added:
projects/plugins/maven/jaxws-tools/tags/jaxws-tools-1.0.1.GA/
Log:
Tagging jaxws-tools-1.0.1.GA
Copied: projects/plugins/maven/jaxws-tools/tags/jaxws-tools-1.0.1.GA (from rev 13106, projects/plugins/maven/jaxws-tools/trunk)
13 years, 12 months
JBossWS SVN: r13106 - in projects/plugins/maven/jaxws-tools/trunk: src/test/resources/test-embedded/testEndorse and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-13 06:45:06 -0400 (Wed, 13 Oct 2010)
New Revision: 13106
Modified:
projects/plugins/maven/jaxws-tools/trunk/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml
projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml
Log:
Moving out of snapshots for JBWS CXF stack dependencies, updating to latest released SPI
Modified: projects/plugins/maven/jaxws-tools/trunk/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/pom.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/pom.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -13,7 +13,7 @@
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-parent</artifactId>
- <version>1.0.8.GA</version>
+ <version>1.0.9.GA</version>
</parent>
<!-- Source Control Management -->
@@ -25,7 +25,7 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.4.0.Beta2</jbossws.spi.version>
+ <jbossws.spi.version>1.4.0.CR1</jbossws.spi.version>
<maven.project.version>2.0.11</maven.project.version>
<maven.plugin.api.version>2.0.4</maven.plugin.api.version>
<maven.invoker.plugin.version>1.5</maven.invoker.plugin.version>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom-cxf.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -120,12 +120,12 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
</dependency>
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-factories</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.xml.ws</groupId>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testEndorse/pom.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -115,7 +115,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>3.3.1.GA</version>
+ <version>3.4.0.CR1</version>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.xml.ws</groupId>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom-cxf.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -95,7 +95,7 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>3.3.1.GA</version>
+ <version>3.4.0.CR1</version>
</dependency>
</dependencies>
</project>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsConsume/pom.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -96,7 +96,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>3.3.1.GA</version>
+ <version>3.4.0.CR1</version>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom-cxf.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -71,7 +71,7 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-client</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
</dependency>
</dependencies>
</project>
Modified: projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml
===================================================================
--- projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml 2010-10-12 16:54:00 UTC (rev 13105)
+++ projects/plugins/maven/jaxws-tools/trunk/src/test/resources/test-embedded/testWsProvide/pom.xml 2010-10-13 10:45:06 UTC (rev 13106)
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-client</artifactId>
- <version>3.3.1.GA</version>
+ <version>3.4.0.CR1</version>
</dependency>
</dependencies>
</project>
13 years, 12 months
JBossWS SVN: r13105 - in stack/cxf/trunk/modules: testsuite and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-12 12:54:00 -0400 (Tue, 12 Oct 2010)
New Revision: 13105
Added:
stack/cxf/trunk/modules/client/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory
Modified:
stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt
stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt
stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt
stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt
Log:
[JBWS-3084] restoring custom SOAPFactory (svn merge -r 13081:13080 https://svn.jboss.org/repos/jbossws/stack/cxf/trunk .)
Copied: stack/cxf/trunk/modules/client/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory (from rev 13080, stack/cxf/trunk/modules/client/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory)
===================================================================
--- stack/cxf/trunk/modules/client/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory (rev 0)
+++ stack/cxf/trunk/modules/client/src/main/resources/META-INF/services/javax.xml.soap.SOAPConnectionFactory 2010-10-12 16:54:00 UTC (rev 13105)
@@ -0,0 +1 @@
+org.jboss.wsf.stack.cxf.saaj.SOAPConnectionFactoryImpl
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt 2010-10-12 16:49:11 UTC (rev 13104)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss501.txt 2010-10-12 16:54:00 UTC (rev 13105)
@@ -42,6 +42,3 @@
# [JBWS-2957] EJB3 webservices in web archives (fixed on AS 6 series only)
org/jboss/test/ws/jaxws/jbws2957/**
-
-# [JBWS-3084] Enable control of chunked encoding when using SOAPConnection
-org/jboss/test/ws/saaj/**
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt 2010-10-12 16:49:11 UTC (rev 13104)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss510.txt 2010-10-12 16:54:00 UTC (rev 13105)
@@ -42,6 +42,3 @@
# [JBWS-2957] EJB3 webservices in web archives (fixed on AS 6 series only)
org/jboss/test/ws/jaxws/jbws2957/**
-
-# [JBWS-3084] Enable control of chunked encoding when using SOAPConnection
-org/jboss/test/ws/saaj/**
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt 2010-10-12 16:49:11 UTC (rev 13104)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss600.txt 2010-10-12 16:54:00 UTC (rev 13105)
@@ -21,6 +21,3 @@
# [JBAS-8363] Virtual host issue in JBossWeb
org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.*
-
-# [JBWS-3084] Enable control of chunked encoding when using SOAPConnection
-org/jboss/test/ws/saaj/**
Modified: stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt
===================================================================
--- stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-10-12 16:49:11 UTC (rev 13104)
+++ stack/cxf/trunk/modules/testsuite/test-excludes-jboss601.txt 2010-10-12 16:54:00 UTC (rev 13105)
@@ -21,6 +21,3 @@
# [JBAS-8363] Virtual host issue in JBossWeb
org/jboss/test/ws/jaxws/jbws981/JBWS981TestCase.*
-
-# [JBWS-3084] Enable control of chunked encoding when using SOAPConnection
-org/jboss/test/ws/saaj/**
13 years, 12 months
JBossWS SVN: r13104 - stack/native/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-12 12:49:11 -0400 (Tue, 12 Oct 2010)
New Revision: 13104
Modified:
stack/native/trunk/pom.xml
Log:
Moving to latest parent
Modified: stack/native/trunk/pom.xml
===================================================================
--- stack/native/trunk/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
+++ stack/native/trunk/pom.xml 2010-10-12 16:49:11 UTC (rev 13104)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-parent</artifactId>
- <version>1.0.9-SNAPSHOT</version>
+ <version>1.0.9.GA</version>
</parent>
<!-- Source Control Management -->
13 years, 12 months
JBossWS SVN: r13103 - in stack/native/tags/jbossws-native-3.4.0.CR1: modules/client and 8 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-12 12:48:12 -0400 (Tue, 12 Oct 2010)
New Revision: 13103
Modified:
stack/native/tags/jbossws-native-3.4.0.CR1/modules/client/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/core/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/endorsed/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/management/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/resources/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/services/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-3.4.0.CR1/pom.xml
Log:
Updating poms
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/client/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/client/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/core/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/core/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/endorsed/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/endorsed/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/endorsed/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/management/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/management/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/resources/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/resources/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/services/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/services/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/services/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/native-tests/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/native-tests/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/modules/testsuite/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.4.0.CR1/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.4.0.CR1/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
+++ stack/native/tags/jbossws-native-3.4.0.CR1/pom.xml 2010-10-12 16:48:12 UTC (rev 13103)
@@ -18,20 +18,20 @@
<packaging>pom</packaging>
<description>JBossWS Native stack</description>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<!-- Parent -->
<parent>
<groupId>org.jboss.ws</groupId>
<artifactId>jbossws-parent</artifactId>
- <version>1.0.9-SNAPSHOT</version>
+ <version>1.0.9.GA</version>
</parent>
<!-- 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/tags/jbossws-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/native/tags/jbossws-nat...</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/native/tags/jbossws-native...</url>
</scm>
<!-- Modules -->
@@ -46,12 +46,12 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.4.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>1.4.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.4.0-SNAPSHOT</jbossws.framework.version>
- <jbossws.jboss501.version>3.4.0-SNAPSHOT</jbossws.jboss501.version>
- <jbossws.jboss510.version>3.4.0-SNAPSHOT</jbossws.jboss510.version>
- <jbossws.jboss600M5.version>3.4.0-SNAPSHOT</jbossws.jboss600M5.version>
+ <jbossws.spi.version>1.4.0.CR1</jbossws.spi.version>
+ <jbossws.common.version>1.4.0.CR1</jbossws.common.version>
+ <jbossws.framework.version>3.4.0.CR1</jbossws.framework.version>
+ <jbossws.jboss501.version>3.4.0.Beta2</jbossws.jboss501.version>
+ <jbossws.jboss510.version>3.4.0.Beta2</jbossws.jboss510.version>
+ <jbossws.jboss600M5.version>3.4.0.CR1</jbossws.jboss600M5.version>
<!-- [JBWS-2505] -->
<!-- START -->
<!--
13 years, 12 months
JBossWS SVN: r13102 - stack/cxf/trunk.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-12 12:36:49 -0400 (Tue, 12 Oct 2010)
New Revision: 13102
Modified:
stack/cxf/trunk/pom.xml
Log:
Moving to jaxws-httpserver-httpspi 1.0.0.GA
Modified: stack/cxf/trunk/pom.xml
===================================================================
--- stack/cxf/trunk/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
+++ stack/cxf/trunk/pom.xml 2010-10-12 16:36:49 UTC (rev 13102)
@@ -69,7 +69,7 @@
<jboss.security.sx.version>2.0.4</jboss.security.sx.version>
<jboss.xb.version>2.0.2.Beta7</jboss.xb.version>
<picketbox.version>3.0.0.Beta5</picketbox.version>
- <jaxws-httpserver-httpspi.version>1.0.0-SNAPSHOT</jaxws-httpserver-httpspi.version>
+ <jaxws-httpserver-httpspi.version>1.0.0.GA</jaxws-httpserver-httpspi.version>
<jaxb.api.version>1.0.0.Beta1</jaxb.api.version>
<jaxb.impl.version>2.2</jaxb.impl.version>
<jaxrpc.api.version>1.0.0.Beta1</jaxrpc.api.version>
13 years, 12 months
JBossWS SVN: r13101 - in stack/cxf/tags/jbossws-cxf-3.4.0.CR1: modules/addons and 10 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-12 12:29:49 -0400 (Tue, 12 Oct 2010)
New Revision: 13101
Modified:
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/transports/http/httpserver/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/client/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/endorsed/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/management/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/resources/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/server/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-spring-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/pom.xml
stack/cxf/tags/jbossws-cxf-3.4.0.CR1/pom.xml
Log:
Fixing poms
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/transports/http/httpserver/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/transports/http/httpserver/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/addons/transports/http/httpserver/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-addons</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/client/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/client/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/client/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/endorsed/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/endorsed/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/endorsed/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/management/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/management/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/management/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/resources/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/resources/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/resources/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/server/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/server/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/server/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-spring-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-spring-tests/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-spring-tests/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-tests/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/cxf-tests/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/framework-tests/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/modules/testsuite/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.4.0.CR1/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.4.0.CR1/pom.xml 2010-10-12 16:16:08 UTC (rev 13100)
+++ stack/cxf/tags/jbossws-cxf-3.4.0.CR1/pom.xml 2010-10-12 16:29:49 UTC (rev 13101)
@@ -18,7 +18,7 @@
<packaging>pom</packaging>
<description>JBossWS CXF stack</description>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.4.0.CR1</version>
<!-- Parent -->
<parent>
@@ -29,9 +29,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/trunk</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/tags/jbossws-cxf...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/tags/jbossws-cxf-3....</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/tags/jbossws-cxf-3.4.0...</url>
</scm>
<!-- Modules -->
@@ -46,12 +46,12 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.4.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>1.4.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.4.0-SNAPSHOT</jbossws.framework.version>
- <jbossws.jboss501.version>3.4.0-SNAPSHOT</jbossws.jboss501.version>
- <jbossws.jboss510.version>3.4.0-SNAPSHOT</jbossws.jboss510.version>
- <jbossws.jboss600M5.version>3.4.0-SNAPSHOT</jbossws.jboss600M5.version>
+ <jbossws.spi.version>1.4.0.CR1</jbossws.spi.version>
+ <jbossws.common.version>1.4.0.CR1</jbossws.common.version>
+ <jbossws.framework.version>3.4.0.CR1</jbossws.framework.version>
+ <jbossws.jboss501.version>3.4.0.Beta2</jbossws.jboss501.version>
+ <jbossws.jboss510.version>3.4.0.Beta2</jbossws.jboss510.version>
+ <jbossws.jboss600M5.version>3.4.0.CR1</jbossws.jboss600M5.version>
<!-- JBWS-2505 -->
<!-- START -->
<!--
@@ -69,7 +69,7 @@
<jboss.security.sx.version>2.0.4</jboss.security.sx.version>
<jboss.xb.version>2.0.2.Beta7</jboss.xb.version>
<picketbox.version>3.0.0.Beta5</picketbox.version>
- <jaxws-httpserver-httpspi.version>1.0.0-SNAPSHOT</jaxws-httpserver-httpspi.version>
+ <jaxws-httpserver-httpspi.version>1.0.0.GA</jaxws-httpserver-httpspi.version>
<jaxb.api.version>1.0.0.Beta1</jaxb.api.version>
<jaxb.impl.version>2.2</jaxb.impl.version>
<jaxrpc.api.version>1.0.0.Beta1</jaxrpc.api.version>
13 years, 12 months
JBossWS SVN: r13100 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-10-12 12:16:08 -0400 (Tue, 12 Oct 2010)
New Revision: 13100
Added:
stack/native/tags/jbossws-native-3.4.0.CR1/
Log:
Tagging jbossws-native-3.4.0.CR1
Copied: stack/native/tags/jbossws-native-3.4.0.CR1 (from rev 13099, stack/native/trunk)
13 years, 12 months