blob: 6786e0fe2985411210412f6d8f4c2b37a0686f57 (
plain)
1
2
3
4
5
6
7
8
9
|
Run this command to clean and package the application, start Tomcat and deploy the application:
mvn clean package cargo:run
Application will be accessible via http://localhost:8080/<maven project artifact id>/
To redeploy the application, run the below Maven command from a different terminal while being inside the Maven project directory:
mvn package cargo:redeploy
|