Skip to content

Commit af02c74

Browse files
committed
[maven-release-plugin] copy for tag spring-ws-2.0.2.RELEASE
1 parent cc73683 commit af02c74

File tree

40 files changed

+70
-57
lines changed

40 files changed

+70
-57
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.2.RELEASE-SNAPSHOT</version>
6+
<version>2.0.2.RELEASE</version>
77
<relativePath>../parent/pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@ SPRING WEB SERVICES CHANGELOG
22
=============================
33
http://www.springframework.org/spring-ws
44

5+
Changes in version 2.0.2.RELEASE
6+
----------------------------------
7+
8+
** Bug
9+
* [SWS-702] - sws:annotation-driven does not pick up @Endpoint annotations on classes that are JDK proxies
10+
* [SWS-705] - OSGi import of org.springframework.security.authentication seems to be the wrong version
11+
* [SWS-708] - PayloadValidatingInterceptor errors not clearing SecurityContextHolder
12+
13+
** Improvement
14+
* [SWS-706] - Jaxp13XPathTemplate should support StreamSources with only a systemId if it's a valid URL
15+
16+
** New Feature
17+
* [SWS-662] - Support for UriEndpointMapping in server-side test
18+
519
Changes in version 2.0.1.RELEASE
620
----------------------------------
721

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.2.RELEASE-SNAPSHOT</version>
5+
<version>2.0.2.RELEASE</version>
66
<relativePath>../parent/pom.xml</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>

notes.txt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
Dear Spring community,
22

3-
I'm pleased to announce that Spring Web Services 2.0.1.RELEASE has
3+
I'm pleased to announce that Spring Web Services 2.0.2.RELEASE has
44
been released!
55

6-
This is the second GA release in the 2.0 release cycle. It contains bug fixes
7-
and minor updates.
6+
This is the third GA release in the 2.0 release cycle. Most importantly, it
7+
resolves a potential security issue when using WS-Security in combination with
8+
response payload validation.
9+
10+
It is recommended that all current 2.0.x users upgrade to 2.0.2.
811

912
Please see the changelog for more details.
1013

1114
For more information, refer to
1215

13-
http://blog.springsource.com/2011/01/11/spring-web-services-2-0-released/
14-
15-
or
16-
1716
http://static.springframework.org/spring-ws/sites/2.0

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.2.RELEASE-SNAPSHOT</version>
7+
<version>2.0.2.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.2.RELEASE</connection>
28+
<developerConnection>scm:svn:https://src.springframework.org/svn/spring-ws/tags/spring-ws-2.0.2.RELEASE</developerConnection>
29+
<url>https://fisheye.springframework.org/browse/spring-ws/tags/spring-ws-2.0.2.RELEASE</url>
3030
</scm>
3131
<properties>
3232
<osgi.version>2.0.1.RELEASE</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.2.RELEASE-SNAPSHOT</version>
7+
<version>2.0.2.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.2.RELEASE</connection>
98+
<developerConnection>scm:svn:https://src.springframework.org/svn/spring-ws/tags/spring-ws-2.0.2.RELEASE</developerConnection>
99+
<url>https://fisheye.springframework.org/browse/spring-ws/tags/spring-ws-2.0.2.RELEASE</url>
100100
</scm>
101101
<properties>
102102
<spring.framework.version>3.0.5.RELEASE</spring.framework.version>

readme.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 2.0.1.RELEASE (March 2011)
1+
SPRING WEB SERVICES 2.0.2.RELEASE (May 2011)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -36,31 +36,31 @@ The following distinct jar files are included in the distribution. This list spe
3636
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
3737
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
3838

39-
* spring-ws-core-2.0.1.RELEASE.jar
39+
* spring-ws-core-2.0.2.RELEASE.jar
4040
- Contents: The Spring-WS Core
4141
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
4242
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM, WSDL4J]
4343

44-
* spring-ws-support-2.0.1.RELEASE.jar
44+
* spring-ws-support-2.0.2.RELEASE.jar
4545
- Contents: The Spring-WS Support
4646
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
4747
[JMS, JavaMail]
4848

49-
* spring-ws-security-2.0.1.RELEASE.jar
49+
* spring-ws-security-2.0.2.RELEASE.jar
5050
- Contents: Spring-WS Security integration
5151
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
5252
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
5353

54-
* spring-ws-test-2.0.1.RELEASE.jar
54+
* spring-ws-test-2.0.2.RELEASE.jar
5555
- Contents: Spring-WS Testing framework
5656
- Dependencies: JUnit, XMLUnit
5757

58-
* spring-xml-2.0.1.RELEASE.jar
58+
* spring-xml-2.0.2.RELEASE.jar
5959
- Contents: Spring XML utility framework
6060
- Dependencies: Commons Logging, spring-beans, spring-core
6161
[StAX, Xalan, Jaxen]
6262

63-
* spring-ws-2.0.1.RELEASE-all.jar
63+
* spring-ws-2.0.2.RELEASE-all.jar
6464
- Contents: Convenient al-in-one jar containing all of the jars described above
6565

6666

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.2.RELEASE-SNAPSHOT</version>
6+
<version>2.0.2.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.2.RELEASE-SNAPSHOT</version>
6+
<version>2.0.2.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.2.RELEASE-SNAPSHOT</version>
6+
<version>2.0.2.RELEASE</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)