This message was deleted.
# community-support
s
This message was deleted.
🧵 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, whatever your
runClient
task is, I'd guess it is a
JavaExec
type task and what it called exited with exit value 1. Gradle is just telling you that. So debug whatever you run there and find out where it does not behave as you'd expect
And if it is not your code, maybe scroll up, most programs print something before they exit with non-0 exit code to actually tell what is wrong.
If you run in AS or IJ you might easily miss the actual error information due to this annoyance: https://youtrack.jetbrains.com/issue/IDEA-226613/Gradle-build-on-failed-build-IDE-auto-focuses-and-shows-incomplete-error-message-which-makes-it-hard-to-understand-why-build 2 so you need to select a higher node in the tree to see the actual error details.
c
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
this is what it is saying above
also Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
does that mean that i have a bad jdk?
e
look further. that is not related to your error, it just means that one of the plugins your build uses will need to be updated in the future.