pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.acegisecurity</groupId>
  8. <artifactId>acegi-security-sandbox</artifactId>
  9. <version>1.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>acegi-security-webwork</artifactId>
  12. <name>Acegi Security System for Spring - Webwork support</name>
  13. <description>Acegi Security System for Spring - Support for WebWork 2</description>
  14. <version>0.1-SNAPSHOT</version>
  15. <scm>
  16. <connection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/sandbox/webwork</connection>
  17. <developerConnection>scm:svn:https://svn.sourceforge.net/svnroot/acegisecurity/trunk/acegisecurity/sandbox/webwork</developerConnection>
  18. <url>http://svn.sourceforge.net/viewcvs.cgi/acegisecurity/trunk/acegisecurity/sandbox/webwork/</url>
  19. </scm>
  20. <dependencies>
  21. <dependency>
  22. <groupId>opensymphony</groupId>
  23. <artifactId>webwork</artifactId>
  24. <version>2.2.3</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>javax.servlet</groupId>
  28. <artifactId>servlet-api</artifactId>
  29. <version>2.4</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. </dependencies>
  33. </project>