mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 03:48:52 +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
80 lines
2.9 KiB
Plaintext
80 lines
2.9 KiB
Plaintext
// The settings file is the entry point of every Gradle build.
|
|
// Its primary purpose is to define the subprojects.
|
|
// It is also used for some aspects of project-wide configuration, like managing plugins, dependencies, etc.
|
|
// https://docs.gradle.org/current/userguide/settings_file_basics.html
|
|
|
|
dependencyResolutionManagement {
|
|
// Use Maven Central as the default repository (where Gradle will download dependencies) in all subprojects.
|
|
@Suppress("UnstableApiUsage")
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
// Use the Foojay Toolchains plugin to automatically download JDKs required by subprojects.
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
|
|
}
|
|
|
|
// Include the `app` and `utils` subprojects in the build.
|
|
// If there are changes in only one of the projects, Gradle will rebuild only the one that has changed.
|
|
// Learn more about structuring projects with Gradle - https://docs.gradle.org/8.7/userguide/multi_project_builds.html
|
|
|
|
|
|
rootProject.name = "forgeboot"
|
|
|
|
//region module webmvc
|
|
include(
|
|
"forgeboot-webmvc",
|
|
":forgeboot-webmvc:forgeboot-webmvc-version-starter",
|
|
":forgeboot-webmvc:forgeboot-webmvc-logger-starter"
|
|
)
|
|
project(":forgeboot-webmvc").name = "forgeboot-webmvc-spring-boot-starter"
|
|
project(":forgeboot-webmvc:forgeboot-webmvc-version-starter").name = "forgeboot-webmvc-version-spring-boot-starter"
|
|
project(":forgeboot-webmvc:forgeboot-webmvc-logger-starter").name = "forgeboot-webmvc-logger-spring-boot-starter"
|
|
//endregion
|
|
|
|
//region module core
|
|
include(
|
|
"forgeboot-core",
|
|
":forgeboot-core:forgeboot-core-extension"
|
|
)
|
|
project(":forgeboot-core").name = "forgeboot-core"
|
|
project(":forgeboot-core:forgeboot-core-extension").name = "forgeboot-core-extension"
|
|
//endregion
|
|
|
|
//region module i18n
|
|
include(
|
|
"forgeboot-i18n"
|
|
)
|
|
project(":forgeboot-i18n").name = "forgeboot-i18n-spring-boot-starter"
|
|
//endregion
|
|
|
|
//region module webflux
|
|
include(
|
|
"forgeboot-webflux",
|
|
)
|
|
project(":forgeboot-webflux").name = "forgeboot-webflux-spring-boot-starter"
|
|
//endregion
|
|
|
|
//region module trace
|
|
include(
|
|
"forgeboot-trace"
|
|
)
|
|
project(":forgeboot-trace").name = "forgeboot-trace-spring-boot-starter"
|
|
//endregion
|
|
|
|
//region module common
|
|
include(
|
|
"forgeboot-common",
|
|
":forgeboot-common:forgeboot-common-result",
|
|
":forgeboot-common:forgeboot-common-result:forgeboot-common-result-api",
|
|
":forgeboot-common:forgeboot-common-result:forgeboot-common-result-impl",
|
|
// ":forgeboot-common:forgeboot-common-result:forgeboot-common-result-extension",
|
|
)
|
|
project(":forgeboot-common").name = "forgeboot-common"
|
|
project(":forgeboot-common:forgeboot-common-result").name = "forgeboot-common-result"
|
|
project(":forgeboot-common:forgeboot-common-result:forgeboot-common-result-api").name = "forgeboot-common-result-api"
|
|
project(":forgeboot-common:forgeboot-common-result:forgeboot-common-result-impl").name = "forgeboot-common-result-impl"
|
|
//endregion
|