This message was deleted.
# community-support
s
This message was deleted.
t
Can you provide
--stacktrace
It is possible that some of the tools does not support Java version 17.
j
could you tell me how to show it
i just downloaded the newest version of java aswell
im new here so i am not really familiar with all these things
t
Copy code
cd to-project/
./gradlew :compileJava --stacktrace
j
it seems like i fixed the problem since the game opened
👍 1
v
You were running Gradle with a pre-17 Java but the build had
release = 17
for the
compileJava
task which cannot work. It would be better if the build used JVM toolchains feature, then it would be decoupled from the version you run Gradle with. Btw. if you now use the latest Java version to run Gradle, that's not good either, as that is not supported: https://docs.gradle.org/current/userguide/compatibility.html