forgeboot/forgeboot-trace/build.gradle.kts
gewuyou 3ce3cedc0f feat(module): Added forgeboot-common module
- Add forgeboot-common result processing related submodules - Implement unified response encapsulation class R and related interfaces
- Integrated international message parsing and request ID generation function
- Update project configuration to support the construction and release of new modules
2025-05-03 17:33:17 +08:00

15 lines
556 B
Plaintext

dependencies {
implementation(project(Modules.Core.EXTENSION))
implementation(project(Modules.Common.RESULT_API))
// Spring Cloud OpenFeign (Compile Only)
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfeign
compileOnly(libs.springCloudStarter.openfeign)
// Reactor Core (Compile Only)
// https://mvnrepository.com/artifact/io.projectreactor/reactor-core
compileOnly(libs.reactor.core)
compileOnly(libs.springBootStarter.web)
compileOnly(libs.springBootStarter.webflux)
}