From d88c7b55eca9503413128036954fb96fe7a6cdd2 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 30 Oct 2023 13:58:50 -0700 Subject: [PATCH] Minor cleanup --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a6ed7e..3049393 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ To run the web application tests, issue the following command: ## Creating and launching the executable Java Archive (JAR) +To build and launch the executable JAR, issue the following commands: + ``` ./bld bootjar 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) +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 ```