what version of the JVM are being using as the target for their plugins these days? I currently target 11 for most of my plugins, but per the compatibility matrix, it looks like I could bump that to 17, unless I'm misunderstanding?
o
Octavia Togami
08/26/2026, 7:26 PM
If you only target Gradle 9+, then yes you can use 17 without concern as the Gradle daemon will always be 17 or higher.
t
tony
08/26/2026, 7:28 PM
that's what I thought. I wish the compat matrix were a bit more clear on the "9+" part. I shouldn't have to find the version of the compat matrix from Gradle 8.x to see old requirements. The compat matrix "feels" like it's meant to be true for all extent releases
y
ysb33r
08/26/2026, 8:16 PM
If you build For plugin consumption then it needs to be as wide as possible.
We still build a lot of them against JDK8 because we target 7.3+.
But as @Octavia Togami said, it depends what you target.
If you build in-house only you can do what you want.
👍 1
m
madisp
08/26/2026, 8:31 PM
it might depend on the ecosystem as well - Android Gradle Plugin 8.0 and later requires JDK17+
madisp
08/26/2026, 8:32 PM
(8.0 was released more than 3 years ago, so IMHO it's quite OK to require JDK17 if you have something that works in tandem with AGP)
t
tony
08/26/2026, 8:37 PM
for the plugin I'm thinking of, I advertise support for Gradle 8.11 (works with both JVM and Android), so I'll stick with JDK11 for now. But thanks everyone for the feedback!