Skip to content

Commit 1239d22

Browse files
committed
Released SWS 2.0 M1
1 parent 95048ca commit 1239d22

File tree

13 files changed

+81
-70
lines changed

13 files changed

+81
-70
lines changed

changelog.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ SPRING WEB SERVICES CHANGELOG
33
http://www.springframework.org/spring-ws
44

55

6+
Changes in version 2.0 Milestone 1
7+
------------------------
8+
9+
** Bug
10+
* [SWS-501] - Maven dependency for oxm 1.5.5.A non-existent version of Spring
11+
12+
** Refactoring
13+
* [SWS-567] - Refactor to use OXM from Spring 3
14+
15+
** Task
16+
* [SWS-451] - Update spring-ws Maven POM to use correct Spring artifactId values
17+
* [SWS-597] - Merge core and core-tiger modules
18+
* [SWS-598] - Drop OXM modules in favor of Spring 3.0
19+
* [SWS-599] - Change API to use Java 5+
20+
621
Changes in version 1.5.9
722
------------------------
823

core/template.mf

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Bundle-SymbolicName: org.springframework.ws
22
Bundle-Name: Spring Web Services Core
33
Bundle-Vendor: SpringSource
4+
Bundle-Version: ${osgi.version}
45
Bundle-ManifestVersion: 2
56
Import-Template:
67
javax.activation.*;version="[1.1.0, 2.0.0)",
@@ -18,16 +19,16 @@ Import-Template:
1819
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)",
1920
org.dom4j.*;version="[1.6.1, 2.0.0)";resolution:=optional,
2021
org.jdom.*;version="[1.0.0, 2.0.0)";resolution:=optional,
21-
org.springframework.aop.*;version="[3.0.1, 4.0.0)",
22-
org.springframework.beans.*;version="[3.0.1, 4.0.0)",
23-
org.springframework.context.*;version="[3.0.1, 4.0.0)",
24-
org.springframework.core.*;version="[3.0.1, 4.0.0)",
25-
org.springframework.oxm.*;version="[3.0.1, 4.0.0)",
26-
org.springframework.util.*;version="[3.0.1, 4.0.0)",
27-
org.springframework.stereotype.*;version="[3.0.1, 4.0.0)",
28-
org.springframework.validation.*;version="[3.0.1, 4.0.0)",
29-
org.springframework.web.*;version="[3.0.1, 4.0.0)",
30-
org.springframework.xml.*;version="[${version}, ${version}]",
22+
org.springframework.aop.*;version=${spring.framework.osgi.range},
23+
org.springframework.beans.*;version=${spring.framework.osgi.range},
24+
org.springframework.context.*;version=${spring.framework.osgi.range},
25+
org.springframework.core.*;version=${spring.framework.osgi.range},
26+
org.springframework.oxm.*;version=${spring.framework.osgi.range},
27+
org.springframework.util.*;version=${spring.framework.osgi.range},
28+
org.springframework.stereotype.*;version=${spring.framework.osgi.range},
29+
org.springframework.validation.*;version=${spring.framework.osgi.range},
30+
org.springframework.web.*;version=${spring.framework.osgi.range},
31+
org.springframework.xml.*;version=${osgi.range},
3132
org.w3c.dom.*;version="0",
3233
org.xml.sax.*;version="0"
3334
Ignored-Existing-Headers:

notes.txt

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

3-
I'm pleased to announce that Spring Web Services 1.5.9 has been released!
3+
I'm pleased to announce that Spring Web Services 2.0 Milestone 1 has been
4+
released!
45

5-
This is the latest bug fix and enhancement release in the Spring-WS 1.5
6-
series. It fixes all bugs reported since 1.5.8 and introduces various
7-
enhancements throughout the framework. Please see the changelog for details.
6+
This is the first milestone release in the 2.0 release cycle. It does not
7+
introduce any new features (yet), but does add the following:
8+
9+
- Usage of Spring's OXM
10+
- Java 5 API (including generics, varargs, etc)
11+
12+
Please see the changelog for details.
13+
14+
Spring Web Services 2.0 is due in the second quarter of 2010.
815

916
For more information, see http://static.springframework.org/spring-ws/site/

parent/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@
2828
<url>https://fisheye.springframework.org/browse/spring-ws/tags/spring-ws-2.0.0-M1</url>
2929
</scm>
3030
<properties>
31+
<osgi.version>2.0.0.M1</osgi.version>
32+
<osgi.range>"${osgi.version:[=.=.=, =.=.+1)}"</osgi.range>
3133
<spring.framework.version>3.0.1.RELEASE</spring.framework.version>
34+
<spring.framework.osgi.range>"[3.0.1, 4.0.0)"</spring.framework.osgi.range>
3235
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3336
</properties>
3437
<pluginRepositories>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</snapshotRepository>
8080
<site>
8181
<id>static.springframework.org</id>
82-
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-ws/sites/1.5</url>
82+
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-ws/sites/2.0</url>
8383
</site>
8484
</distributionManagement>
8585
<scm>
@@ -566,7 +566,7 @@
566566
<plugin>
567567
<groupId>com.agilejava.docbkx</groupId>
568568
<artifactId>docbkx-maven-plugin</artifactId>
569-
<version>2.0.9</version>
569+
<version>2.0.6</version>
570570
<executions>
571571
<execution>
572572
<goals>

readme.txt

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 1.5.9 (Januari 2010)
1+
SPRING WEB SERVICES 2.0 M1 (March 2010)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -9,12 +9,9 @@ Spring Web Services (Spring-WS) is a product of the Spring community focused on
99
Spring-WS aims to facilitate contract-first SOAP service development, allowing for the creation of flexible web services
1010
using one of the many ways to manipulate XML payloads.
1111

12-
Spring-WS consists of two major modules: a flexible Object/XML Mapping abstraction with support for JAXB 1 and 2,
13-
XMLBeans, Castor, JiBX and XStream; and a Web service framework that resembles Spring MVC.
14-
1512
2. RELEASE INFO
1613

17-
Spring-WS requires J2SE 1.4 or higher and J2EE 1.4 or higher. J2SE 1.6 is required for building.
14+
Spring-WS requires J2SE 1.5 or higher and J2EE 1.4 or higher. J2SE 1.6 is required for building.
1815

1916
Release contents:
2017

@@ -39,40 +36,27 @@ The following distinct jar files are included in the distribution. This list spe
3936
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
4037
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
4138

42-
* spring-oxm-1.5.9.jar
43-
- Contents: The Spring Object/XML Mapping framework
44-
- Dependencies: Commons Logging, spring-beans, spring-core
45-
[Log4J, JAXB 1, Castor, XMLBeans, StAX, JiBX, XStream]
46-
47-
* spring-oxm-tiger-1.5.9.jar
48-
- Contents: The Spring Object/XML Mapping framework for Java 5
49-
- Dependencies: Commons Logging, spring-beans, spring-core, JAXB 2
50-
51-
* spring-ws-core-1.5.9.jar
39+
* spring-ws-core-2.0.0-M1.jar
5240
- Contents: The Spring-WS Core
5341
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
5442
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM, WSDL4J]
5543

56-
* spring-ws-core-tiger-1.5.9.jar
57-
- Contents: The Spring-WS Core for Java 5
58-
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
59-
60-
* spring-ws-support-1.5.9.jar
44+
* spring-ws-support-2.0.0-M1.jar
6145
- Contents: The Spring-WS Support
6246
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
6347
[JMS, JavaMail]
6448

65-
* spring-ws-security-1.5.9.jar
49+
* spring-ws-security-2.0.0-M1.jar
6650
- Contents: Spring-WS Security integration
6751
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
6852
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
6953

70-
* spring-xml-1.5.9.jar
54+
* spring-xml-2.0.0-M1.jar
7155
- Contents: Spring XML utility framework
7256
- Dependencies: Commons Logging, spring-beans, spring-core
7357
[StAX, Xalan, Jaxen]
7458

75-
* spring-ws-1.5.9.jar
59+
* spring-ws-2.0.0-M1.jar
7660
- Contents: Convenient al-in-one jar containing all of the jars described above
7761

7862

security/template.mf

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Bundle-SymbolicName: org.springframework.ws.soap.security
22
Bundle-Name: Spring Web Services SOAP Security
33
Bundle-Vendor: SpringSource
4+
Bundle-Version: ${osgi.version}
45
Bundle-ManifestVersion: 2
56
Import-Template:
67
com.sun.xml.wss.*;version="0",
@@ -12,12 +13,12 @@ Import-Template:
1213
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)",
1314
org.apache.ws.security.*;version="[1.5.8, 2.0.0)";resolution:=optional,
1415
org.apache.xml.security.*;version="[1.0.5.D2, 2.0.0)";resolution:=optional,
15-
org.springframework.beans.*;version="[3.0.1, 4.0.0)",
16-
org.springframework.core.*;version="[3.0.1, 4.0.0)",
17-
org.springframework.dao.*;version="[3.0.1, 4.0.0)",
18-
org.springframework.security.*;version="[3.0.0.A, 4.0.0)",
19-
org.springframework.util.*;version="[3.0.1, 4.0.0)",
20-
org.springframework.ws.*;version="[${version}, ${version}]",
16+
org.springframework.beans.*;version=${spring.framework.osgi.range},
17+
org.springframework.core.*;version=${spring.framework.osgi.range},
18+
org.springframework.dao.*;version=${spring.framework.osgi.range},
19+
org.springframework.security.*;version="[2.0.0, 3.0.0)",
20+
org.springframework.util.*;version=${spring.framework.osgi.range},
21+
org.springframework.ws.*;version=${osgi.range},
2122
org.w3c.dom.*;version="0"
2223
Ignored-Existing-Headers:
2324
Bnd-LastModified,
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
http\://www.springframework.org/schema/oxm=org.springframework.oxm.config.OxmNamespaceHandler
21
http\://www.springframework.org/schema/web-services=org.springframework.ws.config.WebServicesNamespaceHandler
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
http\://www.springframework.org/schema/oxm/spring-oxm-1.5.xsd=/org/springframework/oxm/config/spring-oxm-1.5.xsd
21
http\://www.springframework.org/schema/web-services/web-services-1.5.xsd=/org/springframework/ws/config/web-services-1.5.xsd

src/site/apt/downloads/releases.apt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ Downloads
66

77
* Get the latest Spring Web Services releases here
88

9+
* <<Spring-WS 2.0.0 M1 is the current development release (JDK 1.5+)>>
10+
11+
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/2.0.0-m1/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=85421}Announcement}}
12+
13+
914
* <<Spring-WS 1.5.9 is the current production release (JDK 1.4+)>>
1015

1116
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.9/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=83900}Announcement}}
1217

13-
* <<Spring-WS 1.0.4 is the previous production release (JDK 1.3)>>
14-
15-
* {{{http://sourceforge.net/project/showfiles.php?group_id=73357&package_id=178569&release_id=590453}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.0.4/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=52246}Announcement}}
1618

17-
* <<Spring-WS 1.5.10 is the upcoming production release>>
19+
* <<Spring-WS 2.0.0 M2 is the upcoming production release>>
1820

1921
* {{{snapshots.html}Download nightly snapshots}}

0 commit comments

Comments
 (0)