Following is my Procfile
web: java %JAVA_OPTS% -cp target\classes;"target\dependency\*"
But Im getting the following error when Im running my web app in heroku.
Error: Could not find or load main class console
The Main.class is inside the package info.socket.webmobile
The application is crashing when I type heroku open
and it throws the error Error: Could not find or load main class console
when Im running it like heroku run java console
How can I be able to sort this out?