pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.12.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.fdkankan</groupId>
  12. <artifactId>4dkankan-gateway</artifactId>
  13. <version>2.0.0-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <spring.cloud-version>Hoxton.SR8</spring.cloud-version>
  17. </properties>
  18. <repositories>
  19. <repository>
  20. <id>releases</id>
  21. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  22. </repository>
  23. <repository>
  24. <id>snapshots</id>
  25. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  26. </repository>
  27. <repository>
  28. <id>nexus-aliyun</id>
  29. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  30. </repository>
  31. </repositories>
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.fdkankan</groupId>
  35. <artifactId>4dkankan-common-utils</artifactId>
  36. <version>2.0.0-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fdkankan</groupId>
  40. <artifactId>4dkankan-utils-redis</artifactId>
  41. <version>2.0.0-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fdkankan</groupId>
  45. <artifactId>4dkankan-utils-mongodb</artifactId>
  46. <version>2.0.0-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-devtools</artifactId>
  55. <scope>runtime</scope>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-gateway</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba.cloud</groupId>
  74. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-actuator</artifactId>
  79. </dependency>
  80. <!--nacos 客户端 配置中心-->
  81. <dependency>
  82. <groupId>com.alibaba.cloud</groupId>
  83. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.yomahub</groupId>
  87. <artifactId>tlog-web-spring-boot-starter</artifactId>
  88. <version>1.3.6</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.yomahub</groupId>
  92. <artifactId>tlog-gateway-spring-boot-starter</artifactId>
  93. <version>1.3.6</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>de.codecentric</groupId>
  97. <artifactId>spring-boot-admin-client</artifactId>
  98. <version>2.3.1</version>
  99. </dependency>
  100. <!-- Sa-Token 权限认证(Reactor响应式集成), 在线文档:http://sa-token.dev33.cn/ -->
  101. <dependency>
  102. <groupId>cn.dev33</groupId>
  103. <artifactId>sa-token-reactor-spring-boot-starter</artifactId>
  104. <version>1.30.0</version>
  105. </dependency>
  106. <!-- Sa-Token 整合 jwt -->
  107. <dependency>
  108. <groupId>cn.dev33</groupId>
  109. <artifactId>sa-token-jwt</artifactId>
  110. <version>1.30.0</version>
  111. </dependency>
  112. </dependencies>
  113. <dependencyManagement>
  114. <dependencies>
  115. <dependency>
  116. <groupId>com.alibaba.cloud</groupId>
  117. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  118. <version>2.2.7.RELEASE</version>
  119. <type>pom</type>
  120. <scope>import</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework.cloud</groupId>
  124. <artifactId>spring-cloud-dependencies</artifactId>
  125. <version>${spring.cloud-version}</version>
  126. <type>pom</type>
  127. <scope>import</scope>
  128. </dependency>
  129. </dependencies>
  130. </dependencyManagement>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. <distributionManagement>
  140. <repository>
  141. <id>releases</id>
  142. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  143. </repository>
  144. <snapshotRepository>
  145. <id>snapshots</id>
  146. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  147. </snapshotRepository>
  148. </distributionManagement>
  149. </project>