mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-12 23:45:39 +08:00
42 lines
1.6 KiB
XML
42 lines
1.6 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-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>
|