Files
cn-rdms/rdms-framework/pom.xml

46 lines
2.0 KiB
XML
Raw Normal View History

2026-03-11 19:32:37 +08:00
<?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>com.njcn</groupId>
<artifactId>cn-rdms</artifactId>
<version>${revision}</version>
</parent>
<packaging>pom</packaging>
<modules>
<!--通用功能-->
<module>rdms-common</module>
<module>rdms-spring-boot-starter-env</module>
<module>rdms-spring-boot-starter-web</module>
<module>rdms-spring-boot-starter-rpc</module>
<module>rdms-spring-boot-starter-biz-ip</module>
<module>rdms-spring-boot-starter-test</module>
<module>rdms-spring-boot-starter-excel</module>
<module>rdms-spring-boot-starter-mybatis</module>
<module>rdms-spring-boot-starter-protection</module>
<module>rdms-spring-boot-starter-redis</module>
<module>rdms-spring-boot-starter-security</module>
<module>rdms-spring-boot-starter-websocket</module>
<module>rdms-spring-boot-starter-mq</module>
</modules>
<artifactId>rdms-framework</artifactId>
<description>
RDMS 框架功能模块,每一个子模块都代表一个功能组件。每个组件包括两部分:
1. core 包:是该组件的核心封装
2. config 包:是该组件基于 Spring 的配置
技术组件,也分成两类:
1. 框架组件:和我们熟悉的 MyBatis、Redis 等等的拓展
2. 业务组件:和业务相关的组件的封装,例如说数据字典、操作日志等等。
如果是业务组件Maven 名字会包含 biz
</description>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>