pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-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. <version>2.4</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>jstl</groupId>
  30. <artifactId>jstl</artifactId>
  31. <version>1.1.0</version>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>taglibs</groupId>
  36. <artifactId>standard</artifactId>
  37. <version>1.1.2</version>
  38. <scope>runtime</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>