coder-common-thin-backend/coder-common-thin-plugins/coder-common-thin-resultex/pom.xml
Leo 3fd0f04f43 feat: 完善Sa-Token插件架构实现
- 添加Sa-Token权限认证接口实现
- 完善插件化配置架构
- 修复StpInterface缺失导致的启动失败问题
- 实现用户角色和权限获取逻辑
2025-07-05 14:41:05 +08:00

61 lines
2.4 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>org.leocoder.thin</groupId>
<artifactId>coder-common-thin-plugins</artifactId>
<version>${revision}</version>
</parent>
<name>coder-common-thin-resultex</name>
<artifactId>coder-common-thin-resultex</artifactId>
<description>全局统一返回 和 全局异常类</description>
<dependencies>
<!-- Model模块 -->
<dependency>
<groupId>org.leocoder.thin</groupId>
<artifactId>coder-common-thin-model</artifactId>
<version>${revision}</version>
</dependency>
<!-- MyBatisPlus模块[可删除coder-dict插件已经依赖] -->
<dependency>
<groupId>org.leocoder.thin</groupId>
<artifactId>coder-common-thin-mybatisplus</artifactId>
<version>${revision}</version>
</dependency>
<!-- 数据字典翻译 -->
<!-- <dependency> -->
<!-- <groupId>org.leocoder.thin</groupId> -->
<!-- <artifactId>coder-common-thin-dict</artifactId> -->
<!-- <version>${revision}</version> -->
<!-- </dependency> -->
<!-- 限流(工具类模块已包含里面,其他插件都使用) -->
<dependency>
<groupId>org.leocoder.thin</groupId>
<artifactId>coder-common-thin-limit</artifactId>
<version>${revision}</version>
</dependency>
<!-- 重复提交插件-->
<dependency>
<groupId>org.leocoder.thin</groupId>
<artifactId>coder-common-thin-repect</artifactId>
<version>${revision}</version>
</dependency>
<!-- EasyExcel插件 -->
<dependency>
<groupId>org.leocoder.thin</groupId>
<artifactId>coder-common-thin-easyexcel</artifactId>
<version>${revision}</version>
</dependency>
<!-- Sa-Token 权限认证用来处理全局拦截sa-token异常使用在线文档https://sa-token.cc -->
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-spring-boot3-starter</artifactId>
</dependency>
</dependencies>
</project>