pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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-config</artifactId>
  7. <version>3.2.7.CI-SNAPSHOT</version>
  8. <name>spring-security-config</name>
  9. <description>spring-security-config</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. <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>https://repo.spring.io/snapshot</url>
  49. </repository>
  50. </repositories>
  51. <dependencies>
  52. <dependency>
  53. <groupId>aopalliance</groupId>
  54. <artifactId>aopalliance</artifactId>
  55. <version>1.0</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.security</groupId>
  60. <artifactId>spring-security-core</artifactId>
  61. <version>3.2.7.CI-SNAPSHOT</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-aop</artifactId>
  67. <version>3.2.13.RELEASE</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-beans</artifactId>
  73. <version>3.2.13.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-context</artifactId>
  79. <version>3.2.13.RELEASE</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-core</artifactId>
  85. <version>3.2.13.RELEASE</version>
  86. <scope>compile</scope>
  87. <exclusions>
  88. <exclusion>
  89. <artifactId>commons-logging</artifactId>
  90. <groupId>commons-logging</groupId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-logging</groupId>
  96. <artifactId>commons-logging</artifactId>
  97. <version>1.1.1</version>
  98. <scope>compile</scope>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.aspectj</groupId>
  103. <artifactId>aspectjweaver</artifactId>
  104. <version>1.6.10</version>
  105. <scope>compile</scope>
  106. <optional>true</optional>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.security</groupId>
  110. <artifactId>spring-security-aspects</artifactId>
  111. <version>3.2.7.CI-SNAPSHOT</version>
  112. <scope>compile</scope>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework.security</groupId>
  117. <artifactId>spring-security-ldap</artifactId>
  118. <version>3.2.7.CI-SNAPSHOT</version>
  119. <scope>compile</scope>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.security</groupId>
  124. <artifactId>spring-security-openid</artifactId>
  125. <version>3.2.7.CI-SNAPSHOT</version>
  126. <scope>compile</scope>
  127. <optional>true</optional>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.security</groupId>
  131. <artifactId>spring-security-web</artifactId>
  132. <version>3.2.7.CI-SNAPSHOT</version>
  133. <scope>compile</scope>
  134. <optional>true</optional>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-jdbc</artifactId>
  139. <version>3.2.13.RELEASE</version>
  140. <scope>compile</scope>
  141. <optional>true</optional>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework</groupId>
  145. <artifactId>spring-tx</artifactId>
  146. <version>3.2.13.RELEASE</version>
  147. <scope>compile</scope>
  148. <optional>true</optional>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework</groupId>
  152. <artifactId>spring-web</artifactId>
  153. <version>3.2.13.RELEASE</version>
  154. <scope>compile</scope>
  155. <optional>true</optional>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework</groupId>
  159. <artifactId>spring-webmvc</artifactId>
  160. <version>3.2.13.RELEASE</version>
  161. <scope>compile</scope>
  162. <optional>true</optional>
  163. </dependency>
  164. <dependency>
  165. <groupId>javax.servlet</groupId>
  166. <artifactId>javax.servlet-api</artifactId>
  167. <version>3.0.1</version>
  168. <scope>provided</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>cglib</groupId>
  172. <artifactId>cglib-nodep</artifactId>
  173. <version>2.2</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>ch.qos.logback</groupId>
  178. <artifactId>logback-classic</artifactId>
  179. <version>0.9.29</version>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>javax.annotation</groupId>
  184. <artifactId>jsr250-api</artifactId>
  185. <version>1.0</version>
  186. <scope>test</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>junit</groupId>
  190. <artifactId>junit</artifactId>
  191. <version>4.11</version>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>ldapsdk</groupId>
  196. <artifactId>ldapsdk</artifactId>
  197. <version>4.1</version>
  198. <scope>test</scope>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.directory.server</groupId>
  202. <artifactId>apacheds-core</artifactId>
  203. <version>1.5.5</version>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.apache.directory.server</groupId>
  208. <artifactId>apacheds-core-entry</artifactId>
  209. <version>1.5.5</version>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.apache.directory.server</groupId>
  214. <artifactId>apacheds-protocol-ldap</artifactId>
  215. <version>1.5.5</version>
  216. <scope>test</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.apache.directory.server</groupId>
  220. <artifactId>apacheds-protocol-shared</artifactId>
  221. <version>1.5.5</version>
  222. <scope>test</scope>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.directory.server</groupId>
  226. <artifactId>apacheds-server-jndi</artifactId>
  227. <version>1.5.5</version>
  228. <scope>test</scope>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.apache.directory.shared</groupId>
  232. <artifactId>shared-ldap</artifactId>
  233. <version>0.9.15</version>
  234. <scope>test</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.codehaus.groovy</groupId>
  238. <artifactId>groovy-all</artifactId>
  239. <version>2.0.5</version>
  240. <scope>test</scope>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.easytesting</groupId>
  244. <artifactId>fest-assert</artifactId>
  245. <version>1.4</version>
  246. <scope>test</scope>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.eclipse.persistence</groupId>
  250. <artifactId>javax.persistence</artifactId>
  251. <version>2.0.5</version>
  252. <scope>test</scope>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.hibernate</groupId>
  256. <artifactId>hibernate-entitymanager</artifactId>
  257. <version>4.1.0.Final</version>
  258. <scope>test</scope>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.hibernate</groupId>
  262. <artifactId>hibernate-entitymanager</artifactId>
  263. <version>3.6.10.Final</version>
  264. <scope>test</scope>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.hsqldb</groupId>
  268. <artifactId>hsqldb</artifactId>
  269. <version>2.2.8</version>
  270. <scope>test</scope>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.hsqldb</groupId>
  274. <artifactId>hsqldb</artifactId>
  275. <version>2.3.1</version>
  276. <scope>test</scope>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.mockito</groupId>
  280. <artifactId>mockito-core</artifactId>
  281. <version>1.9.5</version>
  282. <scope>test</scope>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.openid4java</groupId>
  286. <artifactId>openid4java-nodeps</artifactId>
  287. <version>0.9.6</version>
  288. <scope>test</scope>
  289. <exclusions>
  290. <exclusion>
  291. <artifactId>guice</artifactId>
  292. <groupId>com.google.code.guice</groupId>
  293. </exclusion>
  294. </exclusions>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.powermock</groupId>
  298. <artifactId>powermock-api-mockito</artifactId>
  299. <version>1.6.1</version>
  300. <scope>test</scope>
  301. <exclusions>
  302. <exclusion>
  303. <artifactId>mockito-all</artifactId>
  304. <groupId>org.mockito</groupId>
  305. </exclusion>
  306. </exclusions>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.powermock</groupId>
  310. <artifactId>powermock-api-support</artifactId>
  311. <version>1.6.1</version>
  312. <scope>test</scope>
  313. </dependency>
  314. <dependency>
  315. <groupId>org.powermock</groupId>
  316. <artifactId>powermock-core</artifactId>
  317. <version>1.6.1</version>
  318. <scope>test</scope>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.powermock</groupId>
  322. <artifactId>powermock-module-junit4</artifactId>
  323. <version>1.6.1</version>
  324. <scope>test</scope>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.powermock</groupId>
  328. <artifactId>powermock-module-junit4-common</artifactId>
  329. <version>1.6.1</version>
  330. <scope>test</scope>
  331. </dependency>
  332. <dependency>
  333. <groupId>org.powermock</groupId>
  334. <artifactId>powermock-reflect</artifactId>
  335. <version>1.6.1</version>
  336. <scope>test</scope>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.slf4j</groupId>
  340. <artifactId>jcl-over-slf4j</artifactId>
  341. <version>1.7.5</version>
  342. <scope>test</scope>
  343. </dependency>
  344. <dependency>
  345. <groupId>org.spockframework</groupId>
  346. <artifactId>spock-core</artifactId>
  347. <version>0.7-groovy-2.0</version>
  348. <scope>test</scope>
  349. <exclusions>
  350. <exclusion>
  351. <artifactId>junit-dep</artifactId>
  352. <groupId>junit</groupId>
  353. </exclusion>
  354. </exclusions>
  355. </dependency>
  356. <dependency>
  357. <groupId>org.spockframework</groupId>
  358. <artifactId>spock-spring</artifactId>
  359. <version>0.7-groovy-2.0</version>
  360. <scope>test</scope>
  361. <exclusions>
  362. <exclusion>
  363. <artifactId>junit-dep</artifactId>
  364. <groupId>junit</groupId>
  365. </exclusion>
  366. </exclusions>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.springframework.data</groupId>
  370. <artifactId>spring-data-jpa</artifactId>
  371. <version>1.4.1.RELEASE</version>
  372. <scope>test</scope>
  373. <exclusions>
  374. <exclusion>
  375. <artifactId>aspectjrt</artifactId>
  376. <groupId>org.aspectj</groupId>
  377. </exclusion>
  378. </exclusions>
  379. </dependency>
  380. <dependency>
  381. <groupId>org.springframework.ldap</groupId>
  382. <artifactId>spring-ldap-core</artifactId>
  383. <version>1.3.2.RELEASE</version>
  384. <scope>test</scope>
  385. </dependency>
  386. <dependency>
  387. <groupId>org.springframework.security</groupId>
  388. <artifactId>spring-security-cas</artifactId>
  389. <version>3.2.7.CI-SNAPSHOT</version>
  390. <scope>test</scope>
  391. </dependency>
  392. <dependency>
  393. <groupId>org.springframework</groupId>
  394. <artifactId>spring-expression</artifactId>
  395. <version>3.2.13.RELEASE</version>
  396. <scope>test</scope>
  397. </dependency>
  398. <dependency>
  399. <groupId>org.springframework</groupId>
  400. <artifactId>spring-orm</artifactId>
  401. <version>3.2.13.RELEASE</version>
  402. <scope>test</scope>
  403. </dependency>
  404. <dependency>
  405. <groupId>org.springframework</groupId>
  406. <artifactId>spring-test</artifactId>
  407. <version>3.2.13.RELEASE</version>
  408. <scope>test</scope>
  409. </dependency>
  410. </dependencies>
  411. </project>