KT-24353 change junit5 version to minimal possible (5.2.0 -> 5.0.0)

However use the latest version of junit engine for running tests.
This commit is contained in:
evgzakharov
2018-05-14 10:56:31 +03:00
committed by Ilya Gorbunov
parent 84ee97cae9
commit 634279621d
+2 -2
View File
@@ -18,8 +18,8 @@ dependencies {
expectedBy project(':kotlin-test:kotlin-test-annotations-common')
compile project(':kotlin-test:kotlin-test-jvm')
compile("org.junit.jupiter:junit-jupiter-api:$junit5Version")
testRuntime("org.junit.jupiter:junit-jupiter-engine:$junit5Version")
compile("org.junit.jupiter:junit-jupiter-api:5.0.0")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.2.0")
}
jar {