pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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-preauth</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <packaging>war</packaging>
  8. <name>spring-security-samples-xml-preauth</name>
  9. <description>spring-security-samples-xml-preauth</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@pivotal.io</email>
  27. </developer>
  28. <developer>
  29. <id>jgrandja</id>
  30. <name>Joe Grandja</name>
  31. <email>jgrandja@pivotal.io</email>
  32. </developer>
  33. </developers>
  34. <scm>
  35. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  36. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  37. <url>https://github.com/spring-projects/spring-security</url>
  38. </scm>
  39. <properties>
  40. <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
  41. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-framework-bom</artifactId>
  47. <version>4.3.5.RELEASE</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <dependencies>
  54. <dependency>
  55. <groupId>commons-logging</groupId>
  56. <artifactId>commons-logging</artifactId>
  57. <version>1.2</version>
  58. <scope>compile</scope>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>javax.servlet</groupId>
  63. <artifactId>javax.servlet-api</artifactId>
  64. <version>3.0.1</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>ch.qos.logback</groupId>
  69. <artifactId>logback-classic</artifactId>
  70. <version>1.1.2</version>
  71. <scope>runtime</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.slf4j</groupId>
  75. <artifactId>jcl-over-slf4j</artifactId>
  76. <version>1.7.7</version>
  77. <scope>runtime</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.security</groupId>
  81. <artifactId>spring-security-config</artifactId>
  82. <version>5.0.0.BUILD-SNAPSHOT</version>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.security</groupId>
  87. <artifactId>spring-security-web</artifactId>
  88. <version>5.0.0.BUILD-SNAPSHOT</version>
  89. <scope>runtime</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>junit</groupId>
  93. <artifactId>junit</artifactId>
  94. <version>4.12</version>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.assertj</groupId>
  99. <artifactId>assertj-core</artifactId>
  100. <version>3.6.2</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.mockito</groupId>
  105. <artifactId>mockito-core</artifactId>
  106. <version>1.10.19</version>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-test</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. </dependencies>
  115. <repositories>
  116. <repository>
  117. <id>spring-snapshot</id>
  118. <url>https://repo.spring.io/snapshot</url>
  119. </repository>
  120. </repositories>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <artifactId>maven-compiler-plugin</artifactId>
  125. <configuration>
  126. <source>1.8</source>
  127. <target>1.8</target>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <artifactId>maven-war-plugin</artifactId>
  132. <version>2.3</version>
  133. <configuration>
  134. <failOnMissingWebXml>false</failOnMissingWebXml>
  135. </configuration>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. </project>