Update version number from 2.2.0 to 2.2.1

This commit is contained in:
Rossen Stoyanchev
2010-10-11 12:12:12 +00:00
parent 3b198a638c
commit 5039913006
12 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
SPRING WEB FLOW 2.2.0
SPRING WEB FLOW 2.2.1
----------------------
http://www.springframework.org/webflow
@@ -50,25 +50,25 @@ The following jar files are included in the distribution.
The contents of each jar and its dependencies are noted.
Dependencies in [brackets] are optional, and are just necessary for certain functionality.
* org.springframework.webflow-2.2.0.RELEASE.jar
* org.springframework.webflow-2.2.1.RELEASE.jar
- Contents: The Spring Web Flow system
- Dependencies: Commons Logging, spring-core, spring-beans, spring-context, spring-expression, spring-binding, spring-web, spring-web-servlet, spring-js
[Log4J, Xerces, XML APIs, OGNL, EL API, JPA API, Hibernate, Spring Security, Servlet API, Portlet API, JUnit]
* org.springframework.binding-2.2.0.RELEASE.jar
* org.springframework.binding-2.2.1.RELEASE.jar
- Contents: The Spring Data Binding framework, a utility library used by Web Flow
- Dependencies: Commons Logging, spring-beans, spring-core, spring-context, spring-expression
[Log4J, OGNL, EL API]
* org.springframework.js-2.2.0.RELEASE.jar
* org.springframework.js-2.2.1.RELEASE.jar
- Contents: The Spring JavaScript module
- Dependencies: spring-beans, spring-core, spring-context, spring-web, spring-web-servlet
* org.springframework.js.resources-2.2.0.RELEASE.jar
* org.springframework.js.resources-2.2.1.RELEASE.jar
- Contents: Spring's custom Dojo build and client-side Dojo integration files.
- Dependencies:
* org.springframework.faces-2.2.0.RELEASE.jar
* org.springframework.faces-2.2.1.RELEASE.jar
- Contents: The Spring Faces module, containing Spring's integration with Java Server Faces (JSF) and additional JSF functionality.
- Dependencies: spring-webflow, spring-js, spring-js-resources, JSF API
@@ -109,19 +109,19 @@ org.springframework.js, and org.springframework.js via transitive dependencies):
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.binding</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.js</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.webflow</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.1.RELEASE</version>
</dependency>
If using JavaServerFaces all you need to include is:
@@ -129,7 +129,7 @@ If using JavaServerFaces all you need to include is:
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.faces</artifactId>
<version>2.2.0.RELEASE</version>
<version>2.2.1.RELEASE</version>
</dependency>
To access jars using Ivy, add the following repositories to your Ivy config:
@@ -146,13 +146,13 @@ To access jars using Ivy, add the following repositories to your Ivy config:
Then declare the following dependencies in your ivy.xml:
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.2.1.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.2.1.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.2.1.RELEASE" conf="compile->runtime" />
If using JavaServerFaces:
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.2.0.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.2.1.RELEASE" conf="compile->runtime" />
Refer to the reference documentation for more coverage on obtaining Web Flow jars using Maven or Ivy.

View File

@@ -1,4 +1,4 @@
version=2.2.0
version=2.2.1
release.type=integration
natural.name=spring-webflow
project.key=SWF

View File

@@ -5,7 +5,7 @@
<artifactId>spring-binding</artifactId>
<packaging>jar</packaging>
<name>Spring Binding</name>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>

View File

@@ -5,7 +5,7 @@
<artifactId>spring-faces</artifactId>
<packaging>jar</packaging>
<name>Spring Faces</name>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>

View File

@@ -5,5 +5,5 @@
<artifactId>spring-js-resources</artifactId>
<packaging>jar</packaging>
<name>Spring JavaScript Resources</name>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
</project>

View File

@@ -5,7 +5,7 @@
<artifactId>spring-js</artifactId>
<packaging>jar</packaging>
<name>Spring JavaScript</name>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.webflow.samples</groupId>
<artifactId>booking-faces</artifactId>
<packaging>war</packaging>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.webflow.samples</groupId>
<artifactId>booking-mvc</artifactId>
<packaging>war</packaging>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.webflow.samples</groupId>
<artifactId>booking-portlet-faces</artifactId>
<packaging>war</packaging>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.sun.facelets</groupId>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.webflow.samples</groupId>
<artifactId>booking-portlet-mvc</artifactId>
<packaging>war</packaging>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>javax.persistence</groupId>

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.webflow.samples</groupId>
<artifactId>jsf-booking</artifactId>
<packaging>war</packaging>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>javax.faces</groupId>

View File

@@ -5,7 +5,7 @@
<artifactId>spring-webflow</artifactId>
<packaging>jar</packaging>
<name>Spring Web Flow</name>
<version>2.2.0.BUILD-SNAPSHOT</version>
<version>2.2.1.BUILD-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>