|
|
@@ -99,8 +99,8 @@ fun Project.configureKotlinTestSettings() {
|
|
|
dependencies {
|
|
|
testImplementation(kotlin("test-junit5"))
|
|
|
|
|
|
- testApi("org.junit.jupiter:junit-jupiter-api:5.2.0")
|
|
|
- testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.2.0")
|
|
|
+ testApi("org.junit.jupiter:junit-jupiter-api:${Versions.junit}")
|
|
|
+ testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${Versions.junit}")
|
|
|
}
|
|
|
}
|
|
|
isKotlinMpp -> {
|
|
|
@@ -114,8 +114,8 @@ fun Project.configureKotlinTestSettings() {
|
|
|
sourceSet.dependencies {
|
|
|
implementation(kotlin("test-junit5"))
|
|
|
|
|
|
- implementation("org.junit.jupiter:junit-jupiter-api:5.2.0")
|
|
|
- implementation("org.junit.jupiter:junit-jupiter-engine:5.2.0")
|
|
|
+ implementation("org.junit.jupiter:junit-jupiter-api:${Versions.junit}")
|
|
|
+ implementation("org.junit.jupiter:junit-jupiter-engine:${Versions.junit}")
|
|
|
}
|
|
|
}
|
|
|
}
|