mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 04:02:11 +08:00
- Migrated the RequestIdProvider interface from the forgeboot-common-result module to the forgeboot-trace-api module - Refactored the TraceAutoConfiguration class to use a new package structure - Create the forgeboot-trace-api, forgeboot-trace-autoconfigure, and forgeboot-trace-impl modules - Update the location of the relevant classes and files to accommodate the new module structure
13 lines
569 B
Plaintext
13 lines
569 B
Plaintext
dependencies {
|
|
implementation(project(Modules.Core.EXTENSION))
|
|
compileOnly(project(Modules.TRACE.API))
|
|
compileOnly(platform(libs.springBootDependencies.bom))
|
|
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)
|
|
kapt(libs.springBoot.configuration.processor)
|
|
}
|