pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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>3.0.0.CI-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. <module>cas</module>
  21. <module>aspectj</module>
  22. </modules>
  23. <dependencies>
  24. <dependency>
  25. <groupId>javax.servlet</groupId>
  26. <artifactId>servlet-api</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.servlet</groupId>
  30. <artifactId>jstl</artifactId>
  31. <scope>runtime</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>taglibs</groupId>
  35. <artifactId>standard</artifactId>
  36. <scope>runtime</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>