pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.acegisecurity</groupId>
  5. <artifactId>acegi-security-samples-acegifier</artifactId>
  6. <packaging>war</packaging>
  7. <name>acegi-security-samples-acegifier</name>
  8. <parent>
  9. <groupId>org.acegisecurity</groupId>
  10. <artifactId>acegi-security-samples</artifactId>
  11. <version>1.0.4-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.acegisecurity</groupId>
  16. <artifactId>acegi-security</artifactId>
  17. <version>${pom.version}</version>
  18. <type>jar</type>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-webmvc</artifactId>
  23. <version>2.0.4</version>
  24. <type>jar</type>
  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. <dependency>
  33. <groupId>dom4j</groupId>
  34. <artifactId>dom4j</artifactId>
  35. <version>1.6</version>
  36. <type>jar</type>
  37. </dependency>
  38. <dependency>
  39. <groupId>jaxen</groupId>
  40. <artifactId>jaxen</artifactId>
  41. <version>1.1-beta-8</version>
  42. <type>jar</type>
  43. </dependency>
  44. <dependency>
  45. <groupId>freemarker</groupId>
  46. <artifactId>freemarker</artifactId>
  47. <version>2.3.4</version>
  48. <type>jar</type>
  49. </dependency>
  50. </dependencies>
  51. </project>