File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
common/junit-platform-native
java-application-with-custom-tests
kotlin-application-with-tests Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,10 @@ dependencies {
5858 compileOnly libs. test. junit. jupiter. core
5959 testImplementation libs. test. junit. vintage
6060
61+ testImplementation libs. test. junit. jupiter. core
62+
6163 testRuntimeOnly(platform(libs. test. junit. bom))
64+ testCompileOnly(platform(libs. test. junit. bom))
6265 testRuntimeOnly libs. test. junit. platform. console
6366 testRuntimeOnly libs. test. junit. platform. launcher
6467 testRuntimeOnly libs. test. junit. jupiter. core
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ sourceSets {
6262
6363configurations {
6464 integTestImplementation. extendsFrom(testImplementation)
65+ integTestRuntimeOnly. extendsFrom(testRuntimeOnly)
6566}
6667
6768dependencies {
Original file line number Diff line number Diff line change @@ -54,7 +54,10 @@ dependencies {
5454 implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk8'
5555
5656 testImplementation ' org.jetbrains.kotlin:kotlin-test'
57+ testRuntimeOnly(platform(" org.junit:junit-bom:5.11.0" ))
58+ testRuntimeOnly(" org.junit.platform:junit-platform-console:1.11.0" )
5759 testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
60+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter" )
5861}
5962
6063application {
You can’t perform that action at this time.
0 commit comments