Minor cleanup

This commit is contained in:
Erik C. Thauvin 2023-08-27 16:56:19 -07:00
parent 193c791408
commit a2f62e1b1b
2 changed files with 2 additions and 7 deletions

View file

@ -8,7 +8,7 @@ jobs:
strategy: strategy:
matrix: matrix:
java-version: [ 17, 19, 20 ] java-version: [ 17, 20 ]
steps: steps:
- name: Checkout source repository - name: Checkout source repository

View file

@ -16,7 +16,7 @@ To execute a command at the command line, add the following to your build file:
public void startServer() throws Exception { public void startServer() throws Exception {
new ExecOperation() new ExecOperation()
.fromProject(this) .fromProject(this)
.command("./start.sh") .command("./start.sh", "--port", "8080")
.execute(); .execute();
} }
``` ```
@ -71,8 +71,3 @@ public void startServer() throws Exception {
.execute(); .execute();
} }
``` ```