2
0

pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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-tutorial-xml</artifactId>
  7. <version>3.2.0.CI-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>spring-security-samples-tutorial-xml</name>
  10. <description>spring-security-samples-tutorial-xml</description>
  11. <url>http://springsource.org/spring-security</url>
  12. <organization>
  13. <name>SpringSource</name>
  14. <url>http://springsource.org/</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@vmware.com</email>
  28. </developer>
  29. </developers>
  30. <scm>
  31. <connection>scm:git:git://github.com/SpringSource/spring-security</connection>
  32. <developerConnection>scm:git:git://github.com/SpringSource/spring-security</developerConnection>
  33. <url>https://github.com/SpringSource/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. </plugins>
  45. </build>
  46. <repositories>
  47. <repository>
  48. <id>spring-snasphot</id>
  49. <url>http://repo.springsource.org/libs-snapshot</url>
  50. </repository>
  51. </repositories>
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.slf4j</groupId>
  55. <artifactId>slf4j-api</artifactId>
  56. <version>1.7.5</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.security</groupId>
  61. <artifactId>spring-security-core</artifactId>
  62. <version>3.2.0.CI-SNAPSHOT</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-beans</artifactId>
  68. <version>3.2.4.RELEASE</version>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework</groupId>
  73. <artifactId>spring-core</artifactId>
  74. <version>3.2.4.RELEASE</version>
  75. <scope>compile</scope>
  76. <exclusions>
  77. <exclusion>
  78. <artifactId>commons-logging</artifactId>
  79. <groupId>commons-logging</groupId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-web</artifactId>
  86. <version>3.2.4.RELEASE</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-webmvc</artifactId>
  92. <version>3.2.4.RELEASE</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-logging</groupId>
  97. <artifactId>commons-logging</artifactId>
  98. <version>1.1.1</version>
  99. <scope>compile</scope>
  100. <optional>true</optional>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.tomcat</groupId>
  104. <artifactId>tomcat-servlet-api</artifactId>
  105. <version>7.0.33</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>ch.qos.logback</groupId>
  110. <artifactId>logback-classic</artifactId>
  111. <version>0.9.29</version>
  112. <scope>runtime</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>ch.qos.logback</groupId>
  116. <artifactId>logback-core</artifactId>
  117. <version>0.9.29</version>
  118. <scope>runtime</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>javax.servlet</groupId>
  122. <artifactId>jstl</artifactId>
  123. <version>1.2</version>
  124. <scope>runtime</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.slf4j</groupId>
  128. <artifactId>jcl-over-slf4j</artifactId>
  129. <version>1.7.5</version>
  130. <scope>runtime</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.security</groupId>
  134. <artifactId>spring-security-config</artifactId>
  135. <version>3.2.0.CI-SNAPSHOT</version>
  136. <scope>runtime</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework.security</groupId>
  140. <artifactId>spring-security-taglibs</artifactId>
  141. <version>3.2.0.CI-SNAPSHOT</version>
  142. <scope>runtime</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.security</groupId>
  146. <artifactId>spring-security-web</artifactId>
  147. <version>3.2.0.CI-SNAPSHOT</version>
  148. <scope>runtime</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>junit</groupId>
  152. <artifactId>junit</artifactId>
  153. <version>4.7</version>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.easytesting</groupId>
  158. <artifactId>fest-assert</artifactId>
  159. <version>1.4</version>
  160. <scope>test</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.mockito</groupId>
  164. <artifactId>mockito-core</artifactId>
  165. <version>1.8.5</version>
  166. <scope>test</scope>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework</groupId>
  170. <artifactId>spring-test</artifactId>
  171. <version>3.2.4.RELEASE</version>
  172. <scope>test</scope>
  173. </dependency>
  174. </dependencies>
  175. <properties>
  176. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  177. </properties>
  178. </project>