mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-13 07:45:41 +08:00
- 全部模块 pom.xml + capability-wechat/README.md + application-dev.yml 版本号 beta1 -> beta2 - _config/sql/table.sql 全量表结构(含转账订单/直连商户新表新字段) - _config/sql/data.sql 全量种子数据(经 redact-data.mjs 脱敏)
55 lines
2.1 KiB
XML
55 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.daxpay.open</groupId>
|
||
<artifactId>daxpay</artifactId>
|
||
<version>4.0.0-beta2</version>
|
||
<relativePath>../pom.xml</relativePath>
|
||
</parent>
|
||
|
||
<artifactId>daxpay-demo</artifactId>
|
||
<packaging>jar</packaging>
|
||
<description>功能演示模块(可独立装配;默认随 daxpay-start 打包,需隔离时移除 start 中对应依赖即可)</description>
|
||
|
||
<dependencies>
|
||
<!-- Lombok -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- web框架 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Artemis 消息队列通用模块 -->
|
||
<!-- 提供 ArtemisTemplateService,并传递带出 common-json / spring-jms / platform-core(含 Res/Result/异常/swagger) -->
|
||
<dependency>
|
||
<groupId>cn.daxpay.open</groupId>
|
||
<artifactId>common-artemis</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 审计日志模块(提供 IpToRegionService,用于 IP 归属地查询演示) -->
|
||
<dependency>
|
||
<groupId>cn.daxpay.open</groupId>
|
||
<artifactId>capability-audit-log</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 支付域内核(提供 PaySignUtil,用于测试回调验签演示;传递 common-config 含 PlatformConfigProperties) -->
|
||
<dependency>
|
||
<groupId>cn.daxpay.open</groupId>
|
||
<artifactId>daxpay-payment-core</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|