pom.xml 5.6 KB

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