pom.xml 13 KB

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