feat(build): Add forgeboot-context module

- Added a Context object, defining the module path related to forgeboot-context
-Includes four submodules: starter, api, impl and autoconfigure
This commit is contained in:
gewuyou 2025-06-05 16:09:53 +08:00
parent 6c30120016
commit c3f4b6973c

View File

@ -7,6 +7,12 @@
*/ */
object Modules { object Modules {
object Context{
const val STARTER = ":forgeboot-context-spring-boot-starter"
const val API = ":forgeboot-context-spring-boot-starter:forgeboot-context-api"
const val IMPL = ":forgeboot-context-spring-boot-starter:forgeboot-context-impl"
const val AUTOCONFIGURE = ":forgeboot-context-spring-boot-starter:forgeboot-context-autoconfigure"
}
object Webmvc { object Webmvc {
const val STARTER = ":forgeboot-webmvc-spring-boot-starter" const val STARTER = ":forgeboot-webmvc-spring-boot-starter"
const val DTO = ":forgeboot-webmvc-spring-boot-starter:forgeboot-webmvc-dto" const val DTO = ":forgeboot-webmvc-spring-boot-starter:forgeboot-webmvc-dto"