pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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-web</artifactId>
  7. <version>3.2.4.CI-SNAPSHOT</version>
  8. <name>spring-security-web</name>
  9. <description>spring-security-web</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.4.CI-SNAPSHOT</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-beans</artifactId>
  67. <version>3.2.8.RELEASE</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-context</artifactId>
  73. <version>3.2.8.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-core</artifactId>
  79. <version>3.2.8.RELEASE</version>
  80. <scope>compile</scope>
  81. <exclusions>
  82. <exclusion>
  83. <artifactId>commons-logging</artifactId>
  84. <groupId>commons-logging</groupId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-expression</artifactId>
  91. <version>3.2.8.RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-web</artifactId>
  97. <version>3.2.8.RELEASE</version>
  98. <scope>compile</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-logging</groupId>
  102. <artifactId>commons-logging</artifactId>
  103. <version>1.1.1</version>
  104. <scope>compile</scope>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-jdbc</artifactId>
  110. <version>3.2.8.RELEASE</version>
  111. <scope>compile</scope>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework</groupId>
  116. <artifactId>spring-tx</artifactId>
  117. <version>3.2.8.RELEASE</version>
  118. <scope>compile</scope>
  119. <optional>true</optional>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework</groupId>
  123. <artifactId>spring-webmvc</artifactId>
  124. <version>3.2.8.RELEASE</version>
  125. <scope>compile</scope>
  126. <optional>true</optional>
  127. </dependency>
  128. <dependency>
  129. <groupId>javax.servlet</groupId>
  130. <artifactId>javax.servlet-api</artifactId>
  131. <version>3.0.1</version>
  132. <scope>provided</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>ch.qos.logback</groupId>
  136. <artifactId>logback-classic</artifactId>
  137. <version>0.9.29</version>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-codec</groupId>
  142. <artifactId>commons-codec</artifactId>
  143. <version>1.3</version>
  144. <scope>test</scope>
  145. <exclusions>
  146. <exclusion>
  147. <artifactId>mockito-all</artifactId>
  148. <groupId>org.mockito</groupId>
  149. </exclusion>
  150. <exclusion>
  151. <artifactId>junit-dep</artifactId>
  152. <groupId>junit</groupId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <dependency>
  157. <groupId>junit</groupId>
  158. <artifactId>junit</artifactId>
  159. <version>4.11</version>
  160. <scope>test</scope>
  161. <exclusions>
  162. <exclusion>
  163. <artifactId>mockito-all</artifactId>
  164. <groupId>org.mockito</groupId>
  165. </exclusion>
  166. <exclusion>
  167. <artifactId>junit-dep</artifactId>
  168. <groupId>junit</groupId>
  169. </exclusion>
  170. </exclusions>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.codehaus.groovy</groupId>
  174. <artifactId>groovy-all</artifactId>
  175. <version>2.0.5</version>
  176. <scope>test</scope>
  177. <exclusions>
  178. <exclusion>
  179. <artifactId>mockito-all</artifactId>
  180. <groupId>org.mockito</groupId>
  181. </exclusion>
  182. <exclusion>
  183. <artifactId>junit-dep</artifactId>
  184. <groupId>junit</groupId>
  185. </exclusion>
  186. </exclusions>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.easytesting</groupId>
  190. <artifactId>fest-assert</artifactId>
  191. <version>1.4</version>
  192. <scope>test</scope>
  193. <exclusions>
  194. <exclusion>
  195. <artifactId>mockito-all</artifactId>
  196. <groupId>org.mockito</groupId>
  197. </exclusion>
  198. <exclusion>
  199. <artifactId>junit-dep</artifactId>
  200. <groupId>junit</groupId>
  201. </exclusion>
  202. </exclusions>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.hsqldb</groupId>
  206. <artifactId>hsqldb</artifactId>
  207. <version>2.3.1</version>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.mockito</groupId>
  212. <artifactId>mockito-core</artifactId>
  213. <version>1.9.5</version>
  214. <scope>test</scope>
  215. <exclusions>
  216. <exclusion>
  217. <artifactId>mockito-all</artifactId>
  218. <groupId>org.mockito</groupId>
  219. </exclusion>
  220. <exclusion>
  221. <artifactId>junit-dep</artifactId>
  222. <groupId>junit</groupId>
  223. </exclusion>
  224. </exclusions>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.powermock</groupId>
  228. <artifactId>powermock-api-mockito</artifactId>
  229. <version>1.5.1</version>
  230. <scope>test</scope>
  231. <exclusions>
  232. <exclusion>
  233. <artifactId>mockito-all</artifactId>
  234. <groupId>org.mockito</groupId>
  235. </exclusion>
  236. <exclusion>
  237. <artifactId>junit-dep</artifactId>
  238. <groupId>junit</groupId>
  239. </exclusion>
  240. </exclusions>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.powermock</groupId>
  244. <artifactId>powermock-api-support</artifactId>
  245. <version>1.5.1</version>
  246. <scope>test</scope>
  247. <exclusions>
  248. <exclusion>
  249. <artifactId>mockito-all</artifactId>
  250. <groupId>org.mockito</groupId>
  251. </exclusion>
  252. <exclusion>
  253. <artifactId>junit-dep</artifactId>
  254. <groupId>junit</groupId>
  255. </exclusion>
  256. </exclusions>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.powermock</groupId>
  260. <artifactId>powermock-core</artifactId>
  261. <version>1.5.1</version>
  262. <scope>test</scope>
  263. <exclusions>
  264. <exclusion>
  265. <artifactId>mockito-all</artifactId>
  266. <groupId>org.mockito</groupId>
  267. </exclusion>
  268. <exclusion>
  269. <artifactId>junit-dep</artifactId>
  270. <groupId>junit</groupId>
  271. </exclusion>
  272. </exclusions>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.powermock</groupId>
  276. <artifactId>powermock-module-junit4</artifactId>
  277. <version>1.5.1</version>
  278. <scope>test</scope>
  279. <exclusions>
  280. <exclusion>
  281. <artifactId>mockito-all</artifactId>
  282. <groupId>org.mockito</groupId>
  283. </exclusion>
  284. <exclusion>
  285. <artifactId>junit-dep</artifactId>
  286. <groupId>junit</groupId>
  287. </exclusion>
  288. </exclusions>
  289. </dependency>
  290. <dependency>
  291. <groupId>org.powermock</groupId>
  292. <artifactId>powermock-module-junit4-common</artifactId>
  293. <version>1.5.1</version>
  294. <scope>test</scope>
  295. <exclusions>
  296. <exclusion>
  297. <artifactId>mockito-all</artifactId>
  298. <groupId>org.mockito</groupId>
  299. </exclusion>
  300. <exclusion>
  301. <artifactId>junit-dep</artifactId>
  302. <groupId>junit</groupId>
  303. </exclusion>
  304. </exclusions>
  305. </dependency>
  306. <dependency>
  307. <groupId>org.powermock</groupId>
  308. <artifactId>powermock-reflect</artifactId>
  309. <version>1.5.1</version>
  310. <scope>test</scope>
  311. <exclusions>
  312. <exclusion>
  313. <artifactId>mockito-all</artifactId>
  314. <groupId>org.mockito</groupId>
  315. </exclusion>
  316. <exclusion>
  317. <artifactId>junit-dep</artifactId>
  318. <groupId>junit</groupId>
  319. </exclusion>
  320. </exclusions>
  321. </dependency>
  322. <dependency>
  323. <groupId>org.slf4j</groupId>
  324. <artifactId>jcl-over-slf4j</artifactId>
  325. <version>1.7.5</version>
  326. <scope>test</scope>
  327. <exclusions>
  328. <exclusion>
  329. <artifactId>mockito-all</artifactId>
  330. <groupId>org.mockito</groupId>
  331. </exclusion>
  332. <exclusion>
  333. <artifactId>junit-dep</artifactId>
  334. <groupId>junit</groupId>
  335. </exclusion>
  336. </exclusions>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.spockframework</groupId>
  340. <artifactId>spock-core</artifactId>
  341. <version>0.7-groovy-2.0</version>
  342. <scope>test</scope>
  343. <exclusions>
  344. <exclusion>
  345. <artifactId>mockito-all</artifactId>
  346. <groupId>org.mockito</groupId>
  347. </exclusion>
  348. <exclusion>
  349. <artifactId>junit-dep</artifactId>
  350. <groupId>junit</groupId>
  351. </exclusion>
  352. </exclusions>
  353. </dependency>
  354. <dependency>
  355. <groupId>org.springframework</groupId>
  356. <artifactId>spring-test</artifactId>
  357. <version>3.2.8.RELEASE</version>
  358. <scope>test</scope>
  359. <exclusions>
  360. <exclusion>
  361. <artifactId>mockito-all</artifactId>
  362. <groupId>org.mockito</groupId>
  363. </exclusion>
  364. <exclusion>
  365. <artifactId>junit-dep</artifactId>
  366. <groupId>junit</groupId>
  367. </exclusion>
  368. </exclusions>
  369. </dependency>
  370. </dependencies>
  371. </project>