JBossWS SVN: r10358 - stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi.
by jbossws-commits@lists.jboss.org
Author: darran.lofthouse(a)jboss.com
Date: 2009-07-20 09:53:37 -0400 (Mon, 20 Jul 2009)
New Revision: 10358
Modified:
stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ServiceDelegateImpl.java
Log:
[JBPAPP-2105] Concurrency issues where multiple threads create Port using Service Simultaneously.
Modified: stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ServiceDelegateImpl.java
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ServiceDelegateImpl.java 2009-07-20 11:23:20 UTC (rev 10357)
+++ stack/native/branches/jbossws-native-3.1.2/modules/core/src/main/java/org/jboss/ws/core/jaxws/spi/ServiceDelegateImpl.java 2009-07-20 13:53:37 UTC (rev 10358)
@@ -181,7 +181,7 @@
// com/sun/ts/tests/jaxws/api/javax_xml_ws/Service#GetPort1NegTest1WithWsdl
EndpointMetaData epMetaData = serviceMetaData.getEndpoint(portName);
- if (serviceMetaData.getEndpoints().size() > 0 && epMetaData == null)
+ if (epMetaData == null && serviceMetaData.getEndpoints().size() > 0)
throw new WebServiceException("Cannot get port meta data for: " + portName);
// This is the case when the service could not be created from wsdl
@@ -264,9 +264,15 @@
// Adjust the endpoint meta data according to the annotations
if (annotatedPorts.contains(portName) == false)
{
- JAXWSClientMetaDataBuilder metaDataBuilder = new JAXWSClientMetaDataBuilder();
- metaDataBuilder.rebuildEndpointMetaData(epMetaData, seiClass);
- annotatedPorts.add(portName);
+ synchronized (epMetaData)
+ {
+ if (annotatedPorts.contains(portName) == false)
+ {
+ JAXWSClientMetaDataBuilder metaDataBuilder = new JAXWSClientMetaDataBuilder();
+ metaDataBuilder.rebuildEndpointMetaData(epMetaData, seiClass);
+ annotatedPorts.add(portName);
+ }
+ }
}
return (T)createProxy(seiClass, epMetaData);
15 years, 5 months
JBossWS SVN: r10357 - in stack/cxf/tags/jbossws-cxf-3.1.2.SP2: modules/client and 6 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 07:23:20 -0400 (Mon, 20 Jul 2009)
New Revision: 10357
Modified:
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/client/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/management/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/resources/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/server/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/cxf-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/pom.xml
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/pom.xml
Log:
[JBPAPP-2094] Fixing pom.xml files
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/client/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/client/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/client/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/management/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/management/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/management/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/resources/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/resources/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/resources/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/server/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/server/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/server/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/cxf-tests/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/cxf-tests/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/modules/testsuite/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -10,7 +10,7 @@
<parent>
<groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/cxf/tags/jbossws-cxf-3.1.2.SP2/pom.xml
===================================================================
--- stack/cxf/tags/jbossws-cxf-3.1.2.SP2/pom.xml 2009-07-20 11:13:39 UTC (rev 10356)
+++ stack/cxf/tags/jbossws-cxf-3.1.2.SP2/pom.xml 2009-07-20 11:23:20 UTC (rev 10357)
@@ -17,7 +17,7 @@
<artifactId>jbossws-cxf</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossws/stack/cxf/branches/jbossws...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossws/stack/cxf/branches/jbossws-cx...</developerConnection>
- <url>http://fisheye.jboss.com/viewrep/JBossWS/stack/cxf/branches/jbossws-cxf-3...</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.1.2...</url>
</scm>
<!-- Modules -->
15 years, 5 months
JBossWS SVN: r10356 - stack/cxf/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 07:13:39 -0400 (Mon, 20 Jul 2009)
New Revision: 10356
Added:
stack/cxf/tags/jbossws-cxf-3.1.2.SP2/
Log:
[JBPAPP-2094] Tagging jbossws-cxf-3.1.2.SP2
Copied: stack/cxf/tags/jbossws-cxf-3.1.2.SP2 (from rev 10355, stack/cxf/branches/jbossws-cxf-3.1.2)
15 years, 5 months
JBossWS SVN: r10355 - in stack/native/tags/jbossws-native-3.1.2.SP2: modules/client and 10 other directories.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 07:09:31 -0400 (Mon, 20 Jul 2009)
New Revision: 10355
Modified:
stack/native/tags/jbossws-native-3.1.2.SP2/modules/client/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/core/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxrpc/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws-ext/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/management/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/resources/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/saaj/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/native-tests/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/pom.xml
stack/native/tags/jbossws-native-3.1.2.SP2/pom.xml
Log:
[JBPAPP-2094] Fixing pom.xml files
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/client/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/client/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/client/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/core/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/core/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/core/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxrpc/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxrpc/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxrpc/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws-ext/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws-ext/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/jaxws-ext/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/management/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/management/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/management/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -8,7 +8,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/resources/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/resources/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/resources/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/saaj/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/saaj/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/saaj/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/framework-tests/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/native-tests/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/native-tests/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/native-tests/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native-testsuite</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/modules/testsuite/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -9,7 +9,7 @@
<parent>
<groupId>org.jboss.ws.native</groupId>
<artifactId>jbossws-native</artifactId>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: stack/native/tags/jbossws-native-3.1.2.SP2/pom.xml
===================================================================
--- stack/native/tags/jbossws-native-3.1.2.SP2/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
+++ stack/native/tags/jbossws-native-3.1.2.SP2/pom.xml 2009-07-20 11:09:31 UTC (rev 10355)
@@ -17,7 +17,7 @@
<artifactId>jbossws-native</artifactId>
<packaging>pom</packaging>
- <version>3.1.2-SNAPSHOT</version>
+ <version>3.1.2.SP2</version>
<!-- Parent -->
<parent>
@@ -28,9 +28,9 @@
<!-- Source Control Management -->
<scm>
- <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>
+ <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 -->
15 years, 5 months
JBossWS SVN: r10354 - stack/cxf/branches/jbossws-cxf-3.1.2.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 07:01:16 -0400 (Mon, 20 Jul 2009)
New Revision: 10354
Modified:
stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
Log:
Using jbossws-framework-3.1.2.SP4
Modified: stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml
===================================================================
--- stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2009-07-20 10:59:40 UTC (rev 10353)
+++ stack/cxf/branches/jbossws-cxf-3.1.2/pom.xml 2009-07-20 11:01:16 UTC (rev 10354)
@@ -44,7 +44,7 @@
<!-- Properties -->
<properties>
<jbossws.common.version>1.1.0.SP2</jbossws.common.version>
- <jbossws.framework.version>3.1.2-SNAPSHOT</jbossws.framework.version>
+ <jbossws.framework.version>3.1.2.SP4</jbossws.framework.version>
<jbossws.spi.version>1.1.2.SP1</jbossws.spi.version>
<!-- JBWS-2505 -->
<!-- START -->
15 years, 5 months
JBossWS SVN: r10353 - stack/native/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 06:59:40 -0400 (Mon, 20 Jul 2009)
New Revision: 10353
Added:
stack/native/tags/jbossws-native-3.1.2.SP2/
Log:
[JBPAPP-2094] Tagging jbossws-native-3.1.2.SP2
Copied: stack/native/tags/jbossws-native-3.1.2.SP2 (from rev 10352, stack/native/branches/jbossws-native-3.1.2)
15 years, 5 months
JBossWS SVN: r10352 - stack/native/branches/jbossws-native-3.1.2.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 06:58:16 -0400 (Mon, 20 Jul 2009)
New Revision: 10352
Modified:
stack/native/branches/jbossws-native-3.1.2/pom.xml
Log:
Using jbossws-framework-3.1.2.SP4
Modified: stack/native/branches/jbossws-native-3.1.2/pom.xml
===================================================================
--- stack/native/branches/jbossws-native-3.1.2/pom.xml 2009-07-20 10:56:05 UTC (rev 10351)
+++ stack/native/branches/jbossws-native-3.1.2/pom.xml 2009-07-20 10:58:16 UTC (rev 10352)
@@ -48,7 +48,7 @@
<!-- Properties -->
<properties>
<jbossws.common.version>1.1.0.SP2</jbossws.common.version>
- <jbossws.framework.version>3.1.2-SNAPSHOT</jbossws.framework.version>
+ <jbossws.framework.version>3.1.2.SP4</jbossws.framework.version>
<jbossws.spi.version>1.1.2.SP1</jbossws.spi.version>
<!-- [JBWS-2505] -->
<!-- START -->
15 years, 5 months
JBossWS SVN: r10350 - framework/tags.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2009-07-20 06:52:25 -0400 (Mon, 20 Jul 2009)
New Revision: 10350
Added:
framework/tags/jbossws-framework-3.1.2.SP4/
Log:
[JBPAPP-2094] Tagging jbossws-framework-3.1.2.SP4
Copied: framework/tags/jbossws-framework-3.1.2.SP4 (from rev 10349, framework/branches/jbossws-framework-3.1.2)
15 years, 5 months