pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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.2.13.RELEASE</version>
  7. <name>spring-security-core</name>
  8. <description>spring-security-core</description>
  9. <url>https://spring.io/spring-security</url>
  10. <organization>
  11. <name>spring.io</name>
  12. <url>https://spring.io/</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>https://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. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-framework-bom</artifactId>
  38. <version>4.3.23.RELEASE</version>
  39. <type>pom</type>
  40. <scope>import</scope>
  41. </dependency>
  42. </dependencies>
  43. </dependencyManagement>
  44. <dependencies>
  45. <dependency>
  46. <groupId>aopalliance</groupId>
  47. <artifactId>aopalliance</artifactId>
  48. <version>1.0</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-aop</artifactId>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-beans</artifactId>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-context</artifactId>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-core</artifactId>
  69. <scope>compile</scope>
  70. <exclusions>
  71. <exclusion>
  72. <artifactId>commons-logging</artifactId>
  73. <groupId>commons-logging</groupId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-expression</artifactId>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.fasterxml.jackson.core</groupId>
  84. <artifactId>jackson-databind</artifactId>
  85. <version>2.8.11.3</version>
  86. <scope>compile</scope>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-logging</groupId>
  91. <artifactId>commons-logging</artifactId>
  92. <version>1.2</version>
  93. <scope>compile</scope>
  94. <optional>true</optional>
  95. </dependency>
  96. <dependency>
  97. <groupId>javax.annotation</groupId>
  98. <artifactId>jsr250-api</artifactId>
  99. <version>1.0</version>
  100. <scope>compile</scope>
  101. <optional>true</optional>
  102. </dependency>
  103. <dependency>
  104. <groupId>net.sf.ehcache</groupId>
  105. <artifactId>ehcache</artifactId>
  106. <version>2.10.6</version>
  107. <scope>compile</scope>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.aspectj</groupId>
  112. <artifactId>aspectjrt</artifactId>
  113. <version>1.8.14</version>
  114. <scope>compile</scope>
  115. <optional>true</optional>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-jdbc</artifactId>
  120. <scope>compile</scope>
  121. <optional>true</optional>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework</groupId>
  125. <artifactId>spring-tx</artifactId>
  126. <scope>compile</scope>
  127. <optional>true</optional>
  128. </dependency>
  129. <dependency>
  130. <groupId>ch.qos.logback</groupId>
  131. <artifactId>logback-classic</artifactId>
  132. <version>1.1.11</version>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-collections</groupId>
  137. <artifactId>commons-collections</artifactId>
  138. <version>3.2.2</version>
  139. <scope>test</scope>
  140. <exclusions>
  141. <exclusion>
  142. <artifactId>mockito-all</artifactId>
  143. <groupId>org.mockito</groupId>
  144. </exclusion>
  145. </exclusions>
  146. </dependency>
  147. <dependency>
  148. <groupId>junit</groupId>
  149. <artifactId>junit</artifactId>
  150. <version>4.12</version>
  151. <scope>test</scope>
  152. <exclusions>
  153. <exclusion>
  154. <artifactId>mockito-all</artifactId>
  155. <groupId>org.mockito</groupId>
  156. </exclusion>
  157. </exclusions>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.assertj</groupId>
  161. <artifactId>assertj-core</artifactId>
  162. <version>2.2.0</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.hsqldb</groupId>
  173. <artifactId>hsqldb</artifactId>
  174. <version>2.3.6</version>
  175. <scope>test</scope>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.mockito</groupId>
  179. <artifactId>mockito-core</artifactId>
  180. <version>1.10.19</version>
  181. <scope>test</scope>
  182. <exclusions>
  183. <exclusion>
  184. <artifactId>mockito-all</artifactId>
  185. <groupId>org.mockito</groupId>
  186. </exclusion>
  187. </exclusions>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.powermock</groupId>
  191. <artifactId>powermock-api-mockito</artifactId>
  192. <version>1.6.5</version>
  193. <scope>test</scope>
  194. <exclusions>
  195. <exclusion>
  196. <artifactId>mockito-all</artifactId>
  197. <groupId>org.mockito</groupId>
  198. </exclusion>
  199. </exclusions>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.powermock</groupId>
  203. <artifactId>powermock-api-support</artifactId>
  204. <version>1.6.5</version>
  205. <scope>test</scope>
  206. <exclusions>
  207. <exclusion>
  208. <artifactId>mockito-all</artifactId>
  209. <groupId>org.mockito</groupId>
  210. </exclusion>
  211. </exclusions>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.powermock</groupId>
  215. <artifactId>powermock-core</artifactId>
  216. <version>1.6.5</version>
  217. <scope>test</scope>
  218. <exclusions>
  219. <exclusion>
  220. <artifactId>mockito-all</artifactId>
  221. <groupId>org.mockito</groupId>
  222. </exclusion>
  223. </exclusions>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.powermock</groupId>
  227. <artifactId>powermock-module-junit4</artifactId>
  228. <version>1.6.5</version>
  229. <scope>test</scope>
  230. <exclusions>
  231. <exclusion>
  232. <artifactId>mockito-all</artifactId>
  233. <groupId>org.mockito</groupId>
  234. </exclusion>
  235. </exclusions>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.powermock</groupId>
  239. <artifactId>powermock-module-junit4-common</artifactId>
  240. <version>1.6.5</version>
  241. <scope>test</scope>
  242. <exclusions>
  243. <exclusion>
  244. <artifactId>mockito-all</artifactId>
  245. <groupId>org.mockito</groupId>
  246. </exclusion>
  247. </exclusions>
  248. </dependency>
  249. <dependency>
  250. <groupId>org.powermock</groupId>
  251. <artifactId>powermock-reflect</artifactId>
  252. <version>1.6.5</version>
  253. <scope>test</scope>
  254. <exclusions>
  255. <exclusion>
  256. <artifactId>mockito-all</artifactId>
  257. <groupId>org.mockito</groupId>
  258. </exclusion>
  259. </exclusions>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.skyscreamer</groupId>
  263. <artifactId>jsonassert</artifactId>
  264. <version>1.4.0</version>
  265. <scope>test</scope>
  266. <exclusions>
  267. <exclusion>
  268. <artifactId>mockito-all</artifactId>
  269. <groupId>org.mockito</groupId>
  270. </exclusion>
  271. </exclusions>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.slf4j</groupId>
  275. <artifactId>jcl-over-slf4j</artifactId>
  276. <version>1.7.25</version>
  277. <scope>test</scope>
  278. <exclusions>
  279. <exclusion>
  280. <artifactId>mockito-all</artifactId>
  281. <groupId>org.mockito</groupId>
  282. </exclusion>
  283. </exclusions>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.springframework</groupId>
  287. <artifactId>spring-test</artifactId>
  288. <scope>test</scope>
  289. <exclusions>
  290. <exclusion>
  291. <artifactId>mockito-all</artifactId>
  292. <groupId>org.mockito</groupId>
  293. </exclusion>
  294. </exclusions>
  295. </dependency>
  296. </dependencies>
  297. <build>
  298. <plugins>
  299. <plugin>
  300. <artifactId>maven-compiler-plugin</artifactId>
  301. <configuration>
  302. <source>1.7</source>
  303. <target>1.7</target>
  304. </configuration>
  305. </plugin>
  306. </plugins>
  307. </build>
  308. </project>