pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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-core</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <name>spring-security-core</name>
  8. <description>spring-security-core</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</groupId>
  42. <artifactId>spring-aop</artifactId>
  43. <scope>compile</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-beans</artifactId>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context</artifactId>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework</groupId>
  57. <artifactId>spring-core</artifactId>
  58. <scope>compile</scope>
  59. <exclusions>
  60. <exclusion>
  61. <artifactId>commons-logging</artifactId>
  62. <groupId>commons-logging</groupId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-expression</artifactId>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-logging</groupId>
  73. <artifactId>commons-logging</artifactId>
  74. <version>1.2</version>
  75. <scope>compile</scope>
  76. <optional>true</optional>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.annotation</groupId>
  80. <artifactId>jsr250-api</artifactId>
  81. <version>1.0</version>
  82. <scope>compile</scope>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.sf.ehcache</groupId>
  87. <artifactId>ehcache</artifactId>
  88. <version>2.9.0</version>
  89. <scope>compile</scope>
  90. <optional>true</optional>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.aspectj</groupId>
  94. <artifactId>aspectjrt</artifactId>
  95. <version>1.8.4</version>
  96. <scope>compile</scope>
  97. <optional>true</optional>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-jdbc</artifactId>
  102. <scope>compile</scope>
  103. <optional>true</optional>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-tx</artifactId>
  108. <scope>compile</scope>
  109. <optional>true</optional>
  110. </dependency>
  111. <dependency>
  112. <groupId>ch.qos.logback</groupId>
  113. <artifactId>logback-classic</artifactId>
  114. <version>1.1.2</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-collections</groupId>
  119. <artifactId>commons-collections</artifactId>
  120. <version>3.2.1</version>
  121. <scope>test</scope>
  122. <exclusions>
  123. <exclusion>
  124. <artifactId>mockito-all</artifactId>
  125. <groupId>org.mockito</groupId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <dependency>
  130. <groupId>junit</groupId>
  131. <artifactId>junit</artifactId>
  132. <version>4.11</version>
  133. <scope>test</scope>
  134. <exclusions>
  135. <exclusion>
  136. <artifactId>mockito-all</artifactId>
  137. <groupId>org.mockito</groupId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.easytesting</groupId>
  143. <artifactId>fest-assert</artifactId>
  144. <version>1.4</version>
  145. <scope>test</scope>
  146. <exclusions>
  147. <exclusion>
  148. <artifactId>mockito-all</artifactId>
  149. <groupId>org.mockito</groupId>
  150. </exclusion>
  151. </exclusions>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.hsqldb</groupId>
  155. <artifactId>hsqldb</artifactId>
  156. <version>2.3.2</version>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.mockito</groupId>
  161. <artifactId>mockito-core</artifactId>
  162. <version>1.10.19</version>
  163. <scope>test</scope>
  164. <exclusions>
  165. <exclusion>
  166. <artifactId>mockito-all</artifactId>
  167. <groupId>org.mockito</groupId>
  168. </exclusion>
  169. </exclusions>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.powermock</groupId>
  173. <artifactId>powermock-api-mockito</artifactId>
  174. <version>1.6.2</version>
  175. <scope>test</scope>
  176. <exclusions>
  177. <exclusion>
  178. <artifactId>mockito-all</artifactId>
  179. <groupId>org.mockito</groupId>
  180. </exclusion>
  181. </exclusions>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.powermock</groupId>
  185. <artifactId>powermock-api-support</artifactId>
  186. <version>1.6.2</version>
  187. <scope>test</scope>
  188. <exclusions>
  189. <exclusion>
  190. <artifactId>mockito-all</artifactId>
  191. <groupId>org.mockito</groupId>
  192. </exclusion>
  193. </exclusions>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.powermock</groupId>
  197. <artifactId>powermock-core</artifactId>
  198. <version>1.6.2</version>
  199. <scope>test</scope>
  200. <exclusions>
  201. <exclusion>
  202. <artifactId>mockito-all</artifactId>
  203. <groupId>org.mockito</groupId>
  204. </exclusion>
  205. </exclusions>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.powermock</groupId>
  209. <artifactId>powermock-module-junit4</artifactId>
  210. <version>1.6.2</version>
  211. <scope>test</scope>
  212. <exclusions>
  213. <exclusion>
  214. <artifactId>mockito-all</artifactId>
  215. <groupId>org.mockito</groupId>
  216. </exclusion>
  217. </exclusions>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.powermock</groupId>
  221. <artifactId>powermock-module-junit4-common</artifactId>
  222. <version>1.6.2</version>
  223. <scope>test</scope>
  224. <exclusions>
  225. <exclusion>
  226. <artifactId>mockito-all</artifactId>
  227. <groupId>org.mockito</groupId>
  228. </exclusion>
  229. </exclusions>
  230. </dependency>
  231. <dependency>
  232. <groupId>org.powermock</groupId>
  233. <artifactId>powermock-reflect</artifactId>
  234. <version>1.6.2</version>
  235. <scope>test</scope>
  236. <exclusions>
  237. <exclusion>
  238. <artifactId>mockito-all</artifactId>
  239. <groupId>org.mockito</groupId>
  240. </exclusion>
  241. </exclusions>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.slf4j</groupId>
  245. <artifactId>jcl-over-slf4j</artifactId>
  246. <version>1.7.7</version>
  247. <scope>test</scope>
  248. <exclusions>
  249. <exclusion>
  250. <artifactId>mockito-all</artifactId>
  251. <groupId>org.mockito</groupId>
  252. </exclusion>
  253. </exclusions>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.springframework</groupId>
  257. <artifactId>spring-test</artifactId>
  258. <scope>test</scope>
  259. <exclusions>
  260. <exclusion>
  261. <artifactId>mockito-all</artifactId>
  262. <groupId>org.mockito</groupId>
  263. </exclusion>
  264. </exclusions>
  265. </dependency>
  266. </dependencies>
  267. <dependencyManagement>
  268. <dependencies>
  269. <dependency>
  270. <groupId>org.springframework</groupId>
  271. <artifactId>spring-framework-bom</artifactId>
  272. <version>4.2.5.RELEASE</version>
  273. <type>pom</type>
  274. <scope>import</scope>
  275. </dependency>
  276. </dependencies>
  277. </dependencyManagement>
  278. <build>
  279. <plugins>
  280. <plugin>
  281. <artifactId>maven-compiler-plugin</artifactId>
  282. <configuration>
  283. <source>1.7</source>
  284. <target>1.7</target>
  285. </configuration>
  286. </plugin>
  287. </plugins>
  288. </build>
  289. </project>