.flattened-pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jt.cloud</groupId>
  6. <artifactId>jt-gateway</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <name>jt-gateway</name>
  9. <description>API 服务网关,基于 Spring Cloud Gateway 实现</description>
  10. <url>https://github.com/YunaiV/jt-cloud</url>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.jt.cloud</groupId>
  14. <artifactId>jt-module-system-api</artifactId>
  15. <version>2.6.1-SNAPSHOT</version>
  16. <scope>compile</scope>
  17. <exclusions>
  18. <exclusion>
  19. <artifactId>springdoc-openapi-webmvc-core</artifactId>
  20. <groupId>org.springdoc</groupId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-gateway</artifactId>
  27. <version>4.2.1</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.github.xiaoymin</groupId>
  32. <artifactId>knife4j-gateway-spring-boot-starter</artifactId>
  33. <version>4.5.0</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  39. <version>4.2.1</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba.cloud</groupId>
  44. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  45. <version>2023.0.3.2</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  51. <version>2023.0.3.2</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.jt.cloud</groupId>
  56. <artifactId>jt-spring-boot-starter-monitor</artifactId>
  57. <version>2.6.1-SNAPSHOT</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.google.guava</groupId>
  62. <artifactId>guava</artifactId>
  63. <version>33.4.8-jre</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.github.ben-manes.caffeine</groupId>
  68. <artifactId>caffeine</artifactId>
  69. <version>3.1.8</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. </dependencies>
  73. <repositories>
  74. <repository>
  75. <id>huaweicloud</id>
  76. <name>huawei</name>
  77. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  78. </repository>
  79. <repository>
  80. <id>aliyunmaven</id>
  81. <name>aliyun</name>
  82. <url>https://maven.aliyun.com/repository/public</url>
  83. </repository>
  84. <repository>
  85. <snapshots>
  86. <enabled>false</enabled>
  87. </snapshots>
  88. <id>spring-milestones</id>
  89. <name>Spring Milestones</name>
  90. <url>https://repo.spring.io/milestone</url>
  91. </repository>
  92. <repository>
  93. <releases>
  94. <enabled>false</enabled>
  95. </releases>
  96. <id>spring-snapshots</id>
  97. <name>Spring Snapshots</name>
  98. <url>https://repo.spring.io/snapshot</url>
  99. </repository>
  100. </repositories>
  101. </project>