Client compile without IntelliJ? #922
|
I tried |
Answered by
GregHib
Mar 21, 2026
Replies: 1 comment
|
If you weren’t already aware there are pre-built jars to use for localhost in releases. However you should be able to, you'll need to make sure /libs/clientlibs.jar is included, something like:
You'll also have to make sure it's done with < JDK 8. |
0 replies
Answer selected by
Espionage724
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you weren’t already aware there are pre-built jars to use for localhost in releases.
However you should be able to, you'll need to make sure /libs/clientlibs.jar is included, something like:
javac -cp ./libs/clientlibs.jar -d ./out ./client/src/*.javato build the class files then
java -cp /out:/libs/clientlibs.jar Loaderto run.
You'll also have to make sure it's done with < JDK 8.