Files
dax-pay/pom.xml
DaxPay Dev d2c9197f00 refactor(capability-alipay): 移除官方 SDK,直连 oauth.token
capability-alipay 仅用于认证登录/换 openId,改用 HTTP + RSA2 自实现
alipay.system.oauth.token,避免主应用引入约 32MB 的 alipay-sdk-java。
2026-07-09 21:44:00 +08:00

88 lines
3.4 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.1.0</version>
<relativePath/>
</parent>
<groupId>cn.daxpay.open</groupId>
<artifactId>daxpay</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>dax-pay-open</name>
<description>DaxPay开源版支付系统</description>
<!-- 开源协议GNU LGPL v3.0 或更高版本 -->
<licenses>
<license>
<name>GNU Lesser General Public License v3.0 or later</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<modules>
<module>daxpay-platform</module>
<module>daxpay-payment</module>
<module>daxpay-channel</module>
<module>daxpay-start</module>
<module>daxpay-plugin</module>
<!-- 功能演示模块(可独立装配;需隔离时移除 daxpay-start 中对应依赖即可) -->
<module>daxpay-demo</module>
</modules>
<properties>
<java.version>25</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- 三方库版本集中管理(子模块通过继承获取) -->
<lombok.version>1.18.46</lombok.version>
<mapstruct.version>1.6.3</mapstruct.version>
<springdoc.version>3.0.3</springdoc.version>
<hutool.version>5.8.46</hutool.version>
<bouncycastle.version>1.84</bouncycastle.version>
<guava.version>33.6.0-jre</guava.version>
<mybatis-plus.version>3.5.16</mybatis-plus.version>
<mybatis-plus-join.version>1.5.7</mybatis-plus-join.version>
<lock4j.version>2.2.7</lock4j.version>
<aws-sdk.version>2.46.15</aws-sdk.version>
<sa-token.version>1.45.0</sa-token.version>
<caffeine.version>3.2.4</caffeine.version>
<ip2region.version>3.3.7</ip2region.version>
<wxjava.version>4.8.4.B</wxjava.version>
<commonmark.version>0.24.0</commonmark.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${mapstruct.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>