mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-17 00:12:29 +03: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"))
|
|
}
|
|
}
|
|
}
|