-
-
Notifications
You must be signed in to change notification settings - Fork 776
Open
Labels
Milestone
Description
Many libraries with multiple artifacts already support Version Catalog to simplify dependency management. It does not need to declare each library and version in libs.versions.toml, which is simpler and more convenient than BOM.
Example
Usage
// settings.gradle.kts
dependencyResolutionManagement {
versionCatalogs {
create("koinLibs") {
from("io.insert-koin:koin-version-catalog:4.1.0")
}
}
}
// <module>/build.gradle.kts
dependencies {
implementation(koinLibs.core)
testImplementation(koinLibs.test)
// ...
}Reactions are currently unavailable