pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.springframework.security</groupId>
  6. <artifactId>spring-security-samples-insecuremvc</artifactId>
  7. <version>4.0.0.CI-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>spring-security-samples-insecuremvc</name>
  10. <description>spring-security-samples-insecuremvc</description>
  11. <url>http://spring.io/spring-security</url>
  12. <organization>
  13. <name>spring.io</name>
  14. <url>http://spring.io/</url>
  15. </organization>
  16. <licenses>
  17. <license>
  18. <name>The Apache Software License, Version 2.0</name>
  19. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  20. <distribution>repo</distribution>
  21. </license>
  22. </licenses>
  23. <developers>
  24. <developer>
  25. <id>rwinch</id>
  26. <name>Rob Winch</name>
  27. <email>rwinch@gopivotal.com</email>
  28. </developer>
  29. </developers>
  30. <scm>
  31. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  32. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  33. <url>https://github.com/spring-projects/spring-security</url>
  34. </scm>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <configuration>
  40. <source>1.7</source>
  41. <target>1.7</target>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-war-plugin</artifactId>
  46. <version>2.3</version>
  47. <configuration>
  48. <failOnMissingWebXml>false</failOnMissingWebXml>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. <repositories>
  54. <repository>
  55. <id>spring-snasphot</id>
  56. <url>https://repo.spring.io/snapshot</url>
  57. </repository>
  58. </repositories>
  59. <dependencies>
  60. <dependency>
  61. <groupId>javax.servlet</groupId>
  62. <artifactId>jstl</artifactId>
  63. <version>1.2</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.validation</groupId>
  68. <artifactId>validation-api</artifactId>
  69. <version>1.0.0.GA</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.hibernate</groupId>
  74. <artifactId>hibernate-validator</artifactId>
  75. <version>4.2.0.Final</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.slf4j</groupId>
  80. <artifactId>jcl-over-slf4j</artifactId>
  81. <version>1.7.5</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.slf4j</groupId>
  86. <artifactId>jul-to-slf4j</artifactId>
  87. <version>1.7.5</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.slf4j</groupId>
  92. <artifactId>log4j-over-slf4j</artifactId>
  93. <version>1.7.5</version>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.slf4j</groupId>
  98. <artifactId>slf4j-api</artifactId>
  99. <version>1.7.5</version>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.security</groupId>
  104. <artifactId>spring-security-samples-messages-jc</artifactId>
  105. <version>4.0.0.CI-SNAPSHOT</version>
  106. <scope>compile</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework</groupId>
  110. <artifactId>spring-core</artifactId>
  111. <version>4.0.2.RELEASE</version>
  112. <scope>compile</scope>
  113. <exclusions>
  114. <exclusion>
  115. <artifactId>commons-logging</artifactId>
  116. <groupId>commons-logging</groupId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>spring-jdbc</artifactId>
  123. <version>4.0.2.RELEASE</version>
  124. <scope>compile</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-webmvc</artifactId>
  129. <version>4.0.2.RELEASE</version>
  130. <scope>compile</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>commons-logging</groupId>
  134. <artifactId>commons-logging</artifactId>
  135. <version>1.1.1</version>
  136. <scope>compile</scope>
  137. <optional>true</optional>
  138. </dependency>
  139. <dependency>
  140. <groupId>javax.servlet.jsp</groupId>
  141. <artifactId>jsp-api</artifactId>
  142. <version>2.1</version>
  143. <scope>provided</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>javax.servlet</groupId>
  147. <artifactId>javax.servlet-api</artifactId>
  148. <version>3.0.1</version>
  149. <scope>provided</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>cglib</groupId>
  153. <artifactId>cglib-nodep</artifactId>
  154. <version>2.2.2</version>
  155. <scope>runtime</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>ch.qos.logback</groupId>
  159. <artifactId>logback-classic</artifactId>
  160. <version>0.9.30</version>
  161. <scope>runtime</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>opensymphony</groupId>
  165. <artifactId>sitemesh</artifactId>
  166. <version>2.4.2</version>
  167. <scope>runtime</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>ch.qos.logback</groupId>
  171. <artifactId>logback-classic</artifactId>
  172. <version>0.9.29</version>
  173. <scope>test</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>junit</groupId>
  177. <artifactId>junit</artifactId>
  178. <version>4.11</version>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.easytesting</groupId>
  183. <artifactId>fest-assert</artifactId>
  184. <version>1.4</version>
  185. <scope>test</scope>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.mockito</groupId>
  189. <artifactId>mockito-core</artifactId>
  190. <version>1.9.5</version>
  191. <scope>test</scope>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.springframework</groupId>
  195. <artifactId>spring-test</artifactId>
  196. <version>4.0.2.RELEASE</version>
  197. <scope>test</scope>
  198. </dependency>
  199. </dependencies>
  200. <properties>
  201. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  202. </properties>
  203. </project>