# 1. Introduction ## 1.1. What this guide covers This guide covers all aspects of Spring Web Flow. It covers implementing flows in end-user applications and working with the feature set. It also covers extending the framework and the overall architectural model. ## 1.2. What Web Flow requires to run Java 1.8 or higher. Spring 5.0 or higher. ## 1.3. Resources You can ask questions and interact on StackOverflow using the designated tags, see [Spring at StackOverflow](https://spring.io/questions). Report bugs and make requests using the[Spring Issue Tracker](https://jira.spring.io). Submit pull requests and work with the source code , see [Web Flow on Github](https://github.com/spring-projects/spring-webflow). ## 1.4. How to access Web Flow artifacts from Maven Central Each jar in the Web Flow distribution is available in the [Maven Central Repository](https://search.maven.org). 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. To access Web Flow jars from Maven Central, declare the following dependency in your pom: ``` org.springframework.webflow spring-webflow x.y.z.RELEASE ``` If using JavaServer Faces, declare the following dependency in your pom (includes transitive dependencies "spring-binding", "spring-webflow"): ``` org.springframework.webflow spring-faces x.y.z.RELEASE ``` ## 1.5. How to access nightly builds and milestone releases Nightly snapshots of Web Flow development branches are available using Maven. These snapshot builds are useful for testing out fixes you depend on in advance of the next release, and provide a convenient way for you to provide feedback about whether a fix meets your needs. ### 1.5.1. Accessing snapshots and milestones with Maven For milestones and snapshots you'll need to use the SpringSource repository. Add the following repository to your Maven pom.xml: ``` spring Spring Repository http://repo.spring.io/snapshot ``` Then declare the following dependencies: ``` org.springframework.webflow spring-webflow x.y.z.BUILD-SNAPSHOT ``` And if using JSF: ``` org.springframework.webflow spring-faces x.y.z.BUILD-SNAPSHOT ```