pom.xml 3.8 KB

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