Client compile without IntelliJ? #922
-
|
I tried |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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.