Using the Bill of Materials (BOM)
If you're using multiple Strikt modules (and Gradle >= 5.0) you can import Strikt's BOM and then omit versions for individual modules. For example:
dependencies {
testImplementation(platform("io.strikt:strikt-bom:0.26.0-dev.2.uncommitted+3c0bc88"))
testImplementation("io.strikt:strikt-arrow")
testImplementation("io.strikt:strikt-jackson")
testImplementation("io.strikt:strikt-java-time")
}