pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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.SR11</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>3.0.0-SNAPSHOT</version>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.bytedeco</groupId>
  40. <artifactId>javacv</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>org.bytedeco</groupId>
  44. <artifactId>javacpp</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>org.bytedeco</groupId>
  48. <artifactId>javacv-platform</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>joinery</groupId>
  52. <artifactId>jave</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>com.aliyun</groupId>
  56. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>com.aliyun</groupId>
  60. <artifactId>aliyun-java-sdk-core</artifactId>
  61. </exclusion>
  62. <exclusion>
  63. <groupId>org.apache.poi</groupId>
  64. <artifactId>poi</artifactId>
  65. </exclusion>
  66. <exclusion>
  67. <groupId>org.apache.poi</groupId>
  68. <artifactId>poi-ooxml</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-web</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.fdkankan</groupId>
  78. <artifactId>4dkankan-utils-redis</artifactId>
  79. <version>3.0.0-SNAPSHOT</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-devtools</artifactId>
  88. <scope>runtime</scope>
  89. <optional>true</optional>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. <optional>true</optional>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-test</artifactId>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.cloud</groupId>
  103. <artifactId>spring-cloud-starter-gateway</artifactId>
  104. <exclusions>
  105. <exclusion>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-web</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework</groupId>
  113. <artifactId>spring-web</artifactId>
  114. <version>5.2.16.RELEASE</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba.cloud</groupId>
  118. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-starter-actuator</artifactId>
  123. </dependency>
  124. <!--nacos 客户端 配置中心-->
  125. <dependency>
  126. <groupId>com.alibaba.cloud</groupId>
  127. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.yomahub</groupId>
  131. <artifactId>tlog-web-spring-boot-starter</artifactId>
  132. <version>1.3.6</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.yomahub</groupId>
  136. <artifactId>tlog-gateway-spring-boot-starter</artifactId>
  137. <version>1.3.6</version>
  138. </dependency>
  139. <!-- <dependency>-->
  140. <!-- <groupId>de.codecentric</groupId>-->
  141. <!-- <artifactId>spring-boot-admin-client</artifactId>-->
  142. <!-- <version>2.3.1</version>-->
  143. <!-- </dependency>-->
  144. </dependencies>
  145. <dependencyManagement>
  146. <dependencies>
  147. <dependency>
  148. <groupId>com.alibaba.cloud</groupId>
  149. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  150. <version>2.2.7.RELEASE</version>
  151. <type>pom</type>
  152. <scope>import</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.cloud</groupId>
  156. <artifactId>spring-cloud-dependencies</artifactId>
  157. <version>${spring.cloud-version}</version>
  158. <type>pom</type>
  159. <scope>import</scope>
  160. </dependency>
  161. </dependencies>
  162. </dependencyManagement>
  163. <build>
  164. <finalName>${artifactId}</finalName>
  165. <plugins>
  166. <plugin>
  167. <groupId>org.springframework.boot</groupId>
  168. <artifactId>spring-boot-maven-plugin</artifactId>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. <distributionManagement>
  173. <repository>
  174. <id>releases</id>
  175. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  176. </repository>
  177. <snapshotRepository>
  178. <id>snapshots</id>
  179. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  180. </snapshotRepository>
  181. </distributionManagement>
  182. </project>