Minor cleanup

This commit is contained in:
Erik C. Thauvin 2023-10-30 13:58:50 -07:00
parent 2b69c37e2b
commit d88c7b55ec

View file

@ -36,6 +36,8 @@ To run the web application tests, issue the following command:
## Creating and launching the executable Java Archive (JAR) ## Creating and launching the executable Java Archive (JAR)
To build and launch the executable JAR, issue the following commands:
``` ```
./bld bootjar ./bld bootjar
java -jar build/dist/demoapplication-0.1.0-boot.jar java -jar build/dist/demoapplication-0.1.0-boot.jar
@ -43,7 +45,9 @@ java -jar build/dist/demoapplication-0.1.0-boot.jar
## Creating and launching the executable Web Archive (WAR) ## Creating and launching the executable Web Archive (WAR)
To build and launch the executable WAR, issue the following commands:
``` ```
./bld bootwa ./bld bootwar
java -jar build/dist/demoapplication-0.1.0-boot.war java -jar build/dist/demoapplication-0.1.0-boot.war
``` ```