Can you execute your jar file by double clicking on it ?
Any jar package for executing will need a file named MANIFEST.MF which located in META-INF directory in that package. In that file you can tell VM where to find main method of your program to start execution. Many IDE's like netbeans by default will generate an executable jar file (I mean JVM executable package and not binary exe file!) when you build your project.
I don't know about JSmooth, but for running a jar file, you must say jvm where to find main method. So you may want to check your jar file & your MANIFEST.MF should contain something like this:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.x.x
Created-By: 1.x.x (Sun Microsystems Inc.)
Class-Path:
X-COMMENT: Main-Class will be added automatically by build
Main-Class: path.to.main.class