22 lines
376 B
Text
22 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"
|