File tree Expand file tree Collapse file tree 8 files changed +10
-0
lines changed
java-application-with-custom-tests
java-application-with-reflection
java-application-with-resources
java-application-with-tests
kotlin-application-with-tests
multi-project-with-tests/core Expand file tree Collapse file tree 8 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ dependencies {
6868 testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
6969 testImplementation(' org.junit.jupiter:junit-jupiter' )
7070 integTestImplementation project(" :" )
71+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
72+ testRuntimeOnly(" org.junit.platform:junit-platform-reporting:1.11.0" )
7173}
7274
7375def integTest = tasks. register(" integTest" , Test ) {
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def junitVersion = providers.gradleProperty('junit.jupiter.version')
5858dependencies {
5959 testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
6060 testImplementation(' org.junit.jupiter:junit-jupiter' )
61+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
6162}
6263
6364test {
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def junitVersion = providers.gradleProperty('junit.jupiter.version')
5858dependencies {
5959 testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
6060 testImplementation(' org.junit.jupiter:junit-jupiter' )
61+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
6162}
6263
6364test {
Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ def junitVersion = providers.gradleProperty('junit.jupiter.version')
5858dependencies {
5959 testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
6060 testImplementation(' org.junit.jupiter:junit-jupiter' )
61+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
62+ testRuntimeOnly(" org.junit.platform:junit-platform-reporting:1.11.0" )
6163}
6264
6365test {
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ def junitVersion = providers.gradleProperty('junit.jupiter.version')
5454dependencies {
5555 testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
5656 testImplementation(' org.junit.jupiter:junit-jupiter' )
57+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
5758}
5859
5960graalvmNative {
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ repositories {
5151dependencies {
5252 testImplementation ' org.junit.jupiter:junit-jupiter:5.11.0'
5353 testImplementation " org.junit.vintage:junit-vintage-engine:5.11.0"
54+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
5455}
5556
5657application {
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ dependencies {
5454 implementation ' org.jetbrains.kotlin:kotlin-stdlib-jdk8'
5555
5656 testImplementation ' org.jetbrains.kotlin:kotlin-test'
57+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
5758}
5859
5960application {
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ dependencies {
5959 implementation(project(" :utils" ))
6060 testImplementation(platform(" org.junit:junit-bom:${ junitVersion} " ))
6161 testImplementation(' org.junit.jupiter:junit-jupiter' )
62+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher:1.11.0" )
6263}
6364
6465test {
You can’t perform that action at this time.
0 commit comments