Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.07 KB

File metadata and controls

27 lines (21 loc) · 1.07 KB

Module kotlin-wrappers-bom

Kotlin Wrappers Bill of Materials is a special artifact that groups dependency versions that are known to be valid and tested to work together.

This will reduce the developers' pain of having to test the compatibility of different versions and reduce the chances to have version mismatches.

Usage:

val kotlinWrappersVersion = "2025.2.2"

dependencies {
    implementation(platform("org.jetbrains.kotlin-wrappers:kotlin-wrappers-bom:$kotlinWrappersVersion"))
    implementation("org.jetbrains.kotlin-wrappers:kotlin-emotion")
    implementation("org.jetbrains.kotlin-wrappers:kotlin-react")
    implementation("org.jetbrains.kotlin-wrappers:kotlin-react-dom")
    implementation("org.jetbrains.kotlin-wrappers:kotlin-react-query")
    implementation("org.jetbrains.kotlin-wrappers:kotlin-react-router-dom")
    implementation("org.jetbrains.kotlin-wrappers:kotlin-tanstack-react-table")
}

See also an example of using kotlin-wrappers-bom in a real project.