pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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-xml-helloworld</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-xml-helloworld</name>
  9. <description>spring-security-samples-xml-helloworld</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@pivotal.io</email>
  27. </developer>
  28. <developer>
  29. <id>jgrandja</id>
  30. <name>Joe Grandja</name>
  31. <email>jgrandja@pivotal.io</email>
  32. </developer>
  33. </developers>
  34. <scm>
  35. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  36. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  37. <url>https://github.com/spring-projects/spring-security</url>
  38. </scm>
  39. <properties>
  40. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  41. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-framework-bom</artifactId>
  47. <version>4.3.5.RELEASE</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <dependencies>
  54. <dependency>
  55. <groupId>javax.servlet.jsp.jstl</groupId>
  56. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  57. <version>1.2.1</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.taglibs</groupId>
  62. <artifactId>taglibs-standard-jstlel</artifactId>
  63. <version>1.2.1</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.slf4j</groupId>
  68. <artifactId>jcl-over-slf4j</artifactId>
  69. <version>1.7.7</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.security</groupId>
  74. <artifactId>spring-security-config</artifactId>
  75. <version>5.0.0.BUILD-SNAPSHOT</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.security</groupId>
  80. <artifactId>spring-security-web</artifactId>
  81. <version>5.0.0.BUILD-SNAPSHOT</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-logging</groupId>
  86. <artifactId>commons-logging</artifactId>
  87. <version>1.2</version>
  88. <scope>compile</scope>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>javax.servlet.jsp</groupId>
  93. <artifactId>jsp-api</artifactId>
  94. <version>2.1</version>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax.servlet</groupId>
  99. <artifactId>javax.servlet-api</artifactId>
  100. <version>3.0.1</version>
  101. <scope>provided</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>ch.qos.logback</groupId>
  105. <artifactId>logback-classic</artifactId>
  106. <version>1.1.2</version>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-httpclient</groupId>
  111. <artifactId>commons-httpclient</artifactId>
  112. <version>3.1</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>junit</groupId>
  117. <artifactId>junit</artifactId>
  118. <version>4.12</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.assertj</groupId>
  123. <artifactId>assertj-core</artifactId>
  124. <version>3.6.2</version>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.codehaus.groovy</groupId>
  129. <artifactId>groovy</artifactId>
  130. <version>2.4.4</version>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.codehaus.groovy</groupId>
  135. <artifactId>groovy-all</artifactId>
  136. <version>2.4.4</version>
  137. <scope>test</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.gebish</groupId>
  141. <artifactId>geb-spock</artifactId>
  142. <version>0.10.0</version>
  143. <scope>test</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.mockito</groupId>
  147. <artifactId>mockito-core</artifactId>
  148. <version>1.10.19</version>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.seleniumhq.selenium</groupId>
  153. <artifactId>selenium-htmlunit-driver</artifactId>
  154. <version>2.44.0</version>
  155. <scope>test</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.spockframework</groupId>
  159. <artifactId>spock-core</artifactId>
  160. <version>0.7-groovy-2.0</version>
  161. <scope>test</scope>
  162. <exclusions>
  163. <exclusion>
  164. <artifactId>junit-dep</artifactId>
  165. <groupId>junit</groupId>
  166. </exclusion>
  167. </exclusions>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.spockframework</groupId>
  171. <artifactId>spock-spring</artifactId>
  172. <version>0.7-groovy-2.0</version>
  173. <scope>test</scope>
  174. <exclusions>
  175. <exclusion>
  176. <artifactId>junit-dep</artifactId>
  177. <groupId>junit</groupId>
  178. </exclusion>
  179. </exclusions>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework</groupId>
  183. <artifactId>spring-test</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. </dependencies>
  187. <repositories>
  188. <repository>
  189. <id>spring-snapshot</id>
  190. <url>https://repo.spring.io/snapshot</url>
  191. </repository>
  192. </repositories>
  193. <build>
  194. <plugins>
  195. <plugin>
  196. <artifactId>maven-compiler-plugin</artifactId>
  197. <configuration>
  198. <source>1.8</source>
  199. <target>1.8</target>
  200. </configuration>
  201. </plugin>
  202. <plugin>
  203. <artifactId>maven-war-plugin</artifactId>
  204. <version>2.3</version>
  205. <configuration>
  206. <failOnMissingWebXml>false</failOnMissingWebXml>
  207. </configuration>
  208. </plugin>
  209. </plugins>
  210. </build>
  211. </project>