pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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-gae-xml</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-gae-xml</name>
  9. <description>spring-security-samples-gae-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. <dependencies>
  35. <dependency>
  36. <groupId>com.google.appengine</groupId>
  37. <artifactId>appengine-api-1.0-sdk</artifactId>
  38. <version>1.9.23</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>slf4j-api</artifactId>
  56. <version>1.7.7</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.security</groupId>
  61. <artifactId>spring-security-core</artifactId>
  62. <version>4.0.4.RELEASE</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.security</groupId>
  67. <artifactId>spring-security-web</artifactId>
  68. <version>4.0.4.RELEASE</version>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-beans</artifactId>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring-context</artifactId>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-context-support</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.0.1</version>
  107. <scope>provided</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>javax.servlet.jsp.jstl</groupId>
  111. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  112. <version>1.2.1</version>
  113. <scope>runtime</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.taglibs</groupId>
  117. <artifactId>taglibs-standard-jstlel</artifactId>
  118. <version>1.2.1</version>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.slf4j</groupId>
  123. <artifactId>jcl-over-slf4j</artifactId>
  124. <version>1.7.7</version>
  125. <scope>runtime</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.slf4j</groupId>
  129. <artifactId>slf4j-jdk14</artifactId>
  130. <version>1.7.7</version>
  131. <scope>runtime</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.security</groupId>
  135. <artifactId>spring-security-config</artifactId>
  136. <version>4.0.4.RELEASE</version>
  137. <scope>runtime</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.security</groupId>
  141. <artifactId>spring-security-taglibs</artifactId>
  142. <version>4.0.4.RELEASE</version>
  143. <scope>runtime</scope>
  144. </dependency>
  145. <dependency>
  146. <groupId>ch.qos.logback</groupId>
  147. <artifactId>logback-classic</artifactId>
  148. <version>1.1.2</version>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.google.appengine</groupId>
  153. <artifactId>appengine-api-labs</artifactId>
  154. <version>1.9.23</version>
  155. <scope>test</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.google.appengine</groupId>
  159. <artifactId>appengine-api-stubs</artifactId>
  160. <version>1.9.23</version>
  161. <scope>test</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.google.appengine</groupId>
  165. <artifactId>appengine-testing</artifactId>
  166. <version>1.9.23</version>
  167. <scope>test</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>junit</groupId>
  171. <artifactId>junit</artifactId>
  172. <version>4.11</version>
  173. <scope>test</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.easytesting</groupId>
  177. <artifactId>fest-assert</artifactId>
  178. <version>1.4</version>
  179. <scope>test</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.mockito</groupId>
  183. <artifactId>mockito-core</artifactId>
  184. <version>1.10.19</version>
  185. <scope>test</scope>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.springframework</groupId>
  189. <artifactId>spring-test</artifactId>
  190. <scope>test</scope>
  191. </dependency>
  192. </dependencies>
  193. <dependencyManagement>
  194. <dependencies>
  195. <dependency>
  196. <groupId>org.springframework</groupId>
  197. <artifactId>spring-framework-bom</artifactId>
  198. <version>4.2.5.RELEASE</version>
  199. <type>pom</type>
  200. <scope>import</scope>
  201. </dependency>
  202. </dependencies>
  203. </dependencyManagement>
  204. <properties>
  205. <m2eclipse.wtp.contextRoot>/spring-security-samples-gae-xml</m2eclipse.wtp.contextRoot>
  206. </properties>
  207. <build>
  208. <plugins>
  209. <plugin>
  210. <artifactId>maven-compiler-plugin</artifactId>
  211. <configuration>
  212. <source>1.7</source>
  213. <target>1.7</target>
  214. </configuration>
  215. </plugin>
  216. <plugin>
  217. <artifactId>maven-war-plugin</artifactId>
  218. <version>2.3</version>
  219. <configuration>
  220. <failOnMissingWebXml>false</failOnMissingWebXml>
  221. </configuration>
  222. </plugin>
  223. </plugins>
  224. </build>
  225. </project>