pom.xml 5.9 KB

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