pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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.0.CI-SNAPSHOT</version>
  8. <name>spring-security-web</name>
  9. <description>spring-security-web</description>
  10. <url>http://springsource.org/spring-security</url>
  11. <organization>
  12. <name>SpringSource</name>
  13. <url>http://springsource.org/</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@vmware.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/SpringSource/spring-security</connection>
  31. <developerConnection>scm:git:git://github.com/SpringSource/spring-security</developerConnection>
  32. <url>https://github.com/SpringSource/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>http://repo.springsource.org/libs-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.0.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.4.RELEASE</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-context</artifactId>
  73. <version>3.2.4.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-core</artifactId>
  79. <version>3.2.4.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.4.RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-web</artifactId>
  97. <version>3.2.4.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.4.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.4.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.4.RELEASE</version>
  125. <scope>compile</scope>
  126. <optional>true</optional>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.tomcat</groupId>
  130. <artifactId>tomcat-servlet-api</artifactId>
  131. <version>7.0.33</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. </dependency>
  146. <dependency>
  147. <groupId>hsqldb</groupId>
  148. <artifactId>hsqldb</artifactId>
  149. <version>1.8.0.10</version>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>junit</groupId>
  154. <artifactId>junit</artifactId>
  155. <version>4.10</version>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.codehaus.groovy</groupId>
  160. <artifactId>groovy</artifactId>
  161. <version>2.0.5</version>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.easytesting</groupId>
  166. <artifactId>fest-assert</artifactId>
  167. <version>1.4</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.mockito</groupId>
  172. <artifactId>mockito-core</artifactId>
  173. <version>1.9.5</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.powermock</groupId>
  178. <artifactId>powermock-api-mockito</artifactId>
  179. <version>1.5.1</version>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.powermock</groupId>
  184. <artifactId>powermock-api-support</artifactId>
  185. <version>1.5.1</version>
  186. <scope>test</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.powermock</groupId>
  190. <artifactId>powermock-core</artifactId>
  191. <version>1.5.1</version>
  192. <scope>test</scope>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.powermock</groupId>
  196. <artifactId>powermock-module-junit4</artifactId>
  197. <version>1.5.1</version>
  198. <scope>test</scope>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.powermock</groupId>
  202. <artifactId>powermock-module-junit4-common</artifactId>
  203. <version>1.5.1</version>
  204. <scope>test</scope>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.powermock</groupId>
  208. <artifactId>powermock-reflect</artifactId>
  209. <version>1.5.1</version>
  210. <scope>test</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.slf4j</groupId>
  214. <artifactId>jcl-over-slf4j</artifactId>
  215. <version>1.7.5</version>
  216. <scope>test</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.spockframework</groupId>
  220. <artifactId>spock-core</artifactId>
  221. <version>0.7-groovy-2.0</version>
  222. <scope>test</scope>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.springframework</groupId>
  226. <artifactId>spring-test</artifactId>
  227. <version>3.2.4.RELEASE</version>
  228. <scope>test</scope>
  229. </dependency>
  230. </dependencies>
  231. </project>