Files
2026-08-09 08:46:37 +08:00

42 lines
1.6 KiB
XML
Raw Permalink 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-plugin</artifactId>
<version>4.0.0-beta3</version>
</parent>
<artifactId>daxpay-plugin-risk</artifactId>
<packaging>jar</packaging>
<description>支付风控插件(黑名单配置 + 命中记录)</description>
<dependencies>
<!-- 审计日志模块IP 归属地查询服务, 海外 IP 拦截依赖) -->
<dependency>
<groupId>cn.daxpay.open</groupId>
<artifactId>capability-audit-log</artifactId>
<version>${project.version}</version>
</dependency>
<!-- 测试包 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!-- 单元测试 Mock(版本由 spring-boot-starter-parent BOM 管理) -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>