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