mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-05 20:18:22 +00:00
40 lines
1.3 KiB
XML
40 lines
1.3 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.0</version>
|
|
</parent>
|
|
|
|
<artifactId>daxpay-single-start</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- 支付网关 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single-gateway</artifactId>
|
|
<version>${dax.version}</version>
|
|
</dependency>
|
|
<!-- 管理平台 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single-admin</artifactId>
|
|
<version>${dax.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>
|
|
</dependencies>
|
|
|
|
</project>
|