pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xinghuacuntravel</groupId>
  8. <artifactId>jeesharp-business</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>business-mobile-gateway</artifactId>
  12. <description>移动端网关 - 为APP/小程序/H5提供统一接口</description>
  13. <properties>
  14. <maven.compiler.source>21</maven.compiler.source>
  15. <maven.compiler.target>21</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <!-- 与 business-wechat 对齐:网关编译/IDE 需解析 WxPayConfig(4.6.8+ 含 setPublicKeyId/setPublicKeyContent) -->
  20. <dependency>
  21. <groupId>com.github.binarywang</groupId>
  22. <artifactId>weixin-java-pay</artifactId>
  23. </dependency>
  24. <!-- business-member-application -->
  25. <dependency>
  26. <groupId>com.xinghuacuntravel</groupId>
  27. <artifactId>business-member-application</artifactId>
  28. <version>1.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.xinghuacuntravel</groupId>
  32. <artifactId>business-finance-api</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <!-- 支付中心 API:C 端微信 V3 渠道(实现由 web-starter 引入 business-pay-service) -->
  36. <dependency>
  37. <groupId>com.xinghuacuntravel</groupId>
  38. <artifactId>business-pay-api</artifactId>
  39. <version>${project.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.xinghuacuntravel</groupId>
  43. <artifactId>business-coupon-bean</artifactId>
  44. <version>${project.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.xinghuacuntravel</groupId>
  48. <artifactId>business-coupon-api</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.xinghuacuntravel</groupId>
  53. <artifactId>business-marketing-bean</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.xinghuacuntravel</groupId>
  58. <artifactId>business-marketing-api</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. <!-- business-site-setting-application -->
  62. <dependency>
  63. <groupId>com.xinghuacuntravel</groupId>
  64. <artifactId>business-site-setting-application</artifactId>
  65. <version>1.0-SNAPSHOT</version>
  66. </dependency>
  67. <!-- business-food-application -->
  68. <dependency>
  69. <groupId>com.xinghuacuntravel</groupId>
  70. <artifactId>business-food-application</artifactId>
  71. <version>1.0-SNAPSHOT</version>
  72. </dependency>
  73. <!-- business-ai-application -->
  74. <dependency>
  75. <groupId>com.xinghuacuntravel</groupId>
  76. <artifactId>business-ai-application</artifactId>
  77. <version>1.0-SNAPSHOT</version>
  78. </dependency>
  79. <!-- 商城地址(小程序收货地址) -->
  80. <dependency>
  81. <groupId>com.xinghuacuntravel</groupId>
  82. <artifactId>business-mall-bean</artifactId>
  83. <version>${project.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.xinghuacuntravel</groupId>
  87. <artifactId>business-mall-application</artifactId>
  88. <version>${project.version}</version>
  89. </dependency>
  90. <!-- 统一订单中心:TradeOrderMobileController 显式依赖,不仅靠商城模块传递 -->
  91. <dependency>
  92. <groupId>com.xinghuacuntravel</groupId>
  93. <artifactId>business-order-api</artifactId>
  94. <version>${project.version}</version>
  95. </dependency>
  96. <!-- 站内信(jeesharp-spring-boot-starter-letter):C 端消息中心 -->
  97. <dependency>
  98. <groupId>org.jeesharp.boot</groupId>
  99. <artifactId>jeesharp-spring-boot-starter-letter</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.xinghuacuntravel</groupId>
  103. <artifactId>business-content-security-api</artifactId>
  104. <version>${project.version}</version>
  105. </dependency>
  106. </dependencies>
  107. <repositories>
  108. <repository>
  109. <id>sz-maven-public</id>
  110. <name>sz-maven-public</name>
  111. <url>https://developer.huawei.com/repo/</url>
  112. </repository>
  113. </repositories>
  114. </project>