pom.xml 5.6 KB

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