git clone https://github.com/wildfly/quickstart.git
cd jaxrs-client
Build the documentation:
mvn clean package -Pdocs
Build the source code of the example:
mvn clean install
Install WildFly application server from the official webpage, and start it as follows:
cd wildfly_installation_folder/bin
./standalone -c standalone-full.xml
Deploy application to wildfly locally:
mvn clean install
Start tests:
mvn verify -Parq-remote
----