pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-parent</artifactId>
  6. <version>2.0.0-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.springframework.security</groupId>
  9. <artifactId>spring-security-samples</artifactId>
  10. <name>Spring Security - Samples</name>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>contacts</module>
  14. <module>tutorial</module>
  15. <module>dms</module>
  16. <module>preauth</module>
  17. <module>openid</module>
  18. <module>ldap</module>
  19. <module>portlet</module>
  20. </modules>
  21. <dependencies>
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>servlet-api</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>aspectj</groupId>
  28. <artifactId>aspectjrt</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.aspectj</groupId>
  32. <artifactId>aspectjweaver</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.servlet</groupId>
  37. <artifactId>jstl</artifactId>
  38. <scope>runtime</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>taglibs</groupId>
  42. <artifactId>standard</artifactId>
  43. <scope>runtime</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>