To compile the entire project, run "mvn install" in the project root.
Other basic workflow steps:
- getting started
- compiling the whole project
- run
mvn installin project root
- run
- developing the application
- edit code in src/main
- run
mvn - open http://localhost:8080/
- creating a production mode war
- run
mvn package -Pproduction
- run
- running in production mode
- run
mvn jetty:run -Pproduction - open http://localhost:8080/
- run