pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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-preauth-xml</artifactId>
  6. <version>4.0.4.RELEASE</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-preauth-xml</name>
  9. <description>spring-security-samples-preauth-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>commons-logging</groupId>
  37. <artifactId>commons-logging</artifactId>
  38. <version>1.2</version>
  39. <scope>compile</scope>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>javax.servlet-api</artifactId>
  45. <version>3.0.1</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>ch.qos.logback</groupId>
  50. <artifactId>logback-classic</artifactId>
  51. <version>1.1.2</version>
  52. <scope>runtime</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>jcl-over-slf4j</artifactId>
  57. <version>1.7.7</version>
  58. <scope>runtime</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.security</groupId>
  62. <artifactId>spring-security-config</artifactId>
  63. <version>4.0.4.RELEASE</version>
  64. <scope>runtime</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.security</groupId>
  68. <artifactId>spring-security-web</artifactId>
  69. <version>4.0.4.RELEASE</version>
  70. <scope>runtime</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>junit</groupId>
  74. <artifactId>junit</artifactId>
  75. <version>4.11</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.easytesting</groupId>
  80. <artifactId>fest-assert</artifactId>
  81. <version>1.4</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.mockito</groupId>
  86. <artifactId>mockito-core</artifactId>
  87. <version>1.10.19</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. </dependencies>
  96. <dependencyManagement>
  97. <dependencies>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-framework-bom</artifactId>
  101. <version>4.2.5.RELEASE</version>
  102. <type>pom</type>
  103. <scope>import</scope>
  104. </dependency>
  105. </dependencies>
  106. </dependencyManagement>
  107. <properties>
  108. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  109. </properties>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <configuration>
  115. <source>1.7</source>
  116. <target>1.7</target>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <artifactId>maven-war-plugin</artifactId>
  121. <version>2.3</version>
  122. <configuration>
  123. <failOnMissingWebXml>false</failOnMissingWebXml>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>