coder-thin-template-backend/coder-thin-template-plugins/coder-thin-template-oss/pom.xml
Leo 9bff768648 feat: 全新的coder-thin-template企业级开发框架
- 新增coder-thin-template-common通用工具模块
- 新增coder-thin-template-model数据模型模块
- 新增coder-thin-template-modules业务模块容器
- 新增coder-thin-template-mybatisplus数据访问层
- 新增coder-thin-template-plugins插件化架构
- 新增coder-thin-template-web启动模块
- 完整的插件化企业级开发脚手架
- 支持Sa-Token鉴权、Excel处理、限流、防重提交等丰富功能
2025-10-17 11:08:22 +08:00

56 lines
1.9 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>org.leocoder.template</groupId>
<artifactId>coder-thin-template-plugins</artifactId>
<version>${revision}</version>
</parent>
<name>coder-thin-template-oss</name>
<artifactId>coder-thin-template-oss</artifactId>
<description>阿里云OSS对象存储模块</description>
<dependencies>
<!-- 全局公共模块 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-common</artifactId>
<version>${revision}</version>
</dependency>
<!-- 阿里云OSS SDK -->
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
</dependency>
<!-- MinIO SDK -->
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
</dependency>
<!-- Spring Boot Configuration Processor -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Spring Boot Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!-- Spring Boot Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</project>