pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.springframework.security</groupId>
  5. <artifactId>spring-security-samples-ldap-xml</artifactId>
  6. <version>3.2.10.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-ldap-xml</name>
  9. <description>spring-security-samples-ldap-xml</description>
  10. <url>https://spring.io/spring-security</url>
  11. <organization>
  12. <name>spring.io</name>
  13. <url>https://spring.io/</url>
  14. </organization>
  15. <licenses>
  16. <license>
  17. <name>The Apache Software License, Version 2.0</name>
  18. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  19. <distribution>repo</distribution>
  20. </license>
  21. </licenses>
  22. <developers>
  23. <developer>
  24. <id>rwinch</id>
  25. <name>Rob Winch</name>
  26. <email>rwinch@gopivotal.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  31. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  32. <url>https://github.com/spring-projects/spring-security</url>
  33. </scm>
  34. <properties>
  35. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>commons-logging</groupId>
  40. <artifactId>commons-logging</artifactId>
  41. <version>1.1.1</version>
  42. <scope>compile</scope>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>ch.qos.logback</groupId>
  47. <artifactId>logback-classic</artifactId>
  48. <version>0.9.29</version>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.directory.server</groupId>
  53. <artifactId>apacheds-core</artifactId>
  54. <version>1.5.5</version>
  55. <scope>runtime</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.directory.server</groupId>
  59. <artifactId>apacheds-core-entry</artifactId>
  60. <version>1.5.5</version>
  61. <scope>runtime</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.directory.server</groupId>
  65. <artifactId>apacheds-protocol-ldap</artifactId>
  66. <version>1.5.5</version>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.directory.server</groupId>
  71. <artifactId>apacheds-protocol-shared</artifactId>
  72. <version>1.5.5</version>
  73. <scope>runtime</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.directory.server</groupId>
  77. <artifactId>apacheds-server-jndi</artifactId>
  78. <version>1.5.5</version>
  79. <scope>runtime</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.directory.shared</groupId>
  83. <artifactId>shared-ldap</artifactId>
  84. <version>0.9.15</version>
  85. <scope>runtime</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.slf4j</groupId>
  89. <artifactId>jcl-over-slf4j</artifactId>
  90. <version>1.7.5</version>
  91. <scope>runtime</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.security</groupId>
  95. <artifactId>spring-security-config</artifactId>
  96. <version>3.2.10.RELEASE</version>
  97. <scope>runtime</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.security</groupId>
  101. <artifactId>spring-security-ldap</artifactId>
  102. <version>3.2.10.RELEASE</version>
  103. <scope>runtime</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.security</groupId>
  107. <artifactId>spring-security-web</artifactId>
  108. <version>3.2.10.RELEASE</version>
  109. <scope>runtime</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>junit</groupId>
  113. <artifactId>junit</artifactId>
  114. <version>4.11</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.easytesting</groupId>
  119. <artifactId>fest-assert</artifactId>
  120. <version>1.4</version>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.mockito</groupId>
  125. <artifactId>mockito-core</artifactId>
  126. <version>1.10.19</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-test</artifactId>
  132. <version>3.2.18.RELEASE</version>
  133. <scope>test</scope>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <artifactId>maven-compiler-plugin</artifactId>
  140. <configuration>
  141. <source>1.7</source>
  142. <target>1.7</target>
  143. </configuration>
  144. </plugin>
  145. <plugin>
  146. <artifactId>maven-war-plugin</artifactId>
  147. <version>2.3</version>
  148. <configuration>
  149. <failOnMissingWebXml>false</failOnMissingWebXml>
  150. </configuration>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </project>