pom.xml 5.6 KB

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