105 lines
3.4 KiB
XML
105 lines
3.4 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>yshop-module-pay</artifactId>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>yshop-module-pay-biz</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
pay 模块,我们放支付业务,提供业务的支付能力。
|
|
例如说:商户、应用、支付、退款等等
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-module-pay-api</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
|
|
<!-- 业务组件 -->
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-biz-operatelog</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-biz-tenant</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Web 相关 -->
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-redis</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!-- 消息队列相关 -->
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-mq</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Test 测试相关 -->
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- 工具类相关 -->
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-spring-boot-starter-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-module-express-api</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-module-member-api</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>co.yixiang.boot</groupId>
|
|
<artifactId>yshop-module-order-api</artifactId>
|
|
<version>1.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project>
|