pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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-insecuremvc</artifactId>
  6. <version>4.2.13.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-xml-insecuremvc</name>
  9. <description>spring-security-samples-xml-insecuremvc</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.23.RELEASE</version>
  43. <type>pom</type>
  44. <scope>import</scope>
  45. </dependency>
  46. </dependencies>
  47. </dependencyManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>javax.servlet.jsp.jstl</groupId>
  51. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  52. <version>1.2.2</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>javax.validation</groupId>
  57. <artifactId>validation-api</artifactId>
  58. <version>1.1.0.Final</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.hibernate</groupId>
  63. <artifactId>hibernate-validator</artifactId>
  64. <version>5.3.6.Final</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.slf4j</groupId>
  69. <artifactId>jcl-over-slf4j</artifactId>
  70. <version>1.7.25</version>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.slf4j</groupId>
  75. <artifactId>jul-to-slf4j</artifactId>
  76. <version>1.7.25</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.slf4j</groupId>
  81. <artifactId>log4j-over-slf4j</artifactId>
  82. <version>1.7.25</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>slf4j-api</artifactId>
  88. <version>1.7.25</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.security</groupId>
  93. <artifactId>spring-security-samples-javaconfig-messages</artifactId>
  94. <version>4.2.13.RELEASE</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-jdbc</artifactId>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-webmvc</artifactId>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>commons-logging</groupId>
  109. <artifactId>commons-logging</artifactId>
  110. <version>1.2</version>
  111. <scope>compile</scope>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>javax.servlet.jsp</groupId>
  116. <artifactId>jsp-api</artifactId>
  117. <version>2.1</version>
  118. <scope>provided</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>javax.servlet</groupId>
  122. <artifactId>javax.servlet-api</artifactId>
  123. <version>3.0.1</version>
  124. <scope>provided</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>cglib</groupId>
  128. <artifactId>cglib-nodep</artifactId>
  129. <version>3.2.10</version>
  130. <scope>runtime</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>ch.qos.logback</groupId>
  134. <artifactId>logback-classic</artifactId>
  135. <version>1.1.11</version>
  136. <scope>runtime</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>opensymphony</groupId>
  140. <artifactId>sitemesh</artifactId>
  141. <version>2.4.2</version>
  142. <scope>runtime</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>junit</groupId>
  146. <artifactId>junit</artifactId>
  147. <version>4.12</version>
  148. <scope>test</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.assertj</groupId>
  152. <artifactId>assertj-core</artifactId>
  153. <version>2.2.0</version>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.mockito</groupId>
  158. <artifactId>mockito-core</artifactId>
  159. <version>1.10.19</version>
  160. <scope>test</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.springframework</groupId>
  164. <artifactId>spring-test</artifactId>
  165. <scope>test</scope>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <plugins>
  170. <plugin>
  171. <artifactId>maven-compiler-plugin</artifactId>
  172. <configuration>
  173. <source>1.7</source>
  174. <target>1.7</target>
  175. </configuration>
  176. </plugin>
  177. <plugin>
  178. <artifactId>maven-war-plugin</artifactId>
  179. <version>2.3</version>
  180. <configuration>
  181. <failOnMissingWebXml>false</failOnMissingWebXml>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. </project>