Skip to main content
GameDev.net gamedev.net
🔒 Locked

Java project deployment

Started by stein102 Apr 27, 2012 at 10:26 PM 1 replies 1.4k views
Original Post
stein102
stein102
I wrote a small client/server program using Java and I want to send it to my friend to test. I used the kryonet library as well as the slick2d library(It's a basic 2 player game). What I want to know is how I can give him a copy of the game that he can run. I've tried packaging it as a JAR, but I'm having trouble getting it to work properly. I'm using eclipse if it makes a difference.

Also, I was going to make a batch file for him to run it with, just like javaw -jar myJar.Jar

But I don't know how to include the libraries with that.

Thanks
kyanite
kyanite
I wrote a small client/server program using Java and I want to send it to my friend to test. I used the kryonet library as well as the slick2d library(It's a basic 2 player game). What I want to know is how I can give him a copy of the game that he can run. I've tried packaging it as a JAR, but I'm having trouble getting it to work properly. I'm using eclipse if it makes a difference.[/quote]
It would help if you'd tell us what you've tried, in regards to the above method.

Deployment varies based upon what build system you are using. Maven, Ant, and Gradle all have automated plugins to handle this sort of things, although you generally need to inject the natives.

Personally, if I'm not using any of the above, I tend to package my jars by hand. You might review this artcle, since Slick2D is backed by LWJGL: http://www.lwjgl.org...JGL_Application

The article also has other suggestions that you might find easier to use.

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.