I wish to create an executable jar file so that user can run my application, but I am having problems getting this to work. So far I have been doing this:
jar cvfm myApp.jar MANIFEST.MF *.class *.gif
I get an executable jar, but when I double click it, nothing happens. I ran this command on the command line
java -jar myApp.jar
and i get this message:
Exception in thread "main" java.lang.NoClassDefFoundError: com/enterprisedt/net/
ftp/FTPProgressMonitor
at myApp.main(myApp.java:17)
Can anyone suggest how I may go about getting this to work.