pom.xml 5.6 KB

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