pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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>itest-web</artifactId>
  7. <version>4.0.0.CI-SNAPSHOT</version>
  8. <name>itest-web</name>
  9. <description>itest-web</description>
  10. <url>http://spring.io/spring-security</url>
  11. <organization>
  12. <name>spring.io</name>
  13. <url>http://spring.io/</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@gopivotal.com</email>
  27. </developer>
  28. </developers>
  29. <scm>
  30. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  31. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  32. <url>https://github.com/spring-projects/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>https://repo.spring.io/snapshot</url>
  49. </repository>
  50. </repositories>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-context</artifactId>
  55. <version>4.0.2.RELEASE</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework</groupId>
  60. <artifactId>spring-core</artifactId>
  61. <version>4.0.2.RELEASE</version>
  62. <scope>compile</scope>
  63. <exclusions>
  64. <exclusion>
  65. <artifactId>commons-logging</artifactId>
  66. <groupId>commons-logging</groupId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-web</artifactId>
  73. <version>4.0.2.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>commons-logging</groupId>
  78. <artifactId>commons-logging</artifactId>
  79. <version>1.1.1</version>
  80. <scope>compile</scope>
  81. <optional>true</optional>
  82. </dependency>
  83. <dependency>
  84. <groupId>javax.servlet</groupId>
  85. <artifactId>javax.servlet-api</artifactId>
  86. <version>3.0.1</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>ch.qos.logback</groupId>
  91. <artifactId>logback-classic</artifactId>
  92. <version>0.9.29</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>junit</groupId>
  97. <artifactId>junit</artifactId>
  98. <version>4.11</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>net.sourceforge.jwebunit</groupId>
  103. <artifactId>jwebunit-core</artifactId>
  104. <version>2.2</version>
  105. <scope>test</scope>
  106. <exclusions>
  107. <exclusion>
  108. <artifactId>regexp</artifactId>
  109. <groupId>regexp</groupId>
  110. </exclusion>
  111. <exclusion>
  112. <artifactId>servlet-api</artifactId>
  113. <groupId>javax.servlet</groupId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <dependency>
  118. <groupId>net.sourceforge.jwebunit</groupId>
  119. <artifactId>jwebunit-htmlunit-plugin</artifactId>
  120. <version>2.2</version>
  121. <scope>test</scope>
  122. <exclusions>
  123. <exclusion>
  124. <artifactId>servlet-api</artifactId>
  125. <groupId>javax.servlet</groupId>
  126. </exclusion>
  127. </exclusions>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.easytesting</groupId>
  131. <artifactId>fest-assert</artifactId>
  132. <version>1.4</version>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.mockito</groupId>
  137. <artifactId>mockito-core</artifactId>
  138. <version>1.9.5</version>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.mortbay.jetty</groupId>
  143. <artifactId>jetty</artifactId>
  144. <version>6.1.26</version>
  145. <scope>test</scope>
  146. <exclusions>
  147. <exclusion>
  148. <artifactId>servlet-api</artifactId>
  149. <groupId>org.mortbay.jetty</groupId>
  150. </exclusion>
  151. </exclusions>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.mortbay.jetty</groupId>
  155. <artifactId>jetty-util</artifactId>
  156. <version>6.1.26</version>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.mortbay.jetty</groupId>
  161. <artifactId>jsp-2.1-jetty</artifactId>
  162. <version>6.1.26</version>
  163. <scope>test</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.slf4j</groupId>
  167. <artifactId>jcl-over-slf4j</artifactId>
  168. <version>1.7.5</version>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.springframework.security</groupId>
  173. <artifactId>spring-security-config</artifactId>
  174. <version>4.0.0.CI-SNAPSHOT</version>
  175. <scope>test</scope>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework.security</groupId>
  179. <artifactId>spring-security-core</artifactId>
  180. <version>4.0.0.CI-SNAPSHOT</version>
  181. <scope>test</scope>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.springframework.security</groupId>
  185. <artifactId>spring-security-ldap</artifactId>
  186. <version>4.0.0.CI-SNAPSHOT</version>
  187. <scope>test</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.springframework.security</groupId>
  191. <artifactId>spring-security-taglibs</artifactId>
  192. <version>4.0.0.CI-SNAPSHOT</version>
  193. <scope>test</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.springframework.security</groupId>
  197. <artifactId>spring-security-web</artifactId>
  198. <version>4.0.0.CI-SNAPSHOT</version>
  199. <scope>test</scope>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.springframework</groupId>
  203. <artifactId>spring-beans</artifactId>
  204. <version>4.0.2.RELEASE</version>
  205. <scope>test</scope>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.springframework</groupId>
  209. <artifactId>spring-test</artifactId>
  210. <version>4.0.2.RELEASE</version>
  211. <scope>test</scope>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.springframework</groupId>
  215. <artifactId>spring-webmvc</artifactId>
  216. <version>4.0.2.RELEASE</version>
  217. <scope>test</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.testng</groupId>
  221. <artifactId>testng</artifactId>
  222. <version>5.11</version>
  223. <classifier>jdk15</classifier>
  224. <scope>test</scope>
  225. </dependency>
  226. </dependencies>
  227. </project>