Skip to content

Installation

tessoir edited this page Mar 17, 2026 · 1 revision

Installation

KVerify is published to Maven Central. You can find the latest version here.

KVerify supports all Kotlin Multiplatform targets. Add the dependency to your build.gradle.kts:

dependencies {
    // Validation engine + built-in rules
    implementation("io.github.kverify:kverify-rule-set:<version>")

    // Validation engine only, if you don't need the built-in rules
    implementation("io.github.kverify:kverify-core:<version>")
}

kverify-core contains the validation engine. kverify-rule-set contains the built-in rules and pulls in kverify-core transitively — you only need one of the two.

Requirements

  • Kotlin 1.9+

Clone this wiki locally