From 54917c68b3743d1272b3f431333858b1a5b3806a Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 30 Oct 2023 21:36:58 -0700 Subject: [PATCH] Added executable JAR reference --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5eaebdb..22ce8ce 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ To install, please refer to the [extensions documentation](https://github.com/rife2/bld/wiki/Extensions). -To create a Spring Boot executable Java Archive (JAR) from the current project: +To create a [Spring Boot executable Java Archive](https://docs.spring.io/spring-boot/docs/current/reference/html/executable-jar.html) +(JAR) from the current project: ```java @@BuildCommand(summary = "Creates an executable JAR for the project") @@ -25,7 +26,8 @@ public void bootjar() throws Exception { ./bld compile bootjar ``` -To create a Spring Boot executable Web Archive (WAR) from the current project: +To create a [Spring Boot executable Web Archive](https://docs.spring.io/spring-boot/docs/current/reference/html/executable-jar.html#appendix.executable-jar.nested-jars.war-structure) +(WAR) from the current project: ```java @BuildCommand(summary = "Create an executable WAR for the project")