- 新增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处理、限流、防重提交等丰富功能
61 lines
2.5 KiB
XML
61 lines
2.5 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-resultex</name>
|
||
<artifactId>coder-thin-template-resultex</artifactId>
|
||
<description>全局统一返回 和 全局异常类</description>
|
||
|
||
<dependencies>
|
||
<!-- Model模块 -->
|
||
<dependency>
|
||
<groupId>org.leocoder.template</groupId>
|
||
<artifactId>coder-thin-template-model</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<!-- MyBatisPlus模块[可删除,coder-dict插件已经依赖] -->
|
||
<dependency>
|
||
<groupId>org.leocoder.template</groupId>
|
||
<artifactId>coder-thin-template-mybatisplus</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<!-- 数据字典翻译 -->
|
||
<!-- <dependency> -->
|
||
<!-- <groupId>org.leocoder.template</groupId> -->
|
||
<!-- <artifactId>coder-thin-template-dict</artifactId> -->
|
||
<!-- <version>${revision}</version> -->
|
||
<!-- </dependency> -->
|
||
<!-- 限流(工具类模块已包含里面,其他插件都使用) -->
|
||
<dependency>
|
||
<groupId>org.leocoder.template</groupId>
|
||
<artifactId>coder-thin-template-limit</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<!-- 重复提交插件-->
|
||
<dependency>
|
||
<groupId>org.leocoder.template</groupId>
|
||
<artifactId>coder-thin-template-repect</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<!-- EasyExcel插件 -->
|
||
<dependency>
|
||
<groupId>org.leocoder.template</groupId>
|
||
<artifactId>coder-thin-template-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> |