pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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-ldap</artifactId>
  6. <version>4.2.13.RELEASE</version>
  7. <name>spring-security-ldap</name>
  8. <description>spring-security-ldap</description>
  9. <url>https://spring.io/spring-security</url>
  10. <organization>
  11. <name>spring.io</name>
  12. <url>https://spring.io/</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>rwinch</id>
  24. <name>Rob Winch</name>
  25. <email>rwinch@gopivotal.com</email>
  26. </developer>
  27. </developers>
  28. <scm>
  29. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  30. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  31. <url>https://github.com/spring-projects/spring-security</url>
  32. </scm>
  33. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-framework-bom</artifactId>
  38. <version>4.3.23.RELEASE</version>
  39. <type>pom</type>
  40. <scope>import</scope>
  41. </dependency>
  42. </dependencies>
  43. </dependencyManagement>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.springframework.ldap</groupId>
  47. <artifactId>spring-ldap-core</artifactId>
  48. <version>2.3.2.RELEASE</version>
  49. <scope>compile</scope>
  50. <exclusions>
  51. <exclusion>
  52. <artifactId>spring-data-commons</artifactId>
  53. <groupId>org.springframework.data</groupId>
  54. </exclusion>
  55. <exclusion>
  56. <artifactId>spring-core</artifactId>
  57. <groupId>org.springframework</groupId>
  58. </exclusion>
  59. <exclusion>
  60. <artifactId>spring-tx</artifactId>
  61. <groupId>org.springframework</groupId>
  62. </exclusion>
  63. <exclusion>
  64. <artifactId>spring-beans</artifactId>
  65. <groupId>org.springframework</groupId>
  66. </exclusion>
  67. <exclusion>
  68. <artifactId>commons-logging</artifactId>
  69. <groupId>commons-logging</groupId>
  70. </exclusion>
  71. </exclusions>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.security</groupId>
  75. <artifactId>spring-security-core</artifactId>
  76. <version>4.2.13.RELEASE</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-beans</artifactId>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-context</artifactId>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-core</artifactId>
  92. <scope>compile</scope>
  93. <exclusions>
  94. <exclusion>
  95. <artifactId>commons-logging</artifactId>
  96. <groupId>commons-logging</groupId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework</groupId>
  102. <artifactId>spring-tx</artifactId>
  103. <scope>compile</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.unboundid</groupId>
  107. <artifactId>unboundid-ldapsdk</artifactId>
  108. <version>3.2.1</version>
  109. <scope>compile</scope>
  110. <optional>true</optional>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-logging</groupId>
  114. <artifactId>commons-logging</artifactId>
  115. <version>1.2</version>
  116. <scope>compile</scope>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>ldapsdk</groupId>
  121. <artifactId>ldapsdk</artifactId>
  122. <version>4.1</version>
  123. <scope>compile</scope>
  124. <optional>true</optional>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.directory.server</groupId>
  128. <artifactId>apacheds-core</artifactId>
  129. <version>1.5.5</version>
  130. <scope>compile</scope>
  131. <optional>true</optional>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.directory.server</groupId>
  135. <artifactId>apacheds-core-entry</artifactId>
  136. <version>1.5.5</version>
  137. <scope>compile</scope>
  138. <optional>true</optional>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.directory.server</groupId>
  142. <artifactId>apacheds-protocol-ldap</artifactId>
  143. <version>1.5.5</version>
  144. <scope>compile</scope>
  145. <optional>true</optional>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.directory.server</groupId>
  149. <artifactId>apacheds-protocol-shared</artifactId>
  150. <version>1.5.5</version>
  151. <scope>compile</scope>
  152. <optional>true</optional>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.directory.server</groupId>
  156. <artifactId>apacheds-server-jndi</artifactId>
  157. <version>1.5.5</version>
  158. <scope>compile</scope>
  159. <optional>true</optional>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.directory.shared</groupId>
  163. <artifactId>shared-ldap</artifactId>
  164. <version>0.9.15</version>
  165. <scope>compile</scope>
  166. <optional>true</optional>
  167. </dependency>
  168. <dependency>
  169. <groupId>ch.qos.logback</groupId>
  170. <artifactId>logback-classic</artifactId>
  171. <version>1.1.11</version>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>junit</groupId>
  176. <artifactId>junit</artifactId>
  177. <version>4.12</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.assertj</groupId>
  182. <artifactId>assertj-core</artifactId>
  183. <version>2.2.0</version>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.mockito</groupId>
  188. <artifactId>mockito-core</artifactId>
  189. <version>1.10.19</version>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.slf4j</groupId>
  194. <artifactId>jcl-over-slf4j</artifactId>
  195. <version>1.7.25</version>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.slf4j</groupId>
  200. <artifactId>slf4j-api</artifactId>
  201. <version>1.7.25</version>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.springframework</groupId>
  206. <artifactId>spring-test</artifactId>
  207. <scope>test</scope>
  208. </dependency>
  209. </dependencies>
  210. <build>
  211. <plugins>
  212. <plugin>
  213. <artifactId>maven-compiler-plugin</artifactId>
  214. <configuration>
  215. <source>1.7</source>
  216. <target>1.7</target>
  217. </configuration>
  218. </plugin>
  219. </plugins>
  220. </build>
  221. </project>