kotlin-sample/buildSrc/settings.gradle.kts
2025-01-13 14:44:19 +03:00

17 lines
451 B
Plaintext

dependencyResolutionManagement {
// Use Maven Central and the Gradle Plugin Portal for resolving dependencies in the shared build logic (`buildSrc`) project.
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
}
// Reuse the version catalog from the main build.
versionCatalogs {
create("libs") {
from(files("../gradle/libs.versions.toml"))
}
}
}
rootProject.name = "buildSrc"