pom.xml 6.2 KB

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