We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ed042e commit d868887Copy full SHA for d868887
1 file changed
build.gradle
@@ -37,5 +37,9 @@ publishing {
37
dependencies {
38
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.15'
39
testImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.15'
40
- testImplementation group: 'org.junit', name: 'junit-bom', version: '5.11.4', ext: 'pom'
+ testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.11.4'
41
+}
42
+
43
+test {
44
+ useJUnitPlatform() // This is required for JUnit 5
45
}
0 commit comments