pom.xml 12 KB

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