pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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-boot-helloworld</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <name>spring-security-samples-boot-helloworld</name>
  8. <description>spring-security-samples-boot-helloworld</description>
  9. <url>http://spring.io/spring-security</url>
  10. <organization>
  11. <name>spring.io</name>
  12. <url>http://spring.io/</url>
  13. </organization>
  14. <licenses>
  15. <license>
  16. <name>The Apache Software License, Version 2.0</name>
  17. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <id>rwinch</id>
  24. <name>Rob Winch</name>
  25. <email>rwinch@pivotal.io</email>
  26. </developer>
  27. <developer>
  28. <id>jgrandja</id>
  29. <name>Joe Grandja</name>
  30. <email>jgrandja@pivotal.io</email>
  31. </developer>
  32. </developers>
  33. <scm>
  34. <connection>scm:git:git://github.com/spring-projects/spring-security</connection>
  35. <developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
  36. <url>https://github.com/spring-projects/spring-security</url>
  37. </scm>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-framework-bom</artifactId>
  43. <version>4.3.5.RELEASE</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-web</artifactId>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.security</groupId>
  62. <artifactId>spring-security-config</artifactId>
  63. <version>5.0.0.BUILD-SNAPSHOT</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.security</groupId>
  68. <artifactId>spring-security-web</artifactId>
  69. <version>5.0.0.BUILD-SNAPSHOT</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.thymeleaf.extras</groupId>
  74. <artifactId>thymeleaf-extras-springsecurity4</artifactId>
  75. <version>2.1.2.RELEASE</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-logging</groupId>
  80. <artifactId>commons-logging</artifactId>
  81. <version>1.2</version>
  82. <scope>compile</scope>
  83. <optional>true</optional>
  84. </dependency>
  85. <dependency>
  86. <groupId>ch.qos.logback</groupId>
  87. <artifactId>logback-classic</artifactId>
  88. <version>1.1.2</version>
  89. <scope>test</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.slf4j</groupId>
  111. <artifactId>jcl-over-slf4j</artifactId>
  112. <version>1.7.7</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-starter-test</artifactId>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.security</groupId>
  122. <artifactId>spring-security-test</artifactId>
  123. <version>5.0.0.BUILD-SNAPSHOT</version>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-test</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. </dependencies>
  132. <repositories>
  133. <repository>
  134. <id>spring-snapshot</id>
  135. <url>https://repo.spring.io/snapshot</url>
  136. </repository>
  137. </repositories>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <artifactId>maven-compiler-plugin</artifactId>
  142. <configuration>
  143. <source>1.8</source>
  144. <target>1.8</target>
  145. </configuration>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>