pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-ldap</artifactId>
  7. <version>3.2.0.CI-SNAPSHOT</version>
  8. <name>spring-security-ldap</name>
  9. <description>spring-security-ldap</description>
  10. <url>http://springsource.org/spring-security</url>
  11. <organization>
  12. <name>SpringSource</name>
  13. <url>http://springsource.org/</url>
  14. </organization>
  15. <licenses>
  16. <license>
  17. <name>The Apache Software License, Version 2.0</name>
  18. <url>http://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@vmware.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/SpringSource/spring-security</connection>
  31. <developerConnection>scm:git:git://github.com/SpringSource/spring-security</developerConnection>
  32. <url>https://github.com/SpringSource/spring-security</url>
  33. </scm>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>1.7</source>
  40. <target>1.7</target>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <repositories>
  46. <repository>
  47. <id>spring-snasphot</id>
  48. <url>http://repo.springsource.org/libs-snapshot</url>
  49. </repository>
  50. </repositories>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.springframework.ldap</groupId>
  54. <artifactId>spring-ldap-core</artifactId>
  55. <version>1.3.2.RELEASE</version>
  56. <scope>compile</scope>
  57. <exclusions>
  58. <exclusion>
  59. <artifactId>spring-beans</artifactId>
  60. <groupId>org.springframework</groupId>
  61. </exclusion>
  62. <exclusion>
  63. <artifactId>spring-core</artifactId>
  64. <groupId>org.springframework</groupId>
  65. </exclusion>
  66. <exclusion>
  67. <artifactId>commons-logging</artifactId>
  68. <groupId>commons-logging</groupId>
  69. </exclusion>
  70. <exclusion>
  71. <artifactId>spring-tx</artifactId>
  72. <groupId>org.springframework</groupId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.security</groupId>
  78. <artifactId>spring-security-core</artifactId>
  79. <version>3.2.0.CI-SNAPSHOT</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-beans</artifactId>
  85. <version>3.2.4.RELEASE</version>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-context</artifactId>
  91. <version>3.2.4.RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-core</artifactId>
  97. <version>3.2.4.RELEASE</version>
  98. <scope>compile</scope>
  99. <exclusions>
  100. <exclusion>
  101. <artifactId>commons-logging</artifactId>
  102. <groupId>commons-logging</groupId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework</groupId>
  108. <artifactId>spring-tx</artifactId>
  109. <version>3.2.4.RELEASE</version>
  110. <scope>compile</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-logging</groupId>
  114. <artifactId>commons-logging</artifactId>
  115. <version>1.1.1</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>0.9.29</version>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>junit</groupId>
  176. <artifactId>junit</artifactId>
  177. <version>4.10</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.easytesting</groupId>
  182. <artifactId>fest-assert</artifactId>
  183. <version>1.4</version>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.mockito</groupId>
  188. <artifactId>mockito-core</artifactId>
  189. <version>1.9.5</version>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.slf4j</groupId>
  194. <artifactId>jcl-over-slf4j</artifactId>
  195. <version>1.7.5</version>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.slf4j</groupId>
  200. <artifactId>slf4j-api</artifactId>
  201. <version>1.7.5</version>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.springframework</groupId>
  206. <artifactId>spring-test</artifactId>
  207. <version>3.2.4.RELEASE</version>
  208. <scope>test</scope>
  209. </dependency>
  210. </dependencies>
  211. </project>