feat(count): 初始化计数服务模块
- 新增 han-note-count 模块及其子模块 han-note-count-api 和 han-note-count-biz - 配置 application.yml 和 bootstrap.yml,支持 Nacos 注册与配置中心 - 添加 MyBatis-Plus、Redis、MySQL 等基础依赖 - 集成日志配置 logback-spring.xml,支持异步输出及多环境配置 - 设置 .gitignore 忽略本地开发配置文件 - 更新 IDEA 编码配置,指定新增模块的字符集为 UTF-8- 在主 pom.xml 中注册新模块 han-note-count
This commit is contained in:
26
han-note-count/pom.xml
Normal file
26
han-note-count/pom.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<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.hanserwei</groupId>
|
||||
<artifactId>han-note</artifactId>
|
||||
<version>${revision}</version>
|
||||
</parent>
|
||||
|
||||
<!-- 多模块项目需要配置打包方式为 pom -->
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<!-- 子模块管理 -->
|
||||
<modules>
|
||||
<module>han-note-count-api</module>
|
||||
<module>han-note-count-biz</module>
|
||||
</modules>
|
||||
|
||||
<artifactId>han-note-count</artifactId>
|
||||
<!-- 项目名称 -->
|
||||
<name>${project.artifactId}</name>
|
||||
<!-- 项目描述 -->
|
||||
<description>计数服务</description>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user