JBossWS SVN: r11670 - stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-24 05:25:29 -0500 (Wed, 24 Feb 2010)
New Revision: 11670
Modified:
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt
Log:
Add the missing start to exclude all tests
Modified: stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt 2010-02-24 07:40:20 UTC (rev 11669)
+++ stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt 2010-02-24 10:25:29 UTC (rev 11670)
@@ -8,5 +8,5 @@
org/jboss/test/ws/jaxrpc/samples/wsbpel/hello/*TestCase.*
# [JBWS2565] and [JBWS2630] Fix in the next EAP release
-org/jboss/test/ws/jaxws/jbws2630/JBWS2630TestCase
-org/jboss/test/ws/jaxws/jbws2565/JBWS2565TestCase
+org/jboss/test/ws/jaxws/jbws2630/JBWS2630TestCase.*
+org/jboss/test/ws/jaxws/jbws2565/JBWS2565TestCase.*
14 years, 10 months
JBossWS SVN: r11669 - stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-24 02:40:20 -0500 (Wed, 24 Feb 2010)
New Revision: 11669
Modified:
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt
Log:
Exclude JBWS2565 and JBWS2630 test case
Modified: stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt 2010-02-24 05:18:57 UTC (rev 11668)
+++ stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/test-excludes-jboss510.txt 2010-02-24 07:40:20 UTC (rev 11669)
@@ -6,3 +6,7 @@
# [JBWS-2217] Fix BPEL jaxrpc samples
org/jboss/test/ws/jaxrpc/samples/wsbpel/hello/*TestCase.*
+
+# [JBWS2565] and [JBWS2630] Fix in the next EAP release
+org/jboss/test/ws/jaxws/jbws2630/JBWS2630TestCase
+org/jboss/test/ws/jaxws/jbws2565/JBWS2565TestCase
14 years, 10 months
JBossWS SVN: r11668 - framework/branches/jbossws-framework-3.1.2.SP5-patch01/testsuite/test/java/org/jboss/test/ws/jaxws/samples/xop/doclit.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-24 00:18:57 -0500 (Wed, 24 Feb 2010)
New Revision: 11668
Modified:
framework/branches/jbossws-framework-3.1.2.SP5-patch01/testsuite/test/java/org/jboss/test/ws/jaxws/samples/xop/doclit/XOPBase.java
Log:
Backport the [JBWS-2834] fix
Modified: framework/branches/jbossws-framework-3.1.2.SP5-patch01/testsuite/test/java/org/jboss/test/ws/jaxws/samples/xop/doclit/XOPBase.java
===================================================================
--- framework/branches/jbossws-framework-3.1.2.SP5-patch01/testsuite/test/java/org/jboss/test/ws/jaxws/samples/xop/doclit/XOPBase.java 2010-02-24 05:04:12 UTC (rev 11667)
+++ framework/branches/jbossws-framework-3.1.2.SP5-patch01/testsuite/test/java/org/jboss/test/ws/jaxws/samples/xop/doclit/XOPBase.java 2010-02-24 05:18:57 UTC (rev 11668)
@@ -149,11 +149,11 @@
File tmpDir = new File(System.getProperty("jboss.home") + FS + "server" + FS + System.getProperty("jboss.server.instance") + FS + "tmp" + FS + "jbossws");
assertTrue("Temp dir doesn't exist", tmpDir.exists());
-
- for (String fileName : tmpDir.list())
+ //[JBWS-2834]: windows file delete issue : tmp files are deteled when jvm exits
+ /*for (String fileName : tmpDir.list())
{
assertTrue("Attachment part swap file does still exist: " + fileName, fileName.indexOf("JBossWSattachment") == -1);
- }
+ }*/
}
protected Object getContent(DataHandler dh) throws IOException
14 years, 10 months
JBossWS SVN: r11667 - stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/core/src/main/java/org/jboss/wsf/stack/jbws.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-24 00:04:12 -0500 (Wed, 24 Feb 2010)
New Revision: 11667
Modified:
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/core/src/main/java/org/jboss/wsf/stack/jbws/WSDLFilePublisher.java
Log:
Merged [JBWS-2829] fix
Modified: stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/core/src/main/java/org/jboss/wsf/stack/jbws/WSDLFilePublisher.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/core/src/main/java/org/jboss/wsf/stack/jbws/WSDLFilePublisher.java 2010-02-24 04:57:12 UTC (rev 11666)
+++ stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/core/src/main/java/org/jboss/wsf/stack/jbws/WSDLFilePublisher.java 2010-02-24 05:04:12 UTC (rev 11667)
@@ -334,7 +334,12 @@
File locationFile = null;
if (predefinedLocation == false)
- {
+ {
+ //JBWS-2829: windows issue
+ if (archiveName.startsWith("http://")) {
+ archiveName = archiveName.replace("http://", "http-");
+ }
+
locationFile = new File(serverConfig.getServerDataDir().getCanonicalPath() + "/wsdl/" + archiveName);
}
else
14 years, 10 months
JBossWS SVN: r11666 - in stack/native/branches/jbossws-native-3.1.2.SP5-patch01: modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-23 23:57:12 -0500 (Tue, 23 Feb 2010)
New Revision: 11666
Modified:
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/pom.xml
Log:
Merged [JBWS-2819] and [JBWS-2818] fix from trunk
Modified: stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java 2010-02-24 01:49:48 UTC (rev 11665)
+++ stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleDispatchTestCase.java 2010-02-24 04:57:12 UTC (rev 11666)
@@ -100,6 +100,11 @@
{
try
{
+ //When testUsernameToken() execute before, need to clear reqContext
+ Map<String, Object> reqContext = usernameDispatch.getRequestContext();
+ reqContext.remove(BindingProvider.USERNAME_PROPERTY);
+ reqContext.remove(BindingProvider.PASSWORD_PROPERTY);
+
String payload = "<ns1:getUsernameToken xmlns:ns1='http://org.jboss.ws/samples/wssecurity'/>";
usernameDispatch.invoke(new StreamSource(new StringReader(payload)));
fail("Server should respond with [401] - Unauthorized");
Modified: stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java 2010-02-24 01:49:48 UTC (rev 11665)
+++ stack/native/branches/jbossws-native-3.1.2.SP5-patch01/modules/testsuite/native-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wssecurity/SimpleUsernameTestCase.java 2010-02-24 04:57:12 UTC (rev 11666)
@@ -72,6 +72,10 @@
{
try
{
+ //When testUsernameToken() execute before, need to clear reqContext
+ Map<String, Object> reqContext = ((BindingProvider)port).getRequestContext();
+ reqContext.remove(BindingProvider.USERNAME_PROPERTY);
+ reqContext.remove(BindingProvider.PASSWORD_PROPERTY);
port.getUsernameToken();
fail("Server should respond with [401] - Unauthorized");
}
Modified: stack/native/branches/jbossws-native-3.1.2.SP5-patch01/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2.SP5-patch01/pom.xml 2010-02-24 01:49:48 UTC (rev 11665)
+++ stack/native/branches/jbossws-native-3.1.2.SP5-patch01/pom.xml 2010-02-24 04:57:12 UTC (rev 11666)
@@ -339,6 +339,14 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <escapeWindowsPaths>false</escapeWindowsPaths>
+ </configuration>
+ </plugin>
+
+ <plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
@@ -493,8 +501,6 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <compilerVersion>1.5</compilerVersion>
- <executable>${java.jdk15.home}/bin/javac</executable>
<fork>true</fork>
</configuration>
</plugin>
14 years, 10 months
JBossWS SVN: r11665 - framework/branches.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-23 20:49:48 -0500 (Tue, 23 Feb 2010)
New Revision: 11665
Added:
framework/branches/jbossws-framework-3.1.2.SP5-patch01/
Log:
create branch to backport the windows issue fix from trunk
Copied: framework/branches/jbossws-framework-3.1.2.SP5-patch01 (from rev 11664, framework/tags/jbossws-framework-3.1.2.SP5)
14 years, 10 months
JBossWS SVN: r11664 - stack/native/branches.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2010-02-23 20:41:09 -0500 (Tue, 23 Feb 2010)
New Revision: 11664
Added:
stack/native/branches/jbossws-native-3.1.2.SP5-patch01/
Log:
Create branch to backport the windows issue fix from trunk
Copied: stack/native/branches/jbossws-native-3.1.2.SP5-patch01 (from rev 11663, stack/native/tags/jbossws-native-3.1.2.SP5)
14 years, 10 months
JBossWS SVN: r11663 - in stack/metro/tags/jbossws-metro-3.3.0.Beta1: modules/client and 7 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-23 15:33:32 -0500 (Tue, 23 Feb 2010)
New Revision: 11663
Modified:
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/client/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/management/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/resources/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/server/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/metro-tests/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/wsit/pom.xml
stack/metro/tags/jbossws-metro-3.3.0.Beta1/pom.xml
Log:
Updating poms
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/client/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/client/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/client/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/management/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/management/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/management/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/resources/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/resources/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/resources/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/server/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/server/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/server/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/metro-tests/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/metro-tests/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/metro-tests/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
</parent>
<!-- Dependencies -->
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/testsuite/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/wsit/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/wsit/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/modules/wsit/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.metro</groupId>
<artifactId>jbossws-metro</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/metro/tags/jbossws-metro-3.3.0.Beta1/pom.xml
===================================================================
--- stack/metro/tags/jbossws-metro-3.3.0.Beta1/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
+++ stack/metro/tags/jbossws-metro-3.3.0.Beta1/pom.xml 2010-02-23 20:33:32 UTC (rev 11663)
@@ -17,7 +17,7 @@
<artifactId>jbossws-metro</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/metro/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/metro/trunk</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/metro/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/metro/tags/jbossws-m...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/metro/tags/jbossws-metr...</developerConnection>
+ <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/metro/tags/jbossws-metro-3...</url>
</scm>
<!-- Modules -->
@@ -44,12 +44,12 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.3.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>1.3.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.3.0-SNAPSHOT</jbossws.framework.version>
- <jbossws.jboss501.version>3.3.0-SNAPSHOT</jbossws.jboss501.version>
- <jbossws.jboss510.version>3.3.0-SNAPSHOT</jbossws.jboss510.version>
- <jbossws.jboss600M2.version>3.3.0-SNAPSHOT</jbossws.jboss600M2.version>
+ <jbossws.spi.version>1.3.0.Beta3</jbossws.spi.version>
+ <jbossws.common.version>1.3.0.Beta3</jbossws.common.version>
+ <jbossws.framework.version>3.3.0.Beta3</jbossws.framework.version>
+ <jbossws.jboss501.version>3.3.0.Beta1</jbossws.jboss501.version>
+ <jbossws.jboss510.version>3.3.0.Beta1</jbossws.jboss510.version>
+ <jbossws.jboss600M2.version>3.3.0.Beta1</jbossws.jboss600M2.version>
<!-- JBWS-2505 -->
<!-- START -->
<!--
14 years, 10 months
JBossWS SVN: r11662 - in stack/cxf/tags/jbossws-cxf-3.3.0.Beta1: modules/client and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-23 10:41:41 -0500 (Tue, 23 Feb 2010)
New Revision: 11662
Modified:
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/client/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/management/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/resources/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/server/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/cxf-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/pom.xml
stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/pom.xml
Log:
Updating poms
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/client/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/client/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/client/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/management/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/management/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/management/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/resources/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/resources/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/resources/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/server/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/server/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/server/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/cxf-tests/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/cxf-tests/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/framework-tests/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/modules/testsuite/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/pom.xml 2010-02-23 15:03:44 UTC (rev 11661)
+++ stack/cxf/tags/jbossws-cxf-3.3.0.Beta1/pom.xml 2010-02-23 15:41:41 UTC (rev 11662)
@@ -17,7 +17,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.3.0.Beta1</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,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.3.0...</url>
</scm>
<!-- Modules -->
@@ -43,12 +43,12 @@
<!-- Properties -->
<properties>
- <jbossws.spi.version>1.3.0-SNAPSHOT</jbossws.spi.version>
- <jbossws.common.version>1.3.0-SNAPSHOT</jbossws.common.version>
- <jbossws.framework.version>3.3.0-SNAPSHOT</jbossws.framework.version>
- <jbossws.jboss501.version>3.3.0-SNAPSHOT</jbossws.jboss501.version>
- <jbossws.jboss510.version>3.3.0-SNAPSHOT</jbossws.jboss510.version>
- <jbossws.jboss600M2.version>3.3.0-SNAPSHOT</jbossws.jboss600M2.version>
+ <jbossws.spi.version>1.3.0.Beta3</jbossws.spi.version>
+ <jbossws.common.version>1.3.0.Beta3</jbossws.common.version>
+ <jbossws.framework.version>3.3.0.Beta3</jbossws.framework.version>
+ <jbossws.jboss501.version>3.3.0.Beta1</jbossws.jboss501.version>
+ <jbossws.jboss510.version>3.3.0.Beta1</jbossws.jboss510.version>
+ <jbossws.jboss600M2.version>3.3.0.Beta1</jbossws.jboss600M2.version>
<!-- JBWS-2505 -->
<!-- START -->
<!--
14 years, 10 months
JBossWS SVN: r11661 - stack/metro/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2010-02-23 10:03:44 -0500 (Tue, 23 Feb 2010)
New Revision: 11661
Added:
stack/metro/tags/jbossws-metro-3.3.0.Beta1/
Log:
Tagging jbossws-metro-3.3.0.Beta1
Copied: stack/metro/tags/jbossws-metro-3.3.0.Beta1 (from rev 11660, stack/metro/trunk)
14 years, 10 months