mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 04:02:11 +08:00
- 在 TraceAutoConfiguration 中添加 ContextHolder依赖 - 更新 traceRequestIdProvider 方法以使用 ContextHolder - 修改 TraceRequestIdProvider 类以使用 ContextHolder- 调整 forgeboot-trace-impl 的构建配置,将 context-starter 依赖改为 compileOnly - 移除 forgeboot-trace-impl 中的 spring-boot-configuration-processor 依赖
13 lines
561 B
Plaintext
13 lines
561 B
Plaintext
dependencies {
|
|
implementation(platform(libs.springBootDependencies.bom))
|
|
api(project(Modules.Core.EXTENSION))
|
|
compileOnly(project(Modules.Context.STARTER))
|
|
compileOnly(project(Modules.TRACE.API))
|
|
compileOnly(platform(libs.springCloudDependencies.bom))
|
|
compileOnly(libs.springBootStarter.webflux)
|
|
compileOnly(libs.springBootStarter.web)
|
|
// Spring Cloud OpenFeign (Compile Only)
|
|
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfeign
|
|
compileOnly(libs.springCloudStarter.openfeign)
|
|
}
|