diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index ddcc35c..55fefbf 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - java-version: [ 17, 19, 20 ] + java-version: [ 17, 20 ] steps: - name: Checkout source repository diff --git a/README.md b/README.md index b9220a4..a43b399 100755 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To execute a command at the command line, add the following to your build file: public void startServer() throws Exception { new ExecOperation() .fromProject(this) - .command("./start.sh") + .command("./start.sh", "--port", "8080") .execute(); } ``` @@ -71,8 +71,3 @@ public void startServer() throws Exception { .execute(); } ``` - - - - -