pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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-jaas-xml</artifactId>
  6. <version>4.0.3.CI-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-jaas-xml</name>
  9. <description>spring-security-samples-jaas-xml</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. <repositories>
  35. <repository>
  36. <id>spring-snapshot</id>
  37. <url>https://repo.spring.io/snapshot</url>
  38. </repository>
  39. </repositories>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.springframework.security</groupId>
  43. <artifactId>spring-security-core</artifactId>
  44. <version>4.0.3.CI-SNAPSHOT</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-beans</artifactId>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-context</artifactId>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-web</artifactId>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-logging</groupId>
  64. <artifactId>commons-logging</artifactId>
  65. <version>1.2</version>
  66. <scope>compile</scope>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.servlet</groupId>
  71. <artifactId>javax.servlet-api</artifactId>
  72. <version>3.0.1</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>ch.qos.logback</groupId>
  77. <artifactId>logback-classic</artifactId>
  78. <version>1.1.2</version>
  79. <scope>runtime</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>javax.servlet.jsp.jstl</groupId>
  83. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  84. <version>1.2.1</version>
  85. <scope>runtime</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.taglibs</groupId>
  89. <artifactId>taglibs-standard-jstlel</artifactId>
  90. <version>1.2.1</version>
  91. <scope>runtime</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.slf4j</groupId>
  95. <artifactId>jcl-over-slf4j</artifactId>
  96. <version>1.7.7</version>
  97. <scope>runtime</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.security</groupId>
  101. <artifactId>spring-security-config</artifactId>
  102. <version>4.0.3.CI-SNAPSHOT</version>
  103. <scope>runtime</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.security</groupId>
  107. <artifactId>spring-security-taglibs</artifactId>
  108. <version>4.0.3.CI-SNAPSHOT</version>
  109. <scope>runtime</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.security</groupId>
  113. <artifactId>spring-security-web</artifactId>
  114. <version>4.0.3.CI-SNAPSHOT</version>
  115. <scope>runtime</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-context-support</artifactId>
  120. <scope>runtime</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-httpclient</groupId>
  124. <artifactId>commons-httpclient</artifactId>
  125. <version>3.1</version>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>junit</groupId>
  130. <artifactId>junit</artifactId>
  131. <version>4.11</version>
  132. <scope>test</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.codehaus.groovy</groupId>
  136. <artifactId>groovy</artifactId>
  137. <version>2.3.8</version>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.easytesting</groupId>
  142. <artifactId>fest-assert</artifactId>
  143. <version>1.4</version>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.gebish</groupId>
  148. <artifactId>geb-spock</artifactId>
  149. <version>0.10.0</version>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.mockito</groupId>
  154. <artifactId>mockito-core</artifactId>
  155. <version>1.10.19</version>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.seleniumhq.selenium</groupId>
  160. <artifactId>selenium-htmlunit-driver</artifactId>
  161. <version>2.44.0</version>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.spockframework</groupId>
  166. <artifactId>spock-core</artifactId>
  167. <version>0.7-groovy-2.0</version>
  168. <scope>test</scope>
  169. <exclusions>
  170. <exclusion>
  171. <artifactId>junit-dep</artifactId>
  172. <groupId>junit</groupId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.spockframework</groupId>
  178. <artifactId>spock-spring</artifactId>
  179. <version>0.7-groovy-2.0</version>
  180. <scope>test</scope>
  181. <exclusions>
  182. <exclusion>
  183. <artifactId>junit-dep</artifactId>
  184. <groupId>junit</groupId>
  185. </exclusion>
  186. </exclusions>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework</groupId>
  190. <artifactId>spring-test</artifactId>
  191. <scope>test</scope>
  192. </dependency>
  193. </dependencies>
  194. <dependencyManagement>
  195. <dependencies>
  196. <dependency>
  197. <groupId>org.springframework</groupId>
  198. <artifactId>spring-framework-bom</artifactId>
  199. <version>4.1.6.RELEASE</version>
  200. <type>pom</type>
  201. <scope>import</scope>
  202. </dependency>
  203. </dependencies>
  204. </dependencyManagement>
  205. <properties>
  206. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  207. </properties>
  208. <build>
  209. <plugins>
  210. <plugin>
  211. <artifactId>maven-compiler-plugin</artifactId>
  212. <configuration>
  213. <source>1.7</source>
  214. <target>1.7</target>
  215. </configuration>
  216. </plugin>
  217. <plugin>
  218. <artifactId>maven-war-plugin</artifactId>
  219. <version>2.3</version>
  220. <configuration>
  221. <failOnMissingWebXml>false</failOnMissingWebXml>
  222. </configuration>
  223. </plugin>
  224. </plugins>
  225. </build>
  226. </project>