mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-08 21:47:36 +00:00
71 lines
2.3 KiB
XML
71 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.0</version>
|
||
</parent>
|
||
|
||
<artifactId>daxpay-single-admin</artifactId>
|
||
|
||
<dependencies>
|
||
<!-- 业务服务模块 -->
|
||
<dependency>
|
||
<groupId>cn.bootx.platform</groupId>
|
||
<artifactId>daxpay-single-service</artifactId>
|
||
<version>${dax.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>
|