| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?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-member</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>business-member-application</artifactId>
- <name>business-member-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>
- <!-- Bean 模块(Application 直接引用 Entity/DTO/VO/Convert) -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- Service 模块依赖 -->
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-member-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- Domain Service 继承 BaseInterface,须显式引入避免 clean 后编译 classpath 缺失 -->
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-justauth</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-core</artifactId>
- </dependency>
- <!-- 与 business-wechat / WxJava 版本一致,供手机号解析类型与 WxErrorException -->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-miniapp</artifactId>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-wechat</artifactId>
- <version>1.0-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-content-security-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jeesharp.boot</groupId>
- <artifactId>jeesharp-spring-boot-starter-message</artifactId>
- </dependency>
- </dependencies>
- </project>
|