- 新增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处理、限流、防重提交等丰富功能
64 lines
2.4 KiB
XML
64 lines
2.4 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-sa-token</name>
|
|
<artifactId>coder-thin-template-sa-token</artifactId>
|
|
<description>Sa-Token模块</description>
|
|
|
|
<dependencies>
|
|
<!-- 全局公共模块 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-common</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- MyBatisPlus模块 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-mybatisplus</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- Aop依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<!-- Sa-Token 权限认证 start -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<!-- Sa-Token 整合 Redis[使用 jackson 序列化方式] -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-redis-jackson</artifactId>
|
|
</dependency>
|
|
<!-- 注意:无论使用哪种序列化方式,你都必须为项目提供一个 Redis 实例化方案 -->
|
|
<!-- 提供Redis连接池[Sa-Token] -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
</dependency>
|
|
<!-- Sa-Token 整合 SpringAOP 实现注解鉴权 -->
|
|
<dependency>
|
|
<groupId>cn.dev33</groupId>
|
|
<artifactId>sa-token-spring-aop</artifactId>
|
|
</dependency>
|
|
<!-- BCrypt密码加密 -->
|
|
<dependency>
|
|
<groupId>org.mindrot</groupId>
|
|
<artifactId>jbcrypt</artifactId>
|
|
<version>0.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |