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 d6e4e86 commit 914b01aCopy full SHA for 914b01a
build.gradle
@@ -19,13 +19,17 @@ allprojects {
19
dependencies {
20
compileOnly 'org.jetbrains:annotations:26.0.2'
21
22
- testImplementation(platform('org.junit:junit-bom:5.11.3'))
+ testImplementation(platform('org.junit:junit-bom:5.12.1'))
23
testImplementation('org.junit.jupiter:junit-jupiter')
24
- testImplementation('com.google.guava:guava:33.3.1-jre')
+ testRuntimeOnly('org.junit.platform:junit-platform-launcher')
25
+ testImplementation('com.google.guava:guava:33.4.6-jre')
26
}
27
28
test {
29
useJUnitPlatform()
30
+ testLogging {
31
+ events "passed", "skipped", "failed"
32
+ }
33
34
35
compileJava {
0 commit comments