I’m well out of my comfort zone putting a reply into this, but sometimes I like to just investigate random stuff and see what I can discover. With everybody stumped anyway, I figure it can’t hurt.
Have a look at this:
I noticed a couple of things that are consistent between these issues:
This suggests that the setup is using a version of Java that is more recent than what the project was compiled for. Given that the support guy in the other post indicates that major revision 63 is jdk19, I’m guessing 65 is jdk21, which is consistent with what you indicated you have installed.
Then I saw a link to this, which indicates that versions of Gradle and Java generally need to match:
https://docs.gradle.org/current/userguide/compatibility.html
and if I’m correct in assuming this means you’re using Gradle 7.4.2:
then it looks like your setup is trying to use jdk21 with this project, even though you have jdk17 installed as well for presumably this reason. That points to one other thing he mentions: “What is JAVA_HOME
envirionment variable set to?” According to another similar issue, a mismatch here can cause this sort of unexpected compatibility problem, as some people have mentioned here:
Hopefully that helps. And if not, it was definitely an interesting distraction, lol XD