Skip to content

Commit d088995

Browse files
committed
[maven-release-plugin] copy for tag spring-ws-2.0.0.RELEASE
1 parent d6fb1a8 commit d088995

File tree

39 files changed

+45
-50
lines changed

39 files changed

+45
-50
lines changed

archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-parent</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../parent/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,10 @@
1212
<finalName>${artifactId}</finalName>
1313
</build>
1414
<dependencies>
15-
<dependency>
16-
<groupId>org.springframework.ws</groupId>
17-
<artifactId>spring-oxm</artifactId>
18-
<version>2.0.0-M1</version>
19-
</dependency>
2015
<dependency>
2116
<groupId>org.springframework.ws</groupId>
2217
<artifactId>spring-ws-core</artifactId>
23-
<version>2.0.0-M1</version>
18+
<version>2.0.0.RELEASE</version>
2419
</dependency>
2520
</dependencies>
2621
</project>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>spring-ws-parent</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../parent/pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

parent/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.springframework.ws</groupId>
55
<artifactId>spring-ws-parent</artifactId>
66
<packaging>pom</packaging>
7-
<version>2.0.1-RELEASE-SNAPSHOT</version>
7+
<version>2.0.0.RELEASE</version>
88
<name>Spring Web Services - Parent</name>
99
<distributionManagement>
1010
<downloadUrl>http://static.springframework.org/spring-ws/site/downloads/releases.html</downloadUrl>
@@ -24,9 +24,9 @@
2424
</site>
2525
</distributionManagement>
2626
<scm>
27-
<connection>scm:svn:https://src.springframework.org/svn/spring-ws/trunk</connection>
28-
<developerConnection>scm:svn:https://src.springframework.org/svn/spring-ws/trunk</developerConnection>
29-
<url>https://fisheye.springframework.org/browse/spring-ws/trunk</url>
27+
<connection>scm:svn:https://src.springframework.org/svn/spring-ws/tags/spring-ws-2.0.0.RELEASE</connection>
28+
<developerConnection>scm:svn:https://src.springframework.org/svn/spring-ws/tags/spring-ws-2.0.0.RELEASE</developerConnection>
29+
<url>https://fisheye.springframework.org/browse/spring-ws/tags/spring-ws-2.0.0.RELEASE</url>
3030
</scm>
3131
<properties>
3232
<osgi.version>2.0.0.M4</osgi.version>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.springframework.ws</groupId>
55
<artifactId>spring-ws</artifactId>
66
<packaging>pom</packaging>
7-
<version>2.0.1-RELEASE-SNAPSHOT</version>
7+
<version>2.0.0.RELEASE</version>
88
<name>Spring Web Services</name>
99
<description>
1010
Spring Web Services is a product of the Spring community focused on creating document-driven Web services. It
@@ -94,9 +94,9 @@
9494
</site>
9595
</distributionManagement>
9696
<scm>
97-
<connection>scm:svn:https://src.springframework.org/svn/spring-ws/trunk</connection>
98-
<developerConnection>scm:svn:https://src.springframework.org/svn/spring-ws/trunk/</developerConnection>
99-
<url>https://fisheye.springframework.org/browse/spring-ws/trunk</url>
97+
<connection>scm:svn:https://src.springframework.org/svn/spring-ws/tags/spring-ws-2.0.0.RELEASE</connection>
98+
<developerConnection>scm:svn:https://src.springframework.org/svn/spring-ws/tags/spring-ws-2.0.0.RELEASE</developerConnection>
99+
<url>https://fisheye.springframework.org/browse/spring-ws/tags/spring-ws-2.0.0.RELEASE</url>
100100
</scm>
101101
<properties>
102102
<spring.framework.version>3.0.5.RELEASE</spring.framework.version>

samples/airline/client/axis1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>airline-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/client/jax-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>airline-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/client/jms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>airline-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>airline</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/client/saaj/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>airline-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/client/spring-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>airline-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-samples</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/airline/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>airline</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

samples/echo/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>echo</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/echo/client/saaj/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>echo-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/echo/client/spring-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>echo-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/echo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-samples</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/echo/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>echo</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

samples/mtom/client/jax-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>mtom-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/mtom/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>mtom</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/mtom/client/spring-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>mtom-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/mtom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-samples</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/mtom/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>mtom</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-parent</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../parent/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/pox/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>pox</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/pox/client/spring-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>pox-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/pox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-samples</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/pox/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>pox</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

samples/stockquote/client/jax-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>stockquote-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/stockquote/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>stockquote</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/stockquote/client/spring-ws/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>stockquote-client</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/stockquote/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-samples</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

samples/stockquote/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>stockquote</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

samples/tutorial/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-samples</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.1-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE</version>
77
<relativePath>../samples/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

sandbox/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>spring-ws-parent</artifactId>
55
<groupId>org.springframework.ws</groupId>
6-
<version>2.0.0-RELEASE-SNAPSHOT</version>
6+
<version>2.0.0.RELEASE-SNAPSHOT</version>
77
<relativePath>../parent/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>spring-ws-parent</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../parent/pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

support/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>spring-ws-parent</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../parent/pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>spring-ws-parent</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../parent/pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

xml/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<parent>
33
<artifactId>spring-ws-parent</artifactId>
44
<groupId>org.springframework.ws</groupId>
5-
<version>2.0.1-RELEASE-SNAPSHOT</version>
5+
<version>2.0.0.RELEASE</version>
66
<relativePath>../parent/pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)