pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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.1.0.RC1</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. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-framework-bom</artifactId>
  38. <version>4.2.5.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>commons-logging</groupId>
  84. <artifactId>commons-logging</artifactId>
  85. <version>1.2</version>
  86. <scope>compile</scope>
  87. <optional>true</optional>
  88. </dependency>
  89. <dependency>
  90. <groupId>javax.annotation</groupId>
  91. <artifactId>jsr250-api</artifactId>
  92. <version>1.0</version>
  93. <scope>compile</scope>
  94. <optional>true</optional>
  95. </dependency>
  96. <dependency>
  97. <groupId>net.sf.ehcache</groupId>
  98. <artifactId>ehcache</artifactId>
  99. <version>2.9.0</version>
  100. <scope>compile</scope>
  101. <optional>true</optional>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.aspectj</groupId>
  105. <artifactId>aspectjrt</artifactId>
  106. <version>1.8.4</version>
  107. <scope>compile</scope>
  108. <optional>true</optional>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework</groupId>
  112. <artifactId>spring-jdbc</artifactId>
  113. <scope>compile</scope>
  114. <optional>true</optional>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-tx</artifactId>
  119. <scope>compile</scope>
  120. <optional>true</optional>
  121. </dependency>
  122. <dependency>
  123. <groupId>ch.qos.logback</groupId>
  124. <artifactId>logback-classic</artifactId>
  125. <version>1.1.2</version>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-collections</groupId>
  130. <artifactId>commons-collections</artifactId>
  131. <version>3.2.2</version>
  132. <scope>test</scope>
  133. <exclusions>
  134. <exclusion>
  135. <artifactId>mockito-all</artifactId>
  136. <groupId>org.mockito</groupId>
  137. </exclusion>
  138. </exclusions>
  139. </dependency>
  140. <dependency>
  141. <groupId>junit</groupId>
  142. <artifactId>junit</artifactId>
  143. <version>4.12</version>
  144. <scope>test</scope>
  145. <exclusions>
  146. <exclusion>
  147. <artifactId>mockito-all</artifactId>
  148. <groupId>org.mockito</groupId>
  149. </exclusion>
  150. </exclusions>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.assertj</groupId>
  154. <artifactId>assertj-core</artifactId>
  155. <version>2.2.0</version>
  156. <scope>test</scope>
  157. <exclusions>
  158. <exclusion>
  159. <artifactId>mockito-all</artifactId>
  160. <groupId>org.mockito</groupId>
  161. </exclusion>
  162. </exclusions>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.hsqldb</groupId>
  166. <artifactId>hsqldb</artifactId>
  167. <version>2.3.2</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.mockito</groupId>
  172. <artifactId>mockito-core</artifactId>
  173. <version>1.10.19</version>
  174. <scope>test</scope>
  175. <exclusions>
  176. <exclusion>
  177. <artifactId>mockito-all</artifactId>
  178. <groupId>org.mockito</groupId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.powermock</groupId>
  184. <artifactId>powermock-api-mockito</artifactId>
  185. <version>1.6.2</version>
  186. <scope>test</scope>
  187. <exclusions>
  188. <exclusion>
  189. <artifactId>mockito-all</artifactId>
  190. <groupId>org.mockito</groupId>
  191. </exclusion>
  192. </exclusions>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.powermock</groupId>
  196. <artifactId>powermock-api-support</artifactId>
  197. <version>1.6.2</version>
  198. <scope>test</scope>
  199. <exclusions>
  200. <exclusion>
  201. <artifactId>mockito-all</artifactId>
  202. <groupId>org.mockito</groupId>
  203. </exclusion>
  204. </exclusions>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.powermock</groupId>
  208. <artifactId>powermock-core</artifactId>
  209. <version>1.6.2</version>
  210. <scope>test</scope>
  211. <exclusions>
  212. <exclusion>
  213. <artifactId>mockito-all</artifactId>
  214. <groupId>org.mockito</groupId>
  215. </exclusion>
  216. </exclusions>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.powermock</groupId>
  220. <artifactId>powermock-module-junit4</artifactId>
  221. <version>1.6.2</version>
  222. <scope>test</scope>
  223. <exclusions>
  224. <exclusion>
  225. <artifactId>mockito-all</artifactId>
  226. <groupId>org.mockito</groupId>
  227. </exclusion>
  228. </exclusions>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.powermock</groupId>
  232. <artifactId>powermock-module-junit4-common</artifactId>
  233. <version>1.6.2</version>
  234. <scope>test</scope>
  235. <exclusions>
  236. <exclusion>
  237. <artifactId>mockito-all</artifactId>
  238. <groupId>org.mockito</groupId>
  239. </exclusion>
  240. </exclusions>
  241. </dependency>
  242. <dependency>
  243. <groupId>org.powermock</groupId>
  244. <artifactId>powermock-reflect</artifactId>
  245. <version>1.6.2</version>
  246. <scope>test</scope>
  247. <exclusions>
  248. <exclusion>
  249. <artifactId>mockito-all</artifactId>
  250. <groupId>org.mockito</groupId>
  251. </exclusion>
  252. </exclusions>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.slf4j</groupId>
  256. <artifactId>jcl-over-slf4j</artifactId>
  257. <version>1.7.7</version>
  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. <dependency>
  267. <groupId>org.springframework</groupId>
  268. <artifactId>spring-test</artifactId>
  269. <scope>test</scope>
  270. <exclusions>
  271. <exclusion>
  272. <artifactId>mockito-all</artifactId>
  273. <groupId>org.mockito</groupId>
  274. </exclusion>
  275. </exclusions>
  276. </dependency>
  277. </dependencies>
  278. <repositories>
  279. <repository>
  280. <id>spring-milestone</id>
  281. <url>https://repo.spring.io/milestone</url>
  282. </repository>
  283. </repositories>
  284. <build>
  285. <plugins>
  286. <plugin>
  287. <artifactId>maven-compiler-plugin</artifactId>
  288. <configuration>
  289. <source>1.7</source>
  290. <target>1.7</target>
  291. </configuration>
  292. </plugin>
  293. </plugins>
  294. </build>
  295. </project>