|
|
How do i package up my submission? (Jar) |
Your compiled classes should be in a jar file
assuming your classes are in a directory under their correct paths (i.e. ~/classes/uk/ac/bath/...) do the following:
cd ~/classes/ jar cvf my_username.jar uk ... and any other directories containing your classesYou should verify that all necesary .class files are included: jar tf my_username.jarwhich should print a list of all of the files in the jar You should also include your source code either directly on the disk or in the jar with your classes. As always you should include a file describing who you are, what is being submitted and how to run/compile it. occ@cs.bath.ac.uk | |
| [Append to This Answer] |
| Previous: |
|
| ||||||||