pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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-jc</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-ldap-jc</name>
  9. <description>spring-security-samples-ldap-jc</description>
  10. <url>http://spring.io/spring-security</url>
  11. <organization>
  12. <name>spring.io</name>
  13. <url>http://spring.io/</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@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. <dependencies>
  35. <dependency>
  36. <groupId>javax.servlet.jsp.jstl</groupId>
  37. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  38. <version>1.2.1</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>javax.validation</groupId>
  43. <artifactId>validation-api</artifactId>
  44. <version>1.0.0.GA</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.directory.server</groupId>
  49. <artifactId>apacheds-core</artifactId>
  50. <version>1.5.5</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.directory.server</groupId>
  55. <artifactId>apacheds-core-entry</artifactId>
  56. <version>1.5.5</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.directory.server</groupId>
  61. <artifactId>apacheds-protocol-ldap</artifactId>
  62. <version>1.5.5</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.directory.server</groupId>
  67. <artifactId>apacheds-protocol-shared</artifactId>
  68. <version>1.5.5</version>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.directory.server</groupId>
  73. <artifactId>apacheds-server-jndi</artifactId>
  74. <version>1.5.5</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.directory.shared</groupId>
  79. <artifactId>shared-ldap</artifactId>
  80. <version>0.9.15</version>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.hibernate</groupId>
  85. <artifactId>hibernate-validator</artifactId>
  86. <version>4.2.0.Final</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.slf4j</groupId>
  91. <artifactId>jcl-over-slf4j</artifactId>
  92. <version>1.7.7</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>jul-to-slf4j</artifactId>
  98. <version>1.7.7</version>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.slf4j</groupId>
  103. <artifactId>log4j-over-slf4j</artifactId>
  104. <version>1.7.7</version>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.slf4j</groupId>
  109. <artifactId>slf4j-api</artifactId>
  110. <version>1.7.7</version>
  111. <scope>compile</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.security</groupId>
  115. <artifactId>spring-security-config</artifactId>
  116. <version>4.0.4.RELEASE</version>
  117. <scope>compile</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.security</groupId>
  121. <artifactId>spring-security-core</artifactId>
  122. <version>4.0.4.RELEASE</version>
  123. <scope>compile</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.security</groupId>
  127. <artifactId>spring-security-ldap</artifactId>
  128. <version>4.0.4.RELEASE</version>
  129. <scope>compile</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.security</groupId>
  133. <artifactId>spring-security-samples-messages-jc</artifactId>
  134. <version>4.0.4.RELEASE</version>
  135. <scope>compile</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.security</groupId>
  139. <artifactId>spring-security-web</artifactId>
  140. <version>4.0.4.RELEASE</version>
  141. <scope>compile</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework</groupId>
  145. <artifactId>spring-jdbc</artifactId>
  146. <scope>compile</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework</groupId>
  150. <artifactId>spring-webmvc</artifactId>
  151. <scope>compile</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>commons-logging</groupId>
  155. <artifactId>commons-logging</artifactId>
  156. <version>1.2</version>
  157. <scope>compile</scope>
  158. <optional>true</optional>
  159. </dependency>
  160. <dependency>
  161. <groupId>javax.servlet.jsp</groupId>
  162. <artifactId>jsp-api</artifactId>
  163. <version>2.1</version>
  164. <scope>provided</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>javax.servlet</groupId>
  168. <artifactId>javax.servlet-api</artifactId>
  169. <version>3.0.1</version>
  170. <scope>provided</scope>
  171. </dependency>
  172. <dependency>
  173. <groupId>cglib</groupId>
  174. <artifactId>cglib-nodep</artifactId>
  175. <version>3.1</version>
  176. <scope>runtime</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>ch.qos.logback</groupId>
  180. <artifactId>logback-classic</artifactId>
  181. <version>0.9.30</version>
  182. <scope>runtime</scope>
  183. </dependency>
  184. <dependency>
  185. <groupId>opensymphony</groupId>
  186. <artifactId>sitemesh</artifactId>
  187. <version>2.4.2</version>
  188. <scope>runtime</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>ch.qos.logback</groupId>
  192. <artifactId>logback-classic</artifactId>
  193. <version>1.1.2</version>
  194. <scope>test</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>commons-httpclient</groupId>
  198. <artifactId>commons-httpclient</artifactId>
  199. <version>3.1</version>
  200. <scope>test</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>junit</groupId>
  204. <artifactId>junit</artifactId>
  205. <version>4.11</version>
  206. <scope>test</scope>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.codehaus.groovy</groupId>
  210. <artifactId>groovy</artifactId>
  211. <version>2.3.8</version>
  212. <scope>test</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.easytesting</groupId>
  216. <artifactId>fest-assert</artifactId>
  217. <version>1.4</version>
  218. <scope>test</scope>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.gebish</groupId>
  222. <artifactId>geb-spock</artifactId>
  223. <version>0.10.0</version>
  224. <scope>test</scope>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.mockito</groupId>
  228. <artifactId>mockito-core</artifactId>
  229. <version>1.10.19</version>
  230. <scope>test</scope>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.seleniumhq.selenium</groupId>
  234. <artifactId>selenium-htmlunit-driver</artifactId>
  235. <version>2.44.0</version>
  236. <scope>test</scope>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.spockframework</groupId>
  240. <artifactId>spock-core</artifactId>
  241. <version>0.7-groovy-2.0</version>
  242. <scope>test</scope>
  243. <exclusions>
  244. <exclusion>
  245. <artifactId>junit-dep</artifactId>
  246. <groupId>junit</groupId>
  247. </exclusion>
  248. </exclusions>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.spockframework</groupId>
  252. <artifactId>spock-spring</artifactId>
  253. <version>0.7-groovy-2.0</version>
  254. <scope>test</scope>
  255. <exclusions>
  256. <exclusion>
  257. <artifactId>junit-dep</artifactId>
  258. <groupId>junit</groupId>
  259. </exclusion>
  260. </exclusions>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.springframework</groupId>
  264. <artifactId>spring-test</artifactId>
  265. <scope>test</scope>
  266. </dependency>
  267. </dependencies>
  268. <dependencyManagement>
  269. <dependencies>
  270. <dependency>
  271. <groupId>org.springframework</groupId>
  272. <artifactId>spring-framework-bom</artifactId>
  273. <version>4.2.5.RELEASE</version>
  274. <type>pom</type>
  275. <scope>import</scope>
  276. </dependency>
  277. </dependencies>
  278. </dependencyManagement>
  279. <properties>
  280. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  281. </properties>
  282. <build>
  283. <plugins>
  284. <plugin>
  285. <artifactId>maven-compiler-plugin</artifactId>
  286. <configuration>
  287. <source>1.7</source>
  288. <target>1.7</target>
  289. </configuration>
  290. </plugin>
  291. <plugin>
  292. <artifactId>maven-war-plugin</artifactId>
  293. <version>2.3</version>
  294. <configuration>
  295. <failOnMissingWebXml>false</failOnMissingWebXml>
  296. </configuration>
  297. </plugin>
  298. </plugins>
  299. </build>
  300. </project>