| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>jeesharp-business</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>business-mobile-gateway</artifactId>
- <description>移动端网关 - 为APP/小程序/H5提供统一接口</description>
- <properties>
- <maven.compiler.source>21</maven.compiler.source>
- <maven.compiler.target>21</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- 与 business-wechat 对齐:网关编译/IDE 需解析 WxPayConfig(4.6.8+ 含 setPublicKeyId/setPublicKeyContent) -->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-pay</artifactId>
- </dependency>
- <!-- business-member-application -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-application</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-finance-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 支付中心 API:C 端微信 V3 渠道(实现由 web-starter 引入 business-pay-service) -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-pay-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-coupon-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-coupon-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-marketing-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-marketing-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- business-site-setting-application -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-site-setting-application</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- business-food-application -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-food-application</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- business-ai-application -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-ai-application</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- 商城地址(小程序收货地址) -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-mall-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-mall-application</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 统一订单中心:TradeOrderMobileController 显式依赖,不仅靠商城模块传递 -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-order-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 站内信(jeesharp-spring-boot-starter-letter):C 端消息中心 -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-letter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-content-security-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>sz-maven-public</id>
- <name>sz-maven-public</name>
- <url>https://developer.huawei.com/repo/</url>
- </repository>
- </repositories>
- </project>
|