mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-13 07:45:41 +08:00
54 lines
1.8 KiB
XML
54 lines
1.8 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-platform-capability</artifactId>
|
|
<version>4.0.0-beta3</version>
|
|
</parent>
|
|
|
|
<artifactId>capability-file</artifactId>
|
|
<description>文件存储</description>
|
|
|
|
<dependencies>
|
|
<!-- web容器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!-- AWS SDK v2 S3 -->
|
|
<dependency>
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
<artifactId>s3</artifactId>
|
|
<version>${aws-sdk.version}</version>
|
|
</dependency>
|
|
<!-- 数据库 -->
|
|
<dependency>
|
|
<groupId>cn.daxpay.open</groupId>
|
|
<artifactId>common-mybatis-plus</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!-- 认证 -->
|
|
<dependency>
|
|
<groupId>cn.daxpay.open</groupId>
|
|
<artifactId>capability-auth</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-http</artifactId>
|
|
<version>${hutool.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- 缓存 -->
|
|
<dependency>
|
|
<groupId>cn.daxpay.open</groupId>
|
|
<artifactId>capability-cache</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|