Files
clean-architecture-backend-…/src/build-logic/settings.gradle
T

14 lines
514 B
Groovy

// The included build that holds this repository's convention plugins.
//
// Its own settings are deliberately tiny: an included build for build logic should not need the
// registry validation, toolchain resolution or plugin management the main build does, and giving it
// any of those would make the thing that validates the build depend on the build it validates.
dependencyResolutionManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = 'build-logic'