1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-10 15:50:57 +00:00

Update build.gradle.kts

Print Java version for tests
This commit is contained in:
PlantUML 2023-10-05 17:05:30 +02:00 committed by GitHub
parent 368a7827b8
commit 50d1a1caa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}