17 lines
328 B
Kotlin
17 lines
328 B
Kotlin
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
include(":convention")
|
|
rootProject.name = "build-logic"
|