pom.xml 913 B

123456789101112131415161718192021222324
  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-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. <version>0.3-SNAPSHOT</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>opensymphony</groupId>
  15. <artifactId>webwork</artifactId>
  16. <version>2.2.3</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>javax.servlet</groupId>
  20. <artifactId>servlet-api</artifactId>
  21. </dependency>
  22. </dependencies>
  23. </project>