From 21b79551a521115f47002cf159574276a5780277 Mon Sep 17 00:00:00 2001 From: gewuyou Date: Sun, 22 Jun 2025 20:15:36 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E5=BC=82=E5=B8=B8=E5=A4=84=E7=90=86?= =?UTF-8?q?=E6=A8=A1=E5=9D=97):=20=E6=9B=B4=E6=96=B0=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=E9=A1=B9=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 Webmvc.DTO 模块的依赖项范围从 implementation 改为 api- 添加 TRACE.STARTER 模块为 api 依赖项 -移除 springBoot.autoconfigure 的 implementation依赖项 --- forgeboot-webmvc/exception/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forgeboot-webmvc/exception/build.gradle.kts b/forgeboot-webmvc/exception/build.gradle.kts index fa016ea..21c6e7c 100644 --- a/forgeboot-webmvc/exception/build.gradle.kts +++ b/forgeboot-webmvc/exception/build.gradle.kts @@ -3,9 +3,9 @@ plugins{ } dependencies { implementation(project(Modules.Core.EXTENSION)) - implementation(project(Modules.Webmvc.DTO)) implementation(platform(libs.springBootDependencies.bom)) implementation(libs.springBoot.autoconfigure) + api(project(Modules.Webmvc.DTO)) api(project(Modules.TRACE.STARTER)) compileOnly(libs.springBootStarter.validation) compileOnly(libs.springBootStarter.web)