mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 00:12:08 +08:00
- 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
15 lines
556 B
Plaintext
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)
|
|
}
|