- 新增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处理、限流、防重提交等丰富功能
57 lines
2.1 KiB
XML
57 lines
2.1 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>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
|
|
<name>coder-thin-template-portal</name>
|
|
<artifactId>coder-thin-template-portal</artifactId>
|
|
<description>前台业务模块</description>
|
|
|
|
<dependencies>
|
|
<!-- 公共模块 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-common</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- 数据统一返回、全局异常以及限流、数据脱敏、重复提交等插件 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-resultex</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- Sa-Token组件 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-sa-token</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- 操作日志组件 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-oper-logs</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- OSS存储组件 -->
|
|
<dependency>
|
|
<groupId>org.leocoder.template</groupId>
|
|
<artifactId>coder-thin-template-oss</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- SpringDoc OpenAPI 3.0 -->
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|