Friday, July 15, 2011

Spring Web Flow - Obtaining Spring Webflow Releases from Maven

The following dependencies provides the artifacts that has to be added to your pom.xml for including the Spring Web Flow Framework packages to your project.

<!-- Spring Web Flow Dependencies Start -->
<dependency>
    <groupId>org.springframework.webflow</groupId>
    <artifactId>spring-binding</artifactId>
    <version>${spring.webflow.version}</version>
</dependency>

<dependency>
    <groupId>org.springframework.webflow</groupId>
    <artifactId>spring-js</artifactId>
    <version>${spring.webflow.version}</version>
</dependency>

<dependency>
    <groupId>org.springframework.webflow</groupId>
    <artifactId>spring-webflow</artifactId>
    <version>${spring.webflow.version}</version>
    <type>jar</type>
</dependency>
        
<dependency>
    <groupId>ognl</groupId>
    <artifactId>ognl</artifactId>
    <version>2.7.3</version>
    <type>jar</type>
    <scope>compile</scope>
</dependency>
<!-- Spring Web Flow Dependencies End -->

<properties>
    <spring.webflow.version>2.0.8.RELEASE</spring.webflow.version>
</properties>

No comments:

Post a Comment