18 lines
298 B
Kotlin
18 lines
298 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name="build-logic"
|
|
include(":convention")
|