Slackbot
07/19/2023, 9:11 AMŁukasz Wasylkowski
07/19/2023, 10:08 AMGradle now supports running on Java 20.I'm confused about that, I've been running Gradle with Java 20 for a long time now (the toolchains are set to lower version). The release notes suggest that that the other way around was supported — run Gradle with Java 17 but use Jdk20 toolchain for compilation. Where exactly this incompatibility with Java 20 manifests?
Louis Jacomet
07/19/2023, 10:10 AMŁukasz Wasylkowski
07/19/2023, 10:12 AMFrederik Lohner
07/19/2023, 1:16 PMThe performance benefit these persistent compiler daemons introduce can vary depending on a wide range of factors. However, Gradle's internal performance tests show up to a 30% build time improvement for builds that are dominated by compiling Java sources.
😍 😍 😍Filipe Sousa
07/19/2023, 2:06 PMGradleWorkerMain
in memory for 2 daemons. It is normal?
$ jps|grep GradleWorkerMain|wc -l
43
Łukasz Wasylkowski
07/19/2023, 2:08 PMmax workers
, which only controls how many workers are working simultaneously. Which is unfortunate because it makes it that more difficult to establish how much memory Gradle will useFilipe Sousa
07/19/2023, 2:09 PMgradle.properties
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configureondemand=true
org.gradle.jvmargs=-Xmx2048M
org.gradle.parallel=true
Łukasz Wasylkowski
07/19/2023, 2:11 PMOctavia Togami
07/19/2023, 4:14 PMFrederik Lohner
07/19/2023, 4:25 PMMike Wacker
07/20/2023, 1:36 AM