Skip to content

Commit

Permalink
Update build.gradle.kts
Browse files Browse the repository at this point in the history
Print Java version for tests
  • Loading branch information
arnaudroques authored Oct 5, 2023
1 parent 368a782 commit 50d1a1c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ tasks.withType<Javadoc>().configureEach {
}

tasks.test {
doFirst {
println("Java Home:" + System.getProperty("java.home"));
println("Java Version: " + System.getProperty("java.version"));
}
useJUnitPlatform()
testLogging.showStandardStreams = true
}
Expand Down

0 comments on commit 50d1a1c

Please sign in to comment.