- 新增 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
26 lines
838 B
XML
26 lines
838 B
XML
<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-count</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<!-- 打包方式 -->
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>han-note-count-api</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
<description>RPC层, 供其他服务调用</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.hanserwei</groupId>
|
|
<artifactId>hanserwei-common</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|