pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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.5.0-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.springframework.security</groupId>
  9. <artifactId>spring-security-samples-ldap</artifactId>
  10. <name>Spring Security - Ldap 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</groupId>
  20. <artifactId>spring-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-webmvc</artifactId>
  25. <version>${spring.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-jdbc</artifactId>
  30. <scope>runtime</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-aop</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.directory.server</groupId>
  39. <artifactId>apacheds-core</artifactId>
  40. <version>1.0.2</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.directory.server</groupId>
  45. <artifactId>apacheds-server-jndi</artifactId>
  46. <version>1.0.2</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-log4j12</artifactId>
  52. <version>1.4.3</version>
  53. <scope>runtime</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.ldap</groupId>
  57. <artifactId>spring-ldap-core</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <configuration>
  66. <source>1.5</source>
  67. <target>1.5</target>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.mortbay.jetty</groupId>
  72. <artifactId>maven-jetty-plugin</artifactId>
  73. <version>${jetty.version}</version>
  74. <configuration>
  75. <contextPath>/ldap</contextPath>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>