mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-03 11:06:46 +00:00
72 lines
2.3 KiB
XML
72 lines
2.3 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.bootx.platform</groupId>
|
|
<artifactId>daxpay-single</artifactId>
|
|
<version>2.0.2</version>
|
|
</parent>
|
|
|
|
<artifactId>daxpay-single-admin</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- 业务服务模块 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>daxpay-single-service</artifactId>
|
|
<version>${daxpay.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 安全认证 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>service-iam</artifactId>
|
|
<version>${bootx-platform.version}</version>
|
|
</dependency>
|
|
|
|
<!--分布式锁, 使用redisTemplate作为底层-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>lock4j-redis-template-spring-boot-starter</artifactId>
|
|
<version>${lock4j.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 基础API -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>service-baseapi</artifactId>
|
|
<version>${bootx-platform.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 安全认证 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>service-iam</artifactId>
|
|
<version>${bootx-platform.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 消息通知 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>service-notice</artifactId>
|
|
<version>${bootx-platform.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 文件管理 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>common-starter-file</artifactId>
|
|
</dependency>
|
|
|
|
<!-- websocket模块 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>common-websocket</artifactId>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</project>
|