pom.xml 6.6 KB

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