We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786501c commit dac7f50Copy full SHA for dac7f50
build.gradle
@@ -105,7 +105,8 @@ subprojects {
105
}
106
107
108
- tasks.withType(Test).all {
+ tasks.withType(Test).configureEach {
109
+ useJUnitPlatform()
110
reports {
111
junitXml.outputPerTestCase = true
112
@@ -132,6 +133,10 @@ subprojects {
132
133
134
dependencies {
135
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
136
+ testImplementation(platform("org.junit:junit-bom:5.13.0"))
137
+ testImplementation(project(":junit-jupiter"))
138
+ testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
139
+ testRuntimeOnly("org.junit.platform:junit-platform-launcher")
140
141
142
checkstyle {
0 commit comments