2023-11-27 08:47:47 -05:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
2024-11-15 19:19:22 -06:00
|
|
|
versionCatalogs {
|
|
|
|
create("libs") {
|
|
|
|
from(files("../gradle/libs.versions.toml"))
|
|
|
|
}
|
|
|
|
create("testLibs") {
|
|
|
|
from(files("../gradle/test-libs.versions.toml"))
|
|
|
|
}
|
|
|
|
}
|
2023-11-27 08:47:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
|
|
|
|
include(":plugins")
|
|
|
|
include(":tools")
|