pom.xml 6.2 KB

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