- 新增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处理、限流、防重提交等丰富功能
65 lines
2.4 KiB
XML
65 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-backend</artifactId>
|
||
<version>${revision}</version>
|
||
<relativePath>../../pom.xml</relativePath>
|
||
</parent>
|
||
|
||
<name>coder-thin-template-monitor</name>
|
||
<artifactId>coder-thin-template-monitor</artifactId>
|
||
<description>系统监控模块:服务器资源监控、Redis监控、缓存管理等功能</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>
|
||
|
||
<!-- SpringDoc OpenAPI 3.0 -->
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Spring Boot Starter Data Redis -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
</dependency>
|
||
|
||
<!-- OSHI - 系统硬件信息库 -->
|
||
<dependency>
|
||
<groupId>com.github.oshi</groupId>
|
||
<artifactId>oshi-core</artifactId>
|
||
<version>6.4.10</version>
|
||
</dependency>
|
||
|
||
<!-- Apache Commons Lang3 -->
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |