Correct versions in doc files

This commit is contained in:
Rossen Stoyanchev
2016-06-16 10:18:39 -04:00
parent 9c85c7ac4c
commit 21cd54eca4
3 changed files with 24 additions and 31 deletions

18
src/dist/readme.txt vendored
View File

@@ -1,4 +1,4 @@
SPRING WEB FLOW 2.4.0
SPRING WEB FLOW 2.4.3
----------------------
http://www.springframework.org/webflow
@@ -56,19 +56,19 @@ via transitive dependencies):
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.binding</artifactId>
<version>2.4.0.RC1</version>
<version>2.4.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.js</artifactId>
<version>2.4.0.RC1</version>
<version>2.4.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.webflow</artifactId>
<version>2.4.0.RC1</version>
<version>2.4.3.RELEASE</version>
</dependency>
If using JSF all you need to include is:
@@ -76,7 +76,7 @@ If using JSF all you need to include is:
<dependency>
<groupId>org.springframework.webflow</groupId>
<artifactId>org.springframework.faces</artifactId>
<version>2.4.0.RC1</version>
<version>2.4.3.RELEASE</version>
</dependency>
To access jars using Ivy, add the following repositories to your Ivy config:
@@ -93,13 +93,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.4.0.RC1" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.4.0.RC1" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.4.0.RC1" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.binding" rev="2.4.3.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.js" rev="2.4.3.RELEASE" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.webflow" rev="2.4.3.RELEASE" conf="compile->runtime" />
If using JavaServerFaces:
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.4.0.RC1" conf="compile->runtime" />
<dependency org="org.springframework.webflow" name="org.springframework.faces" rev="2.4.3.RELEASE" conf="compile->runtime" />
For more information see the reference documentation and the SpringSource Repository FAQ:
https://github.com/spring-projects/spring-framework/wiki/Spring-repository-FAQ

View File

@@ -12,7 +12,7 @@
<title>Spring Web Flow Reference Guide</title>
<titleabbrev>Spring Web Flow</titleabbrev>
<productname>Spring Web Flow</productname>
<releaseinfo>Version 2.4.0</releaseinfo>
<releaseinfo>Version 2.4.3</releaseinfo>
<pubdate></pubdate>
<authorgroup>
<author>

View File

@@ -19,44 +19,37 @@
<sect1 xml:id="system-requirements">
<title>What Web Flow requires to run</title>
<para>
Java 1.5 or higher
Java 1.6 or higher.
</para>
<para>
Spring 3.1 or higher
Spring 3.2 or higher.
</para>
</sect1>
<sect1 xml:id="support">
<title>Where to get support</title>
<sect1 xml:id="resources">
<title>Resources</title>
<para>
Professional from-the-source support on Spring Web Flow is available from
<link xl:href="http://www.springsource.com">SpringSource</link>, the company behind Spring, and
<link xl:href="http://www.ervacon.com">Ervacon</link>, operated by Web Flow project co-founder Erwin Vervaet
</para>
</sect1>
<sect1 xml:id="development">
<title>Where to follow development</title>
<para>
You can help make Web Flow best serve the needs of the Spring community by interacting with developers
at the <link xl:href="http://forum.springframework.org">Spring Community Forums</link>.
You can ask questions and interact on StackOverflow using the designated tags,
see <link xl:href="https://spring.io/questions">Spring at StackOverflow</link>.
</para>
<para>
Report bugs and influence the Web Flow project roadmap using the <link xl:href="http://jira.springframework.org">Spring Issue Tracker</link>.
Report bugs and make requests using the
<link xl:href="http://jira.spring.io">Spring Issue Tracker</link>.
</para>
<para>
Subscribe to the <link xl:href="http://www.springframework.org">Spring Community Portal</link> for the latest Spring news and announcements.
</para>
<para>
Visit the <link xl:href="http://www.springframework.org/webflow">Web Flow Project Home</link> for more resources on the project.
Submit pull requests and work with the source code ,
see <link xl:href="https://github.com/spring-projects/spring-webflow">Web Flow on Github</link>.
</para>
</sect1>
<sect1 xml:id="jars-mvn-central">
<title>How to access Web Flow artifacts from Maven Central</title>
<para>
Each jar in the Web Flow distribution is available in the <link xl:href="http://search.maven.org">Maven Central Repository</link>.
This allows you to easily integrate Web Flow into your application if you are already using Maven as the build system for your web development project.
This allows you to easily integrate Web Flow into your application if you are already using Maven as the
build system for your web development project.
</para>
<para>
To access Web Flow jars from Maven Central, declare the following dependency in your pom (includes transitive dependencies "spring-binding" and "spring-js"):
To access Web Flow jars from Maven Central, declare the following dependency in your pom (includes
transitive dependencies "spring-binding" and "spring-js"):
</para>
<programlisting language="xml"><![CDATA[
<dependency>