Java source and JAR dependencies

Associate
Joined
24 Sep 2003
Posts
928
Location
Bedfordshire
Hi,

Just finishing off a bit of coursework that I'll be submitting soon. We have to submit the source code of our application amongst other things.

I have worked on my code as part of an eclipse project and have added three JAR files to the (eclipse project) build path, what's the best way of putting this together with my source code so the application will run correctly when marked? I thought of a batch file but am not sure what exactly the contents of it would be.

Any help appreciated.

Cheers,

aaazza
 
Are we talking random 3rd party packages?

My gut instinct says most if not all lecturers would only allow core and pre-approved packages. Potentially having to configure a new environment for every student is a substantial administrative burden.

I suggest you ask the prof how he/she would like them :)
 
As above, some creative ant scripting will unpack the jars (deps) you use and build them into your jar so you only need to send one file around.
 
Back
Top Bottom