pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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-contacts</artifactId>
  6. <version>4.2.13.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-xml-contacts</name>
  9. <description>spring-security-samples-xml-contacts</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>org.springframework.security</groupId>
  51. <artifactId>spring-security-acl</artifactId>
  52. <version>4.2.13.RELEASE</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.security</groupId>
  57. <artifactId>spring-security-core</artifactId>
  58. <version>4.2.13.RELEASE</version>
  59. <scope>compile</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework</groupId>
  63. <artifactId>spring-aop</artifactId>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-beans</artifactId>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-context</artifactId>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-jdbc</artifactId>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-tx</artifactId>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring-web</artifactId>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-webmvc</artifactId>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-logging</groupId>
  98. <artifactId>commons-logging</artifactId>
  99. <version>1.2</version>
  100. <scope>compile</scope>
  101. <optional>true</optional>
  102. </dependency>
  103. <dependency>
  104. <groupId>javax.servlet</groupId>
  105. <artifactId>javax.servlet-api</artifactId>
  106. <version>3.1.0</version>
  107. <scope>provided</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>ch.qos.logback</groupId>
  111. <artifactId>logback-classic</artifactId>
  112. <version>1.1.11</version>
  113. <scope>runtime</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>javax.servlet.jsp.jstl</groupId>
  117. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  118. <version>1.2.2</version>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>net.sf.ehcache</groupId>
  123. <artifactId>ehcache</artifactId>
  124. <version>2.10.6</version>
  125. <scope>runtime</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.taglibs</groupId>
  129. <artifactId>taglibs-standard-jstlel</artifactId>
  130. <version>1.2.1</version>
  131. <scope>runtime</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.hsqldb</groupId>
  135. <artifactId>hsqldb</artifactId>
  136. <version>2.3.6</version>
  137. <scope>runtime</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.slf4j</groupId>
  141. <artifactId>jcl-over-slf4j</artifactId>
  142. <version>1.7.25</version>
  143. <scope>runtime</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework.security</groupId>
  147. <artifactId>spring-security-config</artifactId>
  148. <version>4.2.13.RELEASE</version>
  149. <scope>runtime</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework.security</groupId>
  153. <artifactId>spring-security-taglibs</artifactId>
  154. <version>4.2.13.RELEASE</version>
  155. <scope>runtime</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework.security</groupId>
  159. <artifactId>spring-security-web</artifactId>
  160. <version>4.2.13.RELEASE</version>
  161. <scope>runtime</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.springframework</groupId>
  165. <artifactId>spring-context-support</artifactId>
  166. <scope>runtime</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>commons-httpclient</groupId>
  170. <artifactId>commons-httpclient</artifactId>
  171. <version>3.1</version>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>junit</groupId>
  176. <artifactId>junit</artifactId>
  177. <version>4.12</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.assertj</groupId>
  182. <artifactId>assertj-core</artifactId>
  183. <version>2.2.0</version>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.codehaus.groovy</groupId>
  188. <artifactId>groovy</artifactId>
  189. <version>2.4.4</version>
  190. <scope>test</scope>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.codehaus.groovy</groupId>
  194. <artifactId>groovy-all</artifactId>
  195. <version>2.4.4</version>
  196. <scope>test</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.gebish</groupId>
  200. <artifactId>geb-spock</artifactId>
  201. <version>0.10.0</version>
  202. <scope>test</scope>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.mockito</groupId>
  206. <artifactId>mockito-core</artifactId>
  207. <version>1.10.19</version>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.seleniumhq.selenium</groupId>
  212. <artifactId>selenium-htmlunit-driver</artifactId>
  213. <version>2.44.0</version>
  214. <scope>test</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.spockframework</groupId>
  218. <artifactId>spock-core</artifactId>
  219. <version>0.7-groovy-2.0</version>
  220. <scope>test</scope>
  221. <exclusions>
  222. <exclusion>
  223. <artifactId>junit-dep</artifactId>
  224. <groupId>junit</groupId>
  225. </exclusion>
  226. </exclusions>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.spockframework</groupId>
  230. <artifactId>spock-spring</artifactId>
  231. <version>0.7-groovy-2.0</version>
  232. <scope>test</scope>
  233. <exclusions>
  234. <exclusion>
  235. <artifactId>junit-dep</artifactId>
  236. <groupId>junit</groupId>
  237. </exclusion>
  238. </exclusions>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.springframework</groupId>
  242. <artifactId>spring-test</artifactId>
  243. <scope>test</scope>
  244. </dependency>
  245. </dependencies>
  246. <build>
  247. <plugins>
  248. <plugin>
  249. <artifactId>maven-compiler-plugin</artifactId>
  250. <configuration>
  251. <source>1.7</source>
  252. <target>1.7</target>
  253. </configuration>
  254. </plugin>
  255. <plugin>
  256. <artifactId>maven-war-plugin</artifactId>
  257. <version>2.3</version>
  258. <configuration>
  259. <failOnMissingWebXml>false</failOnMissingWebXml>
  260. </configuration>
  261. </plugin>
  262. </plugins>
  263. </build>
  264. </project>