refactor: 排除commons-logging依赖

This commit is contained in:
zhouhao
2025-07-24 15:00:04 +08:00
parent 4644d5dbc7
commit 4d164df847
2 changed files with 7 additions and 1 deletions

View File

@@ -45,4 +45,4 @@ jobs:
# Step 4: 构建并发布到 Maven 私有仓库
- name: Build and Deploy to Maven
run: mvn clean deploy -q -DskipTests -pl "$(./changes.sh)"
run: mvn clean deploy -DskipTests -pl "$(./changes.sh)"

View File

@@ -55,6 +55,12 @@
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>