how do i fix this?
# community-support
k
how do i fix this?
🧵 1
v
Please do not split topics across several threads. This makes following the conversation in the threads view very hard as the context of the other messages is missing. If you have additional information either edit the original message or post to its thread. Regarding the problem, what is unclear with the message? You run Gradle with Java 11, but as you use Gradle 9+, you need to use Java 17+ to run Gradle. There are various ways how you might have set it, but most probably your
JAVA_HOME
environment variable points to a Java 11 JDK and you need to point it to a Java 17+ JDK. Or if
JAVA_HOME
is not set, then most probably you have a Java 11 JDK in your
PATH
, and you could either make sure in the
PATH
is a JAVA 17+ JDK or do set
JAVA_HOME
to a Java 17+ JDK as
JAVA_HOME
wins over
PATH
.