blob: 705bfb5e577139e4a0f0c38abfc3749dcf26e12a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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"
|