31 lines
711 B
Kotlin
Vendored
31 lines
711 B
Kotlin
Vendored
rootProject.name = "build-settings-logic"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
// versions should be kept in sync with `gradle/libs.versions.toml`
|
|
plugins {
|
|
// cannot be applied here, it's an early-evaluated included build
|
|
id("dev.panuszewski.typesafe-conventions") version "0.10.0" apply false
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|