Added WAR instructions

This commit is contained in:
Erik C. Thauvin 2023-10-30 12:28:56 -07:00
parent 2e9c73968c
commit 2b69c37e2b
3 changed files with 11 additions and 12 deletions

View file

@ -52,14 +52,4 @@ public class ApplicationBuild extends WebProject {
.fromProject(this)
.execute();
}
@BuildCommand(summary = "Creates an executable JAR for the project")
public void uberjar() throws Exception {
bootjar();
}
@BuildCommand(summary = "Create an executable WAR for the project")
public void war() throws Exception {
bootwar();
}
}