Spring Web Flow.
Here is the list of declaration for spring-webflow. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webflow</artifactId> <version>1.0.5</version> </dependency>
If you think this Maven repository POM file listing for spring-webflow is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The spring-webflow-1.0.5 has 20 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
Service | ognl 2.6.9 OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects. | 61 |
XML | struts 1.2.9 The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a... | 43 |
Testing | clover 1.3.12 Clover is a powerful and highly configurable code coverage analysis tool. It discovers sections of code that are not being adequately exercised by your tests. | 9 |
The following packages are defined in the spring-webflow-1.0.5.jar
org.springframework.webflow.action org.springframework.webflow.action.portlet org.springframework.webflow.config org.springframework.webflow.context org.springframework.webflow.context.portlet org.springframework.webflow.context.servlet org.springframework.webflow.conversation org.springframework.webflow.conversation.impl org.springframework.webflow.core org.springframework.webflow.core.collection org.springframework.webflow.definition org.springframework.webflow.definition.registry org.springframework.webflow.engine org.springframework.webflow.engine.builder org.springframework.webflow.engine.builder.xml org.springframework.webflow.engine.impl org.springframework.webflow.engine.support org.springframework.webflow.execution org.springframework.webflow.execution.factory org.springframework.webflow.execution.repository org.springframework.webflow.execution.repository.continuation org.springframework.webflow.execution.repository.support org.springframework.webflow.execution.support org.springframework.webflow.executor org.springframework.webflow.executor.jsf org.springframework.webflow.executor.mvc org.springframework.webflow.executor.struts org.springframework.webflow.executor.support org.springframework.webflow.test org.springframework.webflow.test.execution org.springframework.webflow.util
Here is the content of the POM file.
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework</groupId> <artifactId>spring-webflow</artifactId> <packaging>jar</packaging> <name>Spring Web Flow</name> <version>1.0.5</version> <description>Spring Web Flow</description> <url>http://www.springframework.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:https://svn.sourceforge.net/svnroot/springframework/spring-webflow</connection> <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/springframework/spring-webflow</developerConnection> <url>http://svn.sourceforge.net/viewcvs.cgi/springframework/spring-webflow</url> </scm> <organization> <name>Spring Framework</name> <url>http://www.springframework.org/</url> </organization> <dependencies> <!-- External Dependencies --> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>concurrent</groupId> <artifactId>concurrent</artifactId> <version>1.3.4</version> <optional>true</optional> </dependency> <dependency> <groupId>javax.portlet</groupId> <artifactId>portlet-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <optional>true</optional> </dependency> <dependency> <groupId>ognl</groupId> <artifactId>ognl</artifactId> <version>2.6.9</version> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-api</artifactId> <version>1.1.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-impl</artifactId> <version>1.1.4</version> <optional>true</optional> </dependency> <dependency> <groupId>struts</groupId> <artifactId>struts</artifactId> <version>1.2.9</version> <optional>true</optional> </dependency> <!-- Spring Dependencies --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>2.0.7</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-binding</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>2.0.7</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>2.0.7</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-portlet</artifactId> <version>2.0.7</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-struts</artifactId> <version>2.0.7</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>2.0.7</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>2.0.7</version> <optional>true</optional> </dependency> <!-- Runtime Dependencies --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> <scope>runtime</scope> <optional>true</optional> </dependency> <!-- Test Dependencies --> <dependency> <groupId>com.cenqua.clover</groupId> <artifactId>clover</artifactId> <version>1.3.12</version> <scope>test</scope> </dependency> <dependency> <groupId>easymock</groupId> <artifactId>easymock</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-mock</artifactId> <version>2.0.7</version> <scope>test</scope> </dependency> </dependencies> </project>