Remove debug log

This commit is contained in:
Andreas Pfurtscheller 2021-11-15 14:02:55 +01:00
parent 091991a640
commit e47cb7e3ec

View File

@ -19,8 +19,6 @@ def platform = osName.contains("Linux") ? 'linux' + (is64 ? '64' : '32') :
osName.contains("Windows") ? 'win' + (is64 ? '64' : '32') :
osName.contains("OS X") ? 'mac' + (isArm ? "Arm64" : "X86") : 'unknown'
println(System.getProperty("java.home"))
version = gitVersion()
sourceCompatibility = 1.8
targetCompatibility = 1.8