pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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>itest-web</artifactId>
  6. <version>3.2.10.RELEASE</version>
  7. <name>itest-web</name>
  8. <description>itest-web</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. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context</artifactId>
  37. <version>3.2.18.RELEASE</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-web</artifactId>
  43. <version>3.2.18.RELEASE</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-logging</groupId>
  48. <artifactId>commons-logging</artifactId>
  49. <version>1.1.1</version>
  50. <scope>compile</scope>
  51. <optional>true</optional>
  52. </dependency>
  53. <dependency>
  54. <groupId>javax.servlet</groupId>
  55. <artifactId>javax.servlet-api</artifactId>
  56. <version>3.0.1</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>ch.qos.logback</groupId>
  61. <artifactId>logback-classic</artifactId>
  62. <version>0.9.29</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>junit</groupId>
  67. <artifactId>junit</artifactId>
  68. <version>4.11</version>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>net.sourceforge.jwebunit</groupId>
  73. <artifactId>jwebunit-core</artifactId>
  74. <version>2.2</version>
  75. <scope>test</scope>
  76. <exclusions>
  77. <exclusion>
  78. <artifactId>regexp</artifactId>
  79. <groupId>regexp</groupId>
  80. </exclusion>
  81. <exclusion>
  82. <artifactId>servlet-api</artifactId>
  83. <groupId>javax.servlet</groupId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>net.sourceforge.jwebunit</groupId>
  89. <artifactId>jwebunit-htmlunit-plugin</artifactId>
  90. <version>2.2</version>
  91. <scope>test</scope>
  92. <exclusions>
  93. <exclusion>
  94. <artifactId>servlet-api</artifactId>
  95. <groupId>javax.servlet</groupId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.easytesting</groupId>
  101. <artifactId>fest-assert</artifactId>
  102. <version>1.4</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.mockito</groupId>
  107. <artifactId>mockito-core</artifactId>
  108. <version>1.10.19</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.mortbay.jetty</groupId>
  113. <artifactId>jetty</artifactId>
  114. <version>6.1.26</version>
  115. <scope>test</scope>
  116. <exclusions>
  117. <exclusion>
  118. <artifactId>servlet-api</artifactId>
  119. <groupId>org.mortbay.jetty</groupId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.mortbay.jetty</groupId>
  125. <artifactId>jetty-util</artifactId>
  126. <version>6.1.26</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.mortbay.jetty</groupId>
  131. <artifactId>jsp-2.1-jetty</artifactId>
  132. <version>6.1.26</version>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.slf4j</groupId>
  137. <artifactId>jcl-over-slf4j</artifactId>
  138. <version>1.7.5</version>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework.security</groupId>
  143. <artifactId>spring-security-config</artifactId>
  144. <version>3.2.10.RELEASE</version>
  145. <scope>test</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework.security</groupId>
  149. <artifactId>spring-security-core</artifactId>
  150. <version>3.2.10.RELEASE</version>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.security</groupId>
  155. <artifactId>spring-security-ldap</artifactId>
  156. <version>3.2.10.RELEASE</version>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.springframework.security</groupId>
  161. <artifactId>spring-security-taglibs</artifactId>
  162. <version>3.2.10.RELEASE</version>
  163. <scope>test</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.springframework.security</groupId>
  167. <artifactId>spring-security-web</artifactId>
  168. <version>3.2.10.RELEASE</version>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.springframework</groupId>
  173. <artifactId>spring-beans</artifactId>
  174. <version>3.2.18.RELEASE</version>
  175. <scope>test</scope>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework</groupId>
  179. <artifactId>spring-test</artifactId>
  180. <version>3.2.18.RELEASE</version>
  181. <scope>test</scope>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.springframework</groupId>
  185. <artifactId>spring-webmvc</artifactId>
  186. <version>3.2.18.RELEASE</version>
  187. <scope>test</scope>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.testng</groupId>
  191. <artifactId>testng</artifactId>
  192. <version>5.11</version>
  193. <classifier>jdk15</classifier>
  194. <scope>test</scope>
  195. </dependency>
  196. </dependencies>
  197. <build>
  198. <plugins>
  199. <plugin>
  200. <artifactId>maven-compiler-plugin</artifactId>
  201. <configuration>
  202. <source>1.7</source>
  203. <target>1.7</target>
  204. </configuration>
  205. </plugin>
  206. </plugins>
  207. </build>
  208. </project>