Skip to content

Latest commit

 

History

History

kotlin-wrappers-bom

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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 = "1.0.0-pre.791"

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.