-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
tessoir edited this page Mar 17, 2026
·
1 revision
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.
- Kotlin 1.9+