pom.xml 881 B

1234567891011121314151617181920212223
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-sandbox</artifactId>
  6. <version>2.0.4-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>spring-security-webwork</artifactId>
  9. <name>Spring Security - Webwork support</name>
  10. <description>Spring Security - Support for WebWork 2</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>opensymphony</groupId>
  14. <artifactId>webwork</artifactId>
  15. <version>2.2.3</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.servlet</groupId>
  19. <artifactId>servlet-api</artifactId>
  20. </dependency>
  21. </dependencies>
  22. </project>