- 新增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处理、限流、防重提交等丰富功能
46 lines
1.7 KiB
XML
46 lines
1.7 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-backend</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
|
|
<name>coder-mybatis-plus</name>
|
|
<artifactId>coder-thin-template-mybatisplus</artifactId>
|
|
<description>MybatisPlus插件</description>
|
|
|
|
<dependencies>
|
|
<!-- Mapper针对pojo,bo,vo,dto等依赖进来 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-model</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- MySQL数据库连接依赖[只有接口工程需要] -->
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
<!-- Mapper会用到MyBatisPlus的类 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<!-- MyBatisPlus PaginationInnerInterceptor分离插件 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
|
</dependency>
|
|
<!-- p6spy SQL打印 -->
|
|
<dependency>
|
|
<groupId>p6spy</groupId>
|
|
<artifactId>p6spy</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |