Files
dax-pay/daxpay-platform/daxpay-platform-capability/capability-auth/pom.xml
daxpay ad07f6b225 chore(release): 升级至 4.0.0-beta2, 全量同步表结构与种子数据
- 全部模块 pom.xml + capability-wechat/README.md + application-dev.yml 版本号 beta1 -> beta2
- _config/sql/table.sql 全量表结构(含转账订单/直连商户新表新字段)
- _config/sql/data.sql 全量种子数据(经 redact-data.mjs 脱敏)
2026-08-05 14:25:06 +08:00

65 lines
2.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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-platform-capability</artifactId>
<version>4.0.0-beta2</version>
</parent>
<artifactId>capability-auth</artifactId>
<dependencies>
<!-- web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- redis -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- Sa-Token 权限认证, 在线文档https://sa-token.cc -->
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-spring-boot4-starter</artifactId>
<version>${sa-token.version}</version>
</dependency>
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-redis-jackson</artifactId>
<version>${sa-token.version}</version>
</dependency>
<!--spring 配置 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-spring</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Jackson配置 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-json</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 项目配置 -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-config</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 国际化(异常日志输出 messageKey 的固定中文翻译) -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>common-i18n</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>