pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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-oauth2-core</artifactId>
  6. <version>5.0.0.BUILD-SNAPSHOT</version>
  7. <name>spring-security-oauth2-core</name>
  8. <description>spring-security-oauth2-core</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.security</groupId>
  52. <artifactId>spring-security-core</artifactId>
  53. <version>5.0.0.BUILD-SNAPSHOT</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-core</artifactId>
  59. <scope>compile</scope>
  60. <exclusions>
  61. <exclusion>
  62. <artifactId>commons-logging</artifactId>
  63. <groupId>commons-logging</groupId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-web</artifactId>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-logging</groupId>
  74. <artifactId>commons-logging</artifactId>
  75. <version>1.2</version>
  76. <scope>compile</scope>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.servlet</groupId>
  81. <artifactId>javax.servlet-api</artifactId>
  82. <version>3.1.0</version>
  83. <scope>provided</scope>
  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</groupId>
  117. <artifactId>spring-test</artifactId>
  118. <scope>test</scope>
  119. </dependency>
  120. </dependencies>
  121. <repositories>
  122. <repository>
  123. <id>spring-snapshot</id>
  124. <url>https://repo.spring.io/snapshot</url>
  125. </repository>
  126. </repositories>
  127. <build>
  128. <plugins>
  129. <plugin>
  130. <artifactId>maven-compiler-plugin</artifactId>
  131. <configuration>
  132. <source>1.8</source>
  133. <target>1.8</target>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>