Files
dax-pay/daxpay-single/daxpay-single-admin/pom.xml
2023-12-15 11:20:50 +08:00

71 lines
2.3 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 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>