fdroidserver/tests/source-files/catalog.test/settings.gradle.kts
linsui 24dc3baadf scanner: catalog: relax VERSION_CATALOG_REGEX
There may be other blocks in dependencyResolutionManagement
2024-10-20 21:21:28 +08:00

14 lines
341 B
Kotlin

dependencyResolutionManagement {
repositories {
mavenCentral()
}
defaultLibrariesExtensionName = "projectLibs"
versionCatalogs {
create("libs") {
from(files("./libs.versions.toml"))
}
create("anotherLibs") {
from(files("$rootDir/libs.versions.toml"))
}
}
}