pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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-samples-helloworld-xml</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-helloworld-xml</name>
  9. <description>spring-security-samples-helloworld-xml</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. <dependencies>
  35. <dependency>
  36. <groupId>javax.servlet.jsp.jstl</groupId>
  37. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  38. <version>1.2.1</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.taglibs</groupId>
  43. <artifactId>taglibs-standard-jstlel</artifactId>
  44. <version>1.2.1</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>jcl-over-slf4j</artifactId>
  50. <version>1.7.7</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.security</groupId>
  55. <artifactId>spring-security-config</artifactId>
  56. <version>4.0.4.RELEASE</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.security</groupId>
  61. <artifactId>spring-security-web</artifactId>
  62. <version>4.0.4.RELEASE</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>commons-logging</groupId>
  67. <artifactId>commons-logging</artifactId>
  68. <version>1.2</version>
  69. <scope>compile</scope>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>javax.servlet.jsp</groupId>
  74. <artifactId>jsp-api</artifactId>
  75. <version>2.1</version>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>javax.servlet</groupId>
  80. <artifactId>javax.servlet-api</artifactId>
  81. <version>3.0.1</version>
  82. <scope>provided</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>ch.qos.logback</groupId>
  86. <artifactId>logback-classic</artifactId>
  87. <version>1.1.2</version>
  88. <scope>runtime</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>commons-httpclient</groupId>
  92. <artifactId>commons-httpclient</artifactId>
  93. <version>3.1</version>
  94. <scope>test</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. <version>4.11</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.codehaus.groovy</groupId>
  104. <artifactId>groovy</artifactId>
  105. <version>2.3.8</version>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.easytesting</groupId>
  110. <artifactId>fest-assert</artifactId>
  111. <version>1.4</version>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.gebish</groupId>
  116. <artifactId>geb-spock</artifactId>
  117. <version>0.10.0</version>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.mockito</groupId>
  122. <artifactId>mockito-core</artifactId>
  123. <version>1.10.19</version>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.seleniumhq.selenium</groupId>
  128. <artifactId>selenium-htmlunit-driver</artifactId>
  129. <version>2.44.0</version>
  130. <scope>test</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.spockframework</groupId>
  134. <artifactId>spock-core</artifactId>
  135. <version>0.7-groovy-2.0</version>
  136. <scope>test</scope>
  137. <exclusions>
  138. <exclusion>
  139. <artifactId>junit-dep</artifactId>
  140. <groupId>junit</groupId>
  141. </exclusion>
  142. </exclusions>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.spockframework</groupId>
  146. <artifactId>spock-spring</artifactId>
  147. <version>0.7-groovy-2.0</version>
  148. <scope>test</scope>
  149. <exclusions>
  150. <exclusion>
  151. <artifactId>junit-dep</artifactId>
  152. <groupId>junit</groupId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.springframework</groupId>
  158. <artifactId>spring-test</artifactId>
  159. <scope>test</scope>
  160. </dependency>
  161. </dependencies>
  162. <dependencyManagement>
  163. <dependencies>
  164. <dependency>
  165. <groupId>org.springframework</groupId>
  166. <artifactId>spring-framework-bom</artifactId>
  167. <version>4.2.5.RELEASE</version>
  168. <type>pom</type>
  169. <scope>import</scope>
  170. </dependency>
  171. </dependencies>
  172. </dependencyManagement>
  173. <properties>
  174. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  175. </properties>
  176. <build>
  177. <plugins>
  178. <plugin>
  179. <artifactId>maven-compiler-plugin</artifactId>
  180. <configuration>
  181. <source>1.7</source>
  182. <target>1.7</target>
  183. </configuration>
  184. </plugin>
  185. <plugin>
  186. <artifactId>maven-war-plugin</artifactId>
  187. <version>2.3</version>
  188. <configuration>
  189. <failOnMissingWebXml>false</failOnMissingWebXml>
  190. </configuration>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. </project>