| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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>business-coupon</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>business-coupon-application</artifactId>
- <name>business-coupon-application</name>
- <description>优惠券模块 - Application 层(编排领券、积分兑换等,依赖会员领域服务)</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>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-coupon-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-coupon-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 会员 Entity / MemberOrderDisplay 等(MemberService 接口签名依赖,须显式引入避免 IDE/部分部署 classpath 缺失) -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 会员主数据(发券校验、列表补全) -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 积分兑换扣减(跨模块 API) -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-common-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-wechat</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-core</artifactId>
- </dependency>
- </dependencies>
- </project>
|