17 lines
451 B
Plaintext
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" |