pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>tofly-parent</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.4</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-oauth</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.4</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.tofly</groupId>
  17. <artifactId>common-core</artifactId>
  18. <version>1.0.3</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.security.oauth.boot</groupId>
  22. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-autoconfigure</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-context-support</artifactId>
  35. <version>5.2.9.RELEASE</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.springfox</groupId>
  39. <artifactId>springfox-core</artifactId>
  40. <version>2.9.2</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.springfox</groupId>
  45. <artifactId>springfox-spi</artifactId>
  46. <version>2.9.2</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-spring-web</artifactId>
  52. <version>2.9.2</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-swagger2</artifactId>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>io.swagger</groupId>
  61. <artifactId>swagger-models</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.swagger</groupId>
  67. <artifactId>swagger-models</artifactId>
  68. </dependency>
  69. <!--<dependency>-->
  70. <!--<groupId>io.springfox</groupId>-->
  71. <!--<artifactId>springfox-swagger-ui</artifactId>-->
  72. <!--</dependency>-->
  73. </dependencies>
  74. </project>