I want to use RestEasy in my Java server project, but I don't want to use Gradle or any other dependency management tool.
Instead, I want to get the jar files for RestEasy, as well as anything else that they depend upon, and install them in my project.
I can't figure out a straightforward way to do this. All documentation I can find either ignores the dependencies or assumes you're using Gradle.
I also don't want to manually guess and hunt down the dependencies myself since that seems error-prone.
I'm willing to use Gradle as a one-time process if there is a way I can get it to download all of the dependencies for me and put them in a place where I can extract them.
What's the best solution to this problem?