pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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-center-scene-v3</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</artifactId>
  36. <version>2.0.0-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fdkankan</groupId>
  40. <artifactId>4dkankan-utils-rabbitmq</artifactId>
  41. <version>2.0.0-SNAPSHOT</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fdkankan</groupId>
  45. <artifactId>4dkankan-utils-redis</artifactId>
  46. <version>2.0.0-SNAPSHOT</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.fdkankan</groupId>
  50. <artifactId>4dkankan-utils-db</artifactId>
  51. <version>2.0.0-SNAPSHOT</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.fdkankan</groupId>
  55. <artifactId>4dkankan-utils-fyun</artifactId>
  56. <version>2.0.0-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-test</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.alibaba.cloud</groupId>
  69. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba.csp</groupId>
  73. <artifactId>sentinel-datasource-nacos</artifactId>
  74. <version>1.7.2</version>
  75. </dependency>
  76. <dependency>
  77. <artifactId>4dkankan-utils-app-push</artifactId>
  78. <groupId>com.fdkankan</groupId>
  79. <version>2.0.0-SNAPSHOT</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.fdkankan</groupId>
  83. <artifactId>4dkankan-utils-dingtalk</artifactId>
  84. <version>2.0.0-SNAPSHOT</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.yomahub</groupId>
  88. <artifactId>tlog-web-spring-boot-starter</artifactId>
  89. <version>1.3.6</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.yomahub</groupId>
  93. <artifactId>tlog-feign-spring-boot-starter</artifactId>
  94. <version>1.3.6</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>de.codecentric</groupId>
  98. <artifactId>spring-boot-admin-client</artifactId>
  99. <version>2.3.1</version>
  100. </dependency>
  101. <!-- htt请求工具-->
  102. <dependency>
  103. <groupId>com.dtflys.forest</groupId>
  104. <artifactId>forest-spring-boot-starter</artifactId>
  105. <version>1.5.19</version>
  106. </dependency>
  107. </dependencies>
  108. <dependencyManagement>
  109. <dependencies>
  110. <dependency>
  111. <groupId>com.alibaba.cloud</groupId>
  112. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  113. <version>2.2.7.RELEASE</version>
  114. <type>pom</type>
  115. <scope>import</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.cloud</groupId>
  119. <artifactId>spring-cloud-dependencies</artifactId>
  120. <version>${spring.cloud-version}</version>
  121. <type>pom</type>
  122. <scope>import</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.fdkankan</groupId>
  126. <artifactId>4dkankan-utils-fyun</artifactId>
  127. <version>2.0.0-SNAPSHOT</version>
  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. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-surefire-plugin</artifactId>
  140. <configuration>
  141. <testFailureIgnore>true</testFailureIgnore>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <distributionManagement>
  147. <repository>
  148. <id>releases</id>
  149. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
  150. </repository>
  151. <snapshotRepository>
  152. <id>snapshots</id>
  153. <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
  154. </snapshotRepository>
  155. </distributionManagement>
  156. </project>