pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>fframwork</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tofly-getway</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-starter-config</artifactId>
  17. </dependency>
  18. <!--gateway 网关依赖,内置webflux 依赖-->
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-starter-gateway</artifactId>
  22. </dependency>
  23. <!-- thymeleaf -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  27. </dependency>
  28. <!-- <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  31. </dependency>-->
  32. <!--配置中心客户端-->
  33. <dependency>
  34. <groupId>com.tofly</groupId>
  35. <artifactId>common-core</artifactId>
  36. <version>1.0-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.springfox</groupId>
  40. <artifactId>springfox-swagger2</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.springfox</groupId>
  44. <artifactId>springfox-swagger-ui</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.tofly</groupId>
  48. <artifactId>swagger-bootstrap-ui</artifactId>
  49. <version>1.9.6</version>
  50. </dependency>
  51. <!--<dependency>-->
  52. <!--<groupId>com.github.xiaoymin</groupId>-->
  53. <!--<artifactId>swagger-bootstrap-ui</artifactId>-->
  54. <!--<version>1.9.3</version>-->
  55. <!--</dependency>-->
  56. <!--<dependency>-->
  57. <!--<groupId>org.word</groupId>-->
  58. <!--<artifactId>Swagger2Word</artifactId>-->
  59. <!--<version>1.4.2-SNAPSHOT</version>-->
  60. <!--<exclusions>-->
  61. <!--&lt;!&ndash;排除tomcat依赖&ndash;&gt;-->
  62. <!--<exclusion>-->
  63. <!--<groupId>org.springframework.boot</groupId>-->
  64. <!--<artifactId>spring-boot-starter-web</artifactId>-->
  65. <!--</exclusion>-->
  66. <!--<exclusion>-->
  67. <!--<groupId>org.projectlombok</groupId>-->
  68. <!--<artifactId>lombok</artifactId>-->
  69. <!--</exclusion>-->
  70. <!--<exclusion>-->
  71. <!--<groupId>org.apache.commons</groupId>-->
  72. <!--<artifactId>commons-lang3</artifactId>-->
  73. <!--</exclusion>-->
  74. <!--</exclusions>-->
  75. <!--</dependency>-->
  76. <!--<dependency>
  77. <groupId>com.zyplayer</groupId>
  78. <artifactId>swagger-mg-ui</artifactId>
  79. </dependency>-->
  80. </dependencies>
  81. <!--<build>-->
  82. <!--<plugins>-->
  83. <!--<plugin>-->
  84. <!--<groupId>org.springframework.boot</groupId>-->
  85. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  86. <!--<executions>-->
  87. <!--<execution>-->
  88. <!--<goals>-->
  89. <!--<goal>repackage</goal>-->
  90. <!--</goals>-->
  91. <!--</execution>-->
  92. <!--</executions>-->
  93. <!--</plugin>-->
  94. <!--</plugins>-->
  95. <!--</build>-->
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>repackage</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>