mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-03 19:16:21 +00:00
62 lines
2.1 KiB
XML
62 lines
2.1 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single</artifactId>
|
|
<version>2.0.3</version>
|
|
</parent>
|
|
|
|
<artifactId>daxpay-single-start</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- 支付网关 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single-gateway</artifactId>
|
|
<version>${daxpay.version}</version>
|
|
</dependency>
|
|
<!-- 管理平台 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single-admin</artifactId>
|
|
<version>${daxpay.version}</version>
|
|
</dependency>
|
|
<!-- 定时任务 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>common-starter-quartz</artifactId>
|
|
</dependency>
|
|
<!-- 代码生成模块 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>common-starter-code-gen</artifactId>
|
|
</dependency>
|
|
<!-- 支付演示模块 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single-demo</artifactId>
|
|
<version>${daxpay.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.afterturn</groupId>
|
|
<artifactId>easypoi-spring-boot-starter</artifactId>
|
|
<version>4.4.0</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
<build>
|
|
<finalName>daxpay-start</finalName>
|
|
<plugins>
|
|
<!-- spring-boot -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|