mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2025-08-12 13:31:23 +02:00
14 lines
341 B
Kotlin
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"))
|
|
}
|
|
}
|
|
}
|