pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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.0.CI-SNAPSHOT</version>
  8. <name>spring-security-config</name>
  9. <description>spring-security-config</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>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.0.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.3.RELEASE</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-beans</artifactId>
  73. <version>3.2.3.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-context</artifactId>
  79. <version>3.2.3.RELEASE</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-core</artifactId>
  85. <version>3.2.3.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-ldap</artifactId>
  111. <version>3.2.0.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-openid</artifactId>
  118. <version>3.2.0.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-web</artifactId>
  125. <version>3.2.0.CI-SNAPSHOT</version>
  126. <scope>compile</scope>
  127. <optional>true</optional>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-web</artifactId>
  132. <version>3.2.3.RELEASE</version>
  133. <scope>compile</scope>
  134. <optional>true</optional>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-webmvc</artifactId>
  139. <version>3.2.3.RELEASE</version>
  140. <scope>compile</scope>
  141. <optional>true</optional>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.tomcat</groupId>
  145. <artifactId>tomcat-servlet-api</artifactId>
  146. <version>7.0.33</version>
  147. <scope>provided</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>cglib</groupId>
  151. <artifactId>cglib-nodep</artifactId>
  152. <version>2.2</version>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>ch.qos.logback</groupId>
  157. <artifactId>logback-classic</artifactId>
  158. <version>0.9.29</version>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>hsqldb</groupId>
  163. <artifactId>hsqldb</artifactId>
  164. <version>1.8.0.10</version>
  165. <scope>test</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>javax.annotation</groupId>
  169. <artifactId>jsr250-api</artifactId>
  170. <version>1.0</version>
  171. <scope>test</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>junit</groupId>
  175. <artifactId>junit</artifactId>
  176. <version>4.7</version>
  177. <scope>test</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>ldapsdk</groupId>
  181. <artifactId>ldapsdk</artifactId>
  182. <version>4.1</version>
  183. <scope>test</scope>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.directory.server</groupId>
  187. <artifactId>apacheds-core</artifactId>
  188. <version>1.5.5</version>
  189. <scope>test</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.apache.directory.server</groupId>
  193. <artifactId>apacheds-core-entry</artifactId>
  194. <version>1.5.5</version>
  195. <scope>test</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.directory.server</groupId>
  199. <artifactId>apacheds-protocol-ldap</artifactId>
  200. <version>1.5.5</version>
  201. <scope>test</scope>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.apache.directory.server</groupId>
  205. <artifactId>apacheds-protocol-shared</artifactId>
  206. <version>1.5.5</version>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.directory.server</groupId>
  211. <artifactId>apacheds-server-jndi</artifactId>
  212. <version>1.5.5</version>
  213. <scope>test</scope>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.directory.shared</groupId>
  217. <artifactId>shared-ldap</artifactId>
  218. <version>0.9.15</version>
  219. <scope>test</scope>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.codehaus.groovy</groupId>
  223. <artifactId>groovy-all</artifactId>
  224. <version>2.0.5</version>
  225. <scope>test</scope>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.easytesting</groupId>
  229. <artifactId>fest-assert</artifactId>
  230. <version>1.4</version>
  231. <scope>test</scope>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.hibernate.javax.persistence</groupId>
  235. <artifactId>hibernate-jpa-2.0-api</artifactId>
  236. <version>1.0.1.Final</version>
  237. <scope>test</scope>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.hibernate</groupId>
  241. <artifactId>hibernate-entitymanager</artifactId>
  242. <version>4.1.0.Final</version>
  243. <scope>test</scope>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.mockito</groupId>
  247. <artifactId>mockito-core</artifactId>
  248. <version>1.8.5</version>
  249. <scope>test</scope>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.openid4java</groupId>
  253. <artifactId>openid4java-nodeps</artifactId>
  254. <version>0.9.6</version>
  255. <scope>test</scope>
  256. <exclusions>
  257. <exclusion>
  258. <artifactId>guice</artifactId>
  259. <groupId>com.google.code.guice</groupId>
  260. </exclusion>
  261. </exclusions>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.powermock</groupId>
  265. <artifactId>powermock-api-mockito</artifactId>
  266. <version>1.4.12</version>
  267. <scope>test</scope>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.powermock</groupId>
  271. <artifactId>powermock-api-support</artifactId>
  272. <version>1.4.12</version>
  273. <scope>test</scope>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.powermock</groupId>
  277. <artifactId>powermock-core</artifactId>
  278. <version>1.4.12</version>
  279. <scope>test</scope>
  280. </dependency>
  281. <dependency>
  282. <groupId>org.powermock</groupId>
  283. <artifactId>powermock-module-junit4</artifactId>
  284. <version>1.4.12</version>
  285. <scope>test</scope>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.powermock</groupId>
  289. <artifactId>powermock-module-junit4-common</artifactId>
  290. <version>1.4.12</version>
  291. <scope>test</scope>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.powermock</groupId>
  295. <artifactId>powermock-reflect</artifactId>
  296. <version>1.4.12</version>
  297. <scope>test</scope>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.slf4j</groupId>
  301. <artifactId>jcl-over-slf4j</artifactId>
  302. <version>1.7.5</version>
  303. <scope>test</scope>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.spockframework</groupId>
  307. <artifactId>spock-core</artifactId>
  308. <version>0.7-groovy-2.0</version>
  309. <scope>test</scope>
  310. </dependency>
  311. <dependency>
  312. <groupId>org.springframework.ldap</groupId>
  313. <artifactId>spring-ldap-core</artifactId>
  314. <version>1.3.1.RELEASE</version>
  315. <scope>test</scope>
  316. </dependency>
  317. <dependency>
  318. <groupId>org.springframework.security</groupId>
  319. <artifactId>spring-security-cas</artifactId>
  320. <version>3.2.0.CI-SNAPSHOT</version>
  321. <scope>test</scope>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.springframework</groupId>
  325. <artifactId>spring-expression</artifactId>
  326. <version>3.2.3.RELEASE</version>
  327. <scope>test</scope>
  328. </dependency>
  329. <dependency>
  330. <groupId>org.springframework</groupId>
  331. <artifactId>spring-jdbc</artifactId>
  332. <version>3.2.3.RELEASE</version>
  333. <scope>test</scope>
  334. </dependency>
  335. <dependency>
  336. <groupId>org.springframework</groupId>
  337. <artifactId>spring-orm</artifactId>
  338. <version>3.2.3.RELEASE</version>
  339. <scope>test</scope>
  340. </dependency>
  341. <dependency>
  342. <groupId>org.springframework</groupId>
  343. <artifactId>spring-test</artifactId>
  344. <version>3.2.3.RELEASE</version>
  345. <scope>test</scope>
  346. </dependency>
  347. <dependency>
  348. <groupId>org.springframework</groupId>
  349. <artifactId>spring-tx</artifactId>
  350. <version>3.2.3.RELEASE</version>
  351. <scope>test</scope>
  352. </dependency>
  353. </dependencies>
  354. </project>