21 lines
376 B
Text
21 lines
376 B
Text
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
versionCatalogs.create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
|
|
rootProject.name = "build-plugin"
|