[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] Re: Deploying SWT Application and swt-pi-gtk-3236

Mark,
Thanks for the info, it pointed me down the right path. I cleaned up my Class-Path line so that it only pointed to SWT.jar. The next time I tried running it I received an error that made me realize it couldn't find one of the classes I wrote for the program. My mistake this time was the way I jar'ed the files. Instead of doing this:


jar cmf manifest1.txt SunMouseDatabase1.jar MouseDatabaseApp.class ./lib/*

I needed to include all the class files in the directory by doing this:

jar cmf manifest1.txt SunMouseDatabase1.jar *.class ./lib/*

and now it works fine.