coder-thin-template-backend/heritage-plugins/pom.xml
Leo 09457ecebd feat: 新增heritage-plugins基础插件(第1部分)
- 新增heritage-resultex:统一结果封装和全局异常处理插件
- 新增heritage-desensitize:数据脱敏插件,支持手机号、身份证等
- 新增heritage-dict:字典翻译插件,自动翻译字典值
- 新增plugins父POM配置
2025-10-08 02:06:46 +08:00

30 lines
1.0 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.heritage</groupId>
<artifactId>heritage-backend</artifactId>
<version>${revision}</version>
</parent>
<artifactId>heritage-plugins</artifactId>
<packaging>pom</packaging>
<description>插件模块</description>
<modules>
<module>heritage-resultex</module>
<module>heritage-sa-token</module>
<module>heritage-desensitize</module>
<module>heritage-easyexcel</module>
<module>heritage-repect</module>
<module>heritage-limit</module>
<module>heritage-oper-logs</module>
<module>heritage-oss</module>
<module>heritage-dict</module>
<module>heritage-job</module>
</modules>
</project>