Skip to content

Support Version Catalog #2252

@zhangz1han

Description

@zhangz1han

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)
    // ...
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions