pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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-web</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <name>spring-security-web</name>
  8. <description>spring-security-web</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@pivotal.io</email>
  26. </developer>
  27. <developer>
  28. <id>jgrandja</id>
  29. <name>Joe Grandja</name>
  30. <email>jgrandja@pivotal.io</email>
  31. </developer>
  32. </developers>
  33. <scm>
  34. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  35. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  36. <url>https://github.com/spring-projects/spring-security</url>
  37. </scm>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-framework-bom</artifactId>
  43. <version>4.3.5.RELEASE</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>aopalliance</groupId>
  52. <artifactId>aopalliance</artifactId>
  53. <version>1.0</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.security</groupId>
  58. <artifactId>spring-security-core</artifactId>
  59. <version>5.0.0.BUILD-SNAPSHOT</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-beans</artifactId>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-context</artifactId>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-core</artifactId>
  75. <scope>compile</scope>
  76. <exclusions>
  77. <exclusion>
  78. <artifactId>commons-logging</artifactId>
  79. <groupId>commons-logging</groupId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-expression</artifactId>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-web</artifactId>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.fasterxml.jackson.core</groupId>
  95. <artifactId>jackson-databind</artifactId>
  96. <version>2.8.4</version>
  97. <scope>compile</scope>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-logging</groupId>
  102. <artifactId>commons-logging</artifactId>
  103. <version>1.2</version>
  104. <scope>compile</scope>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-jdbc</artifactId>
  110. <scope>compile</scope>
  111. <optional>true</optional>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework</groupId>
  115. <artifactId>spring-tx</artifactId>
  116. <scope>compile</scope>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework</groupId>
  121. <artifactId>spring-webmvc</artifactId>
  122. <scope>compile</scope>
  123. <optional>true</optional>
  124. </dependency>
  125. <dependency>
  126. <groupId>javax.servlet</groupId>
  127. <artifactId>javax.servlet-api</artifactId>
  128. <version>3.1.0</version>
  129. <scope>provided</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>ch.qos.logback</groupId>
  133. <artifactId>logback-classic</artifactId>
  134. <version>1.1.2</version>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-codec</groupId>
  139. <artifactId>commons-codec</artifactId>
  140. <version>1.3</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>junit</groupId>
  145. <artifactId>junit</artifactId>
  146. <version>4.12</version>
  147. <scope>test</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.assertj</groupId>
  151. <artifactId>assertj-core</artifactId>
  152. <version>3.6.2</version>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.codehaus.groovy</groupId>
  157. <artifactId>groovy-all</artifactId>
  158. <version>2.4.4</version>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.hsqldb</groupId>
  163. <artifactId>hsqldb</artifactId>
  164. <version>2.3.2</version>
  165. <scope>test</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.mockito</groupId>
  169. <artifactId>mockito-core</artifactId>
  170. <version>1.10.19</version>
  171. <scope>test</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.powermock</groupId>
  175. <artifactId>powermock-api-mockito</artifactId>
  176. <version>1.6.5</version>
  177. <scope>test</scope>
  178. <exclusions>
  179. <exclusion>
  180. <artifactId>mockito-all</artifactId>
  181. <groupId>org.mockito</groupId>
  182. </exclusion>
  183. </exclusions>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.powermock</groupId>
  187. <artifactId>powermock-api-support</artifactId>
  188. <version>1.6.5</version>
  189. <scope>test</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.powermock</groupId>
  193. <artifactId>powermock-core</artifactId>
  194. <version>1.6.5</version>
  195. <scope>test</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.powermock</groupId>
  199. <artifactId>powermock-module-junit4</artifactId>
  200. <version>1.6.5</version>
  201. <scope>test</scope>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.powermock</groupId>
  205. <artifactId>powermock-module-junit4-common</artifactId>
  206. <version>1.6.5</version>
  207. <scope>test</scope>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.powermock</groupId>
  211. <artifactId>powermock-reflect</artifactId>
  212. <version>1.6.5</version>
  213. <scope>test</scope>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.skyscreamer</groupId>
  217. <artifactId>jsonassert</artifactId>
  218. <version>1.3.0</version>
  219. <scope>test</scope>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.slf4j</groupId>
  223. <artifactId>jcl-over-slf4j</artifactId>
  224. <version>1.7.7</version>
  225. <scope>test</scope>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.spockframework</groupId>
  229. <artifactId>spock-core</artifactId>
  230. <version>0.7-groovy-2.0</version>
  231. <scope>test</scope>
  232. <exclusions>
  233. <exclusion>
  234. <artifactId>junit-dep</artifactId>
  235. <groupId>junit</groupId>
  236. </exclusion>
  237. </exclusions>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.spockframework</groupId>
  241. <artifactId>spock-spring</artifactId>
  242. <version>0.7-groovy-2.0</version>
  243. <scope>test</scope>
  244. <exclusions>
  245. <exclusion>
  246. <artifactId>junit-dep</artifactId>
  247. <groupId>junit</groupId>
  248. </exclusion>
  249. </exclusions>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.springframework</groupId>
  253. <artifactId>spring-test</artifactId>
  254. <scope>test</scope>
  255. </dependency>
  256. </dependencies>
  257. <repositories>
  258. <repository>
  259. <id>spring-snapshot</id>
  260. <url>https://repo.spring.io/snapshot</url>
  261. </repository>
  262. </repositories>
  263. <build>
  264. <plugins>
  265. <plugin>
  266. <artifactId>maven-compiler-plugin</artifactId>
  267. <configuration>
  268. <source>1.8</source>
  269. <target>1.8</target>
  270. </configuration>
  271. </plugin>
  272. </plugins>
  273. </build>
  274. </project>