Skip to content

Commit

Permalink
Correct versions in doc files
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoyanchev committed Jun 16, 2016
1 parent 9c85c7a commit 21cd54e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 31 deletions.
18 changes: 9 additions & 9 deletions src/dist/readme.txt
@@ -1,4 +1,4 @@
SPRING WEB FLOW 2.4.0
SPRING WEB FLOW 2.4.3
----------------------
http://www.springframework.org/webflow

Expand Down Expand Up @@ -56,27 +56,27 @@ 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:

<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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/reference/index.xml
Expand Up @@ -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>
Expand Down
35 changes: 14 additions & 21 deletions src/reference/overview.xml
Expand Up @@ -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>.
</para>
<para>
Report bugs and influence the Web Flow project roadmap using the <link xl:href="http://jira.springframework.org">Spring Issue Tracker</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>
Subscribe to the <link xl:href="http://www.springframework.org">Spring Community Portal</link> for the latest Spring news and announcements.
Report bugs and make requests using the
<link xl:href="http://jira.spring.io">Spring Issue Tracker</link>.
</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>
Expand Down

0 comments on commit 21cd54e

Please sign in to comment.