pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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-samples</artifactId>
  6. <version>2.0-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.springframework.security</groupId>
  9. <artifactId>spring-security-samples-tutorial</artifactId>
  10. <name>Spring Security - Tutorial sample</name>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.security</groupId>
  15. <artifactId>spring-security-core</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.security</groupId>
  20. <artifactId>spring-security-core-tiger</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-webmvc</artifactId>
  30. <version>${spring.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-jdbc</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-aop</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>jstl</artifactId>
  45. <version>1.2</version>
  46. <scope>runtime</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>taglibs</groupId>
  50. <artifactId>standard</artifactId>
  51. <version>1.0.6</version>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.directory.server</groupId>
  56. <artifactId>apacheds-core</artifactId>
  57. <version>1.0.2</version>
  58. <scope>compile</scope>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.directory.server</groupId>
  63. <artifactId>apacheds-server-jndi</artifactId>
  64. <version>1.0.2</version>
  65. <scope>compile</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.slf4j</groupId>
  70. <artifactId>slf4j-log4j12</artifactId>
  71. <version>1.4.3</version>
  72. <scope>runtime</scope>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.ldap</groupId>
  77. <artifactId>spring-ldap</artifactId>
  78. <version>1.2.1</version>
  79. <optional>true</optional>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-compiler-plugin</artifactId>
  87. <configuration>
  88. <source>1.5</source>
  89. <target>1.5</target>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.mortbay.jetty</groupId>
  94. <artifactId>maven-jetty-plugin</artifactId>
  95. <version>6.1.5</version>
  96. <configuration>
  97. <contextPath>/tutorial</contextPath>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>