heritage-backend/heritage-modules/pom.xml
Leo f507bdea83 feat: 新增heritage-modules业务模块
- 新增heritage-system系统管理模块
  - 用户管理、角色管理、菜单管理
  - 字典管理、文件管理、图片管理
  - 登录日志、操作日志管理
  - 仪表盘统计功能
- 新增heritage-monitor系统监控模块
  - 服务器监控(CPU、内存、JVM、磁盘)
  - Redis缓存监控
  - 在线用户管理
2025-10-08 02:08:48 +08:00

23 lines
714 B
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.heritage</groupId>
<artifactId>heritage-backend</artifactId>
<version>${revision}</version>
</parent>
<artifactId>heritage-modules</artifactId>
<packaging>pom</packaging>
<description>业务模块</description>
<modules>
<module>heritage-system</module>
<module>heritage-monitor</module>
</modules>
</project>