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-xml-tutorial</artifactId>
  6. <version>4.1.5.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-xml-tutorial</name>
  9. <description>spring-security-samples-xml-tutorial</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>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. <version>1.7.7</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.security</groupId>
  57. <artifactId>spring-security-core</artifactId>
  58. <version>4.1.5.RELEASE</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-beans</artifactId>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-web</artifactId>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-webmvc</artifactId>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>commons-logging</groupId>
  78. <artifactId>commons-logging</artifactId>
  79. <version>1.2</version>
  80. <scope>compile</scope>
  81. <optional>true</optional>
  82. </dependency>
  83. <dependency>
  84. <groupId>javax.servlet</groupId>
  85. <artifactId>javax.servlet-api</artifactId>
  86. <version>3.0.1</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>ch.qos.logback</groupId>
  91. <artifactId>logback-classic</artifactId>
  92. <version>1.1.2</version>
  93. <scope>runtime</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>ch.qos.logback</groupId>
  97. <artifactId>logback-core</artifactId>
  98. <version>1.1.2</version>
  99. <scope>runtime</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>javax.servlet.jsp.jstl</groupId>
  103. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  104. <version>1.2.1</version>
  105. <scope>runtime</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.taglibs</groupId>
  109. <artifactId>taglibs-standard-jstlel</artifactId>
  110. <version>1.2.1</version>
  111. <scope>runtime</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>jcl-over-slf4j</artifactId>
  116. <version>1.7.7</version>
  117. <scope>runtime</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.security</groupId>
  121. <artifactId>spring-security-config</artifactId>
  122. <version>4.1.5.RELEASE</version>
  123. <scope>runtime</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.security</groupId>
  127. <artifactId>spring-security-taglibs</artifactId>
  128. <version>4.1.5.RELEASE</version>
  129. <scope>runtime</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.security</groupId>
  133. <artifactId>spring-security-web</artifactId>
  134. <version>4.1.5.RELEASE</version>
  135. <scope>runtime</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>junit</groupId>
  139. <artifactId>junit</artifactId>
  140. <version>4.12</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.assertj</groupId>
  145. <artifactId>assertj-core</artifactId>
  146. <version>2.2.0</version>
  147. <scope>test</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.mockito</groupId>
  151. <artifactId>mockito-core</artifactId>
  152. <version>1.10.19</version>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.springframework</groupId>
  157. <artifactId>spring-test</artifactId>
  158. <scope>test</scope>
  159. </dependency>
  160. </dependencies>
  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>