How do I set an entry point to my generated war file? Here is my Manifest file
Manifest-Version: 1.0
Main-Class: Test
with Package name:
Manifest-Version: 1.0
Main-Class: com.process.Test
When I deploy it and try to run it from cmd using : java -jar myFile.war
I get :
NoClassDefFoundError: Test
regardless of whether I specify a package name with the main class.
Thanks in advance :)