Skip to content

Commit

Permalink
update gh action build
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <[email protected]>
  • Loading branch information
lukasj committed May 19, 2023
1 parent 1f54cc7 commit 3c1c694
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@

name: JAXB RI

on: [push, pull_request]
on:
pull_request:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,18 @@ public void setDestdir(File output) {
this.output = output;
}

public void setEncoding(String encoding) {
this.encoding = encoding;
}

public void setLicense(File license) {
this.license = license;
}

public void setSilent(boolean silent) {
this.silent = silent;
}

/**
* Nested {@code <classes>} elements.
*/
Expand Down

0 comments on commit 3c1c694

Please sign in to comment.