I have two class files HelloViewer.class and HelloComponent.class. I want to make it so when you run the jar it uses HelloViewer.class as the entry point. At the moment im using.
jar cfe Hello.jar main HelloViewer.class *.class
and i have also tried
jar cfe Hello.jar HelloViewer.class HelloViewer.class HelloComponent.class
i'm rather confused by this.