This is a demo how to use maven to deploy an application to the wildfly application server running on the jee-docker stack.
To compile and deploy the war run the following command in a terminal:
mvn clean install
After that you should be able to see the html - welcome page from the application server. The http://localhost/srv/jee/index.html file has to links that return some example json content read from the database.
This example also contains an example of Code Coverage Analysis. Run the following command to get the analysis:
mvn clean test jacoco:report
After that your find the html report in the subfolder target/site/index.html