pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>tofly-parent</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.3</version>
  9. </parent>
  10. <artifactId>tofly-getway</artifactId>
  11. <version>1.0.0</version>
  12. <name>tofly-getway</name>
  13. <description>Demo project for Spring Boot</description>
  14. <dependencies>
  15. <!--gateway 网关依赖,内置webflux 依赖-->
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-gateway</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.tofly</groupId>
  22. <artifactId>common-redis</artifactId>
  23. <version>1.0.3</version>
  24. </dependency>
  25. <!-- nacos配置中心 -->
  26. <dependency>
  27. <groupId>com.alibaba.cloud</groupId>
  28. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  29. </dependency>
  30. <!-- swagger -->
  31. <dependency>
  32. <groupId>io.springfox</groupId>
  33. <artifactId>springfox-swagger2</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.springfox</groupId>
  37. <artifactId>springfox-swagger-ui</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.tofly</groupId>
  41. <artifactId>swagger-bootstrap-ui</artifactId>
  42. <version>1.9.6</version>
  43. </dependency>
  44. <!-- 基础功能包 -->
  45. <dependency>
  46. <groupId>com.tofly</groupId>
  47. <artifactId>common-core</artifactId>
  48. <version>1.0.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-web</artifactId>
  53. <exclusions>
  54. <!--排除tomcat依赖-->
  55. <exclusion>
  56. <artifactId>*</artifactId>
  57. <groupId>*</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>