Skip to content

Commit 203af82

Browse files
committed
Prepping for 1.5.6 release
1 parent 1710751 commit 203af82

File tree

11 files changed

+25
-25
lines changed

11 files changed

+25
-25
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
<dependency>
1616
<groupId>org.springframework.ws</groupId>
1717
<artifactId>spring-oxm</artifactId>
18-
<version>1.5.5</version>
18+
<version>1.5.6</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.ws</groupId>
2222
<artifactId>spring-ws-core</artifactId>
23-
<version>1.5.5</version>
23+
<version>1.5.6</version>
2424
</dependency>
2525
</dependencies>
2626
</project>

readme.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SPRING WEB SERVICES 1.5.5 (November 2008)
1+
SPRING WEB SERVICES 1.5.6 (January 2009)
22
-------------------------------
33
http://www.springframework.org/spring-ws
44
http://forum.springframework.org/forumdisplay.php?f=39
@@ -39,40 +39,40 @@ The following distinct jar files are included in the distribution. This list spe
3939
third-party dependencies. Libraries in [brackets] are optional, i.e. just necessary for certain functionality. For an
4040
exact list of Spring-WS project dependencies see the respective Maven2 pom.xml files.
4141

42-
* spring-oxm-1.5.5.jar
42+
* spring-oxm-1.5.6.jar
4343
- Contents: The Spring Object/XML Mapping framework
4444
- Dependencies: Commons Logging, spring-beans, spring-core
4545
[Log4J, JAXB 1, Castor, XMLBeans, StAX, JiBX, XStream]
4646

47-
* spring-oxm-tiger-1.5.5.jar
47+
* spring-oxm-tiger-1.5.6.jar
4848
- Contents: The Spring Object/XML Mapping framework for Java 5
4949
- Dependencies: Commons Logging, spring-beans, spring-core, JAXB 2
5050

51-
* spring-ws-core-1.5.5.jar
51+
* spring-ws-core-1.5.6.jar
5252
- Contents: The Spring-WS Core
5353
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-oxm
5454
[Log4J, spring-web, spring-webmvc, SAAJ, JDOM, StAX, Servlet API, JAF, Axiom, DOM4J, XOM, WSDL4J]
5555

56-
* spring-ws-core-tiger-1.5.5.jar
56+
* spring-ws-core-tiger-1.5.6.jar
5757
- Contents: The Spring-WS Core for Java 5
5858
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
5959

60-
* spring-ws-support-1.5.5.jar
60+
* spring-ws-support-1.5.6.jar
6161
- Contents: The Spring-WS Support
6262
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-core
6363
[JMS, JavaMail]
6464

65-
* spring-ws-security-1.5.5.jar
65+
* spring-ws-security-1.5.6.jar
6666
- Contents: Spring-WS Security integration
6767
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-ws-core
6868
[Log4J, xmlsdig, xmlsec, XWS-security, Acegi, WSS4J]
6969

70-
* spring-xml-1.5.5.jar
70+
* spring-xml-1.5.6.jar
7171
- Contents: Spring XML utility framework
7272
- Dependencies: Commons Logging, spring-beans, spring-core
7373
[StAX, Xalan, Jaxen]
7474

75-
* spring-ws-1.5.5.jar
75+
* spring-ws-1.5.6.jar
7676
- Contents: Convenient al-in-one jar containing all of the jars described above
7777

7878

samples/airline/client/jms/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
<remoteRepository refid="spring-ext"/>
2424
<dependency groupId="javax.xml.soap" artifactId="saaj-api" version="1.3"/>
2525
<dependency groupId="org.apache.activemq" artifactId="activemq-core" version="4.1.1"/>
26-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.5"/>
26+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.6"/>
2727
</artifact:dependencies>
2828

2929
<artifact:dependencies pathId="runtime.classpath">
3030
<remoteRepository refid="main"/>
3131
<remoteRepository refid="java.net"/>
3232
<remoteRepository refid="spring-ext"/>
3333
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
34-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.5"/>
34+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-support" version="1.5.6"/>
3535
<dependency groupId="org.springframework" artifactId="spring-jms" version="2.5.1"/>
3636
</artifact:dependencies>
3737

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<artifact:dependencies pathId="classpath">
2020
<remoteRepository refid="main"/>
2121
<remoteRepository refid="java.net"/>
22-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.5"/>
23-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.5"/>
22+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.6"/>
23+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-security" version="1.5.6"/>
2424
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
2525
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
2626
<dependency groupId="xmlbeans" artifactId="xbean" version="2.2.0"/>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</typedef>
1212

1313
<artifact:dependencies pathId="classpath">
14-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.5"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.6"/>
1515
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1616
<dependency groupId="commons-httpclient" artifactId="commons-httpclient" version="3.0.1"/>
1717
</artifact:dependencies>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</typedef>
1212

1313
<artifact:dependencies pathId="classpath">
14-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.5"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.6"/>
1515
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
1616
</artifact:dependencies>
1717

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</typedef>
1212

1313
<artifact:dependencies pathId="classpath">
14-
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.5"/>
14+
<dependency groupId="org.springframework.ws" artifactId="spring-ws-core" version="1.5.6"/>
1515
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
1616
<dependency groupId="log4j" artifactId="log4j" version="1.2.13"/>
1717
</artifact:dependencies>

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>1.5.5-SANDBOX</version>
6+
<version>1.5.6</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>spring-ws-sandbox</artifactId>

src/docbkx/tutorial.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
</para>
475475
<screen>mvn archetype:create -DarchetypeGroupId=org.springframework.ws \
476476
-DarchetypeArtifactId=spring-ws-archetype \
477-
-DarchetypeVersion=1.5.5 \
477+
-DarchetypeVersion=1.5.6 \
478478
-DgroupId=com.mycompany.hr \
479479
-DartifactId=holidayService
480480
</screen>
@@ -634,7 +634,7 @@ public class HolidayEndpoint extends AbstractJDomPayloadEndpoint {
634634
<dependency>
635635
<groupId>org.springframework.ws</groupId>
636636
<artifactId>spring-ws-core</artifactId>
637-
<version>1.5.5</version>
637+
<version>1.5.6</version>
638638
</dependency>
639639
<dependency>
640640
<groupId>jdom</groupId>

src/site/apt/downloads/releases.apt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Downloads
66

77
* Get the latest Spring Web Services releases here
88

9-
* <<Spring-WS 1.5.5 is the current production release (JDK 1.4+)>>
9+
* <<Spring-WS 1.5.6 is the current production release (JDK 1.4+)>>
1010

11-
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.5/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=63045}Announcement}}
11+
* {{{http://www.springsource.com/download/community?project=Spring%20Web%20Services}Download}} | {{{http://static.springframework.org/spring-ws/docs/1.5.6/changelog.txt}Changelog}} | {{{http://forum.springframework.org/showthread.php?t=63045}Announcement}}
1212

1313
* <<Spring-WS 1.0.4 is the previous production release (JDK 1.3)>>
1414

1515
* {{{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}}
1616

1717

18-
* <<Spring-WS 1.5.6 is the upcoming production release>>
18+
* <<Spring-WS 1.5.7 is the upcoming production release>>
1919

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

0 commit comments

Comments
 (0)