pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>cn.sikey.cloud</groupId>
  7. <artifactId>sikey-business</artifactId>
  8. <version>2.3.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sikey-hmd-business</artifactId>
  12. <packaging>pom</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. hmd模块
  16. </description>
  17. <modules>
  18. <module>sikey-hmd-business-api</module>
  19. <module>sikey-hmd-business-biz</module>
  20. </modules>
  21. <properties>
  22. <java.version>23</java.version>
  23. <maven.compiler.source>${java.version}</maven.compiler.source>
  24. <maven.compiler.target>${java.version}</maven.compiler.target>
  25. <consul.version>4.2.0</consul.version>
  26. <!--<spring.cloud.alibaba.version>2023.0.1.0</spring.cloud.alibaba.version>-->
  27. <lombok.version>1.18.36</lombok.version>
  28. <logback.version>1.2.12</logback.version>
  29. <mapstruct.version>1.6.2</mapstruct.version>
  30. <spring.cloud.version>2024.0.0</spring.cloud.version>
  31. <spring.boot.version>3.4.0</spring.boot.version>
  32. <skywalking.version>9.0.0</skywalking.version>
  33. <opentracing.version>0.33.0</opentracing.version>
  34. <revision>2.3.0-SNAPSHOT</revision>
  35. <maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
  36. <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
  37. <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
  38. <okhttp3.version>4.12.0</okhttp3.version>
  39. <hutool.version>5.8.28</hutool.version>
  40. <google.zxing.version>3.5.2</google.zxing.version>
  41. <alipay.v3.version>3.0.0.ALL</alipay.v3.version>
  42. <wechat.v3.version>0.2.16</wechat.v3.version>
  43. <gson.version>2.11.0</gson.version>
  44. <security.version>3.4.4</security.version>
  45. <commons-codec.version>1.15</commons-codec.version>
  46. </properties>
  47. <dependencyManagement>
  48. <dependencies>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-dependencies</artifactId>
  52. <version>${spring.cloud.version}</version>
  53. <type>pom</type>
  54. <scope>import</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-dependencies</artifactId>
  59. <version>${spring.boot.version}</version>
  60. <type>pom</type>
  61. <scope>import</scope>
  62. </dependency>
  63. <!-- Web 开发基础依赖 -->
  64. <dependency>
  65. <groupId>cn.sikey.cloud</groupId>
  66. <artifactId>sikey-spring-boot-starter-web</artifactId>
  67. <version>${revision}</version>
  68. </dependency>
  69. <!-- Registry 注册中心相关 -->
  70. <!--<dependency>
  71. <groupId>com.alibaba.cloud</groupId>
  72. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  73. </dependency>-->
  74. <!-- Config 配置中心相关 -->
  75. <!--<dependency>
  76. <groupId>com.alibaba.cloud</groupId>
  77. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  78. </dependency>-->
  79. <!-- Spring Cloud Consul 配置中心 -->
  80. <dependency>
  81. <groupId>org.springframework.cloud</groupId>
  82. <artifactId>spring-cloud-starter-consul-config</artifactId>
  83. <version>${consul.version}</version>
  84. </dependency>
  85. <!-- Spring Cloud Consul 服务发现 -->
  86. <dependency>
  87. <groupId>org.springframework.cloud</groupId>
  88. <artifactId>spring-cloud-starter-consul-discovery</artifactId>
  89. <version>${consul.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. <version>${lombok.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.mapstruct</groupId>
  98. <artifactId>mapstruct</artifactId>
  99. <version>${mapstruct.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.mapstruct</groupId>
  103. <artifactId>mapstruct-jdk8</artifactId>
  104. <version>${mapstruct.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.mapstruct</groupId>
  108. <artifactId>mapstruct-processor</artifactId>
  109. <version>${mapstruct.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.skywalking</groupId>
  113. <artifactId>apm-toolkit-trace</artifactId>
  114. <version>${skywalking.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.skywalking</groupId>
  118. <artifactId>apm-toolkit-logback-1.x</artifactId>
  119. <version>${skywalking.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.skywalking</groupId>
  123. <artifactId>apm-toolkit-opentracing</artifactId>
  124. <version>${skywalking.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>io.opentracing</groupId>
  128. <artifactId>opentracing-api</artifactId>
  129. <version>${opentracing.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>io.opentracing</groupId>
  133. <artifactId>opentracing-util</artifactId>
  134. <version>${opentracing.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.opentracing</groupId>
  138. <artifactId>opentracing-noop</artifactId>
  139. <version>${opentracing.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.squareup.okhttp3</groupId>
  143. <artifactId>okhttp</artifactId>
  144. <version>${okhttp3.version}</version>
  145. </dependency>
  146. <!-- Hutool 核心库 -->
  147. <dependency>
  148. <groupId>cn.hutool</groupId>
  149. <artifactId>hutool-all</artifactId>
  150. <version>${hutool.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>cn.hutool</groupId>
  154. <artifactId>hutool-core</artifactId>
  155. <version>${hutool.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  160. <version>${spring.boot.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.alipay.sdk</groupId>
  164. <artifactId>alipay-sdk-java-v3</artifactId>
  165. <version>${alipay.v3.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.github.wechatpay-apiv3</groupId>
  169. <artifactId>wechatpay-java</artifactId>
  170. <version>${wechat.v3.version}</version>
  171. </dependency>
  172. <!-- 核心库(含自动签名HTTP客户端) -->
  173. <dependency>
  174. <groupId>com.github.wechatpay-apiv3</groupId>
  175. <artifactId>wechatpay-java-core</artifactId>
  176. <version>${wechat.v3.version}</version>
  177. </dependency>
  178. <!-- 显式添加 Gson -->
  179. <dependency>
  180. <groupId>com.google.code.gson</groupId>
  181. <artifactId>gson</artifactId>
  182. <version>${gson.version}</version>
  183. </dependency>
  184. <!-- DB 相关 -->
  185. <dependency>
  186. <groupId>cn.sikey.cloud</groupId>
  187. <artifactId>sikey-spring-boot-starter-mybatis</artifactId>
  188. <version>${revision}</version>
  189. </dependency>
  190. <!-- Redis 相关 -->
  191. <dependency>
  192. <groupId>cn.sikey.cloud</groupId>
  193. <artifactId>sikey-spring-boot-starter-redis</artifactId>
  194. <version>${revision}</version>
  195. </dependency>
  196. <!-- 参数校验 -->
  197. <dependency>
  198. <groupId>org.springframework.boot</groupId>
  199. <artifactId>spring-boot-starter-validation</artifactId>
  200. <version>${spring.boot.version}</version>
  201. </dependency>
  202. <!--<dependency>
  203. <groupId>org.apache.tomcat.embed</groupId>
  204. <artifactId>tomcat-embed-core</artifactId>
  205. </dependency>-->
  206. <dependency>
  207. <groupId>commons-codec</groupId>
  208. <artifactId>commons-codec</artifactId>
  209. <version>${commons-codec.version}</version>
  210. </dependency>
  211. <!-- RPC 远程调用相关 -->
  212. <!--<dependency>
  213. <groupId>org.springframework.cloud</groupId>
  214. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  215. <version>4.1.1</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.springframework.cloud</groupId>
  219. <artifactId>spring-cloud-starter-openfeign</artifactId>
  220. <version>4.1.1</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>io.github.openfeign</groupId>
  224. <artifactId>feign-okhttp</artifactId>
  225. <version>12.5</version>
  226. </dependency>-->
  227. <!--<dependency>
  228. <groupId>org.springframework.boot</groupId>
  229. <artifactId>spring-boot-starter-data-jpa</artifactId>
  230. <version>3.4.4</version>
  231. </dependency>-->
  232. <!--<dependency>
  233. <groupId>org.springframework.boot</groupId>
  234. <artifactId>spring-boot-starter-security</artifactId>
  235. <version>${security.version}</version>
  236. </dependency>-->
  237. </dependencies>
  238. </dependencyManagement>
  239. </project>