pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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>5.0.0.BUILD-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-xml-insecuremvc</name>
  9. <description>spring-security-samples-xml-insecuremvc</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@pivotal.io</email>
  27. </developer>
  28. <developer>
  29. <id>jgrandja</id>
  30. <name>Joe Grandja</name>
  31. <email>jgrandja@pivotal.io</email>
  32. </developer>
  33. </developers>
  34. <scm>
  35. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  36. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  37. <url>https://github.com/spring-projects/spring-security</url>
  38. </scm>
  39. <properties>
  40. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  41. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-framework-bom</artifactId>
  47. <version>4.3.5.RELEASE</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <dependencies>
  54. <dependency>
  55. <groupId>javax.servlet.jsp.jstl</groupId>
  56. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  57. <version>1.2.1</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.validation</groupId>
  62. <artifactId>validation-api</artifactId>
  63. <version>1.1.0.Final</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.hibernate</groupId>
  68. <artifactId>hibernate-validator</artifactId>
  69. <version>5.2.4.Final</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.slf4j</groupId>
  74. <artifactId>jcl-over-slf4j</artifactId>
  75. <version>1.7.7</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.slf4j</groupId>
  80. <artifactId>jul-to-slf4j</artifactId>
  81. <version>1.7.7</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.slf4j</groupId>
  86. <artifactId>log4j-over-slf4j</artifactId>
  87. <version>1.7.7</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.slf4j</groupId>
  92. <artifactId>slf4j-api</artifactId>
  93. <version>1.7.7</version>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.security</groupId>
  98. <artifactId>spring-security-samples-javaconfig-messages</artifactId>
  99. <version>5.0.0.BUILD-SNAPSHOT</version>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-jdbc</artifactId>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-webmvc</artifactId>
  110. <scope>compile</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-logging</groupId>
  114. <artifactId>commons-logging</artifactId>
  115. <version>1.2</version>
  116. <scope>compile</scope>
  117. <optional>true</optional>
  118. </dependency>
  119. <dependency>
  120. <groupId>javax.servlet.jsp</groupId>
  121. <artifactId>jsp-api</artifactId>
  122. <version>2.1</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>javax.servlet</groupId>
  127. <artifactId>javax.servlet-api</artifactId>
  128. <version>3.0.1</version>
  129. <scope>provided</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>cglib</groupId>
  133. <artifactId>cglib-nodep</artifactId>
  134. <version>3.2.5</version>
  135. <scope>runtime</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>ch.qos.logback</groupId>
  139. <artifactId>logback-classic</artifactId>
  140. <version>1.1.2</version>
  141. <scope>runtime</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>opensymphony</groupId>
  145. <artifactId>sitemesh</artifactId>
  146. <version>2.4.2</version>
  147. <scope>runtime</scope>
  148. </dependency>
  149. <dependency>
  150. <groupId>junit</groupId>
  151. <artifactId>junit</artifactId>
  152. <version>4.12</version>
  153. <scope>test</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.assertj</groupId>
  157. <artifactId>assertj-core</artifactId>
  158. <version>3.6.2</version>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.mockito</groupId>
  163. <artifactId>mockito-core</artifactId>
  164. <version>1.10.19</version>
  165. <scope>test</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework</groupId>
  169. <artifactId>spring-test</artifactId>
  170. <scope>test</scope>
  171. </dependency>
  172. </dependencies>
  173. <repositories>
  174. <repository>
  175. <id>spring-snapshot</id>
  176. <url>https://repo.spring.io/snapshot</url>
  177. </repository>
  178. </repositories>
  179. <build>
  180. <plugins>
  181. <plugin>
  182. <artifactId>maven-compiler-plugin</artifactId>
  183. <configuration>
  184. <source>1.8</source>
  185. <target>1.8</target>
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <artifactId>maven-war-plugin</artifactId>
  190. <version>2.3</version>
  191. <configuration>
  192. <failOnMissingWebXml>false</failOnMissingWebXml>
  193. </configuration>
  194. </plugin>
  195. </plugins>
  196. </build>
  197. </project>