We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a8a18e commit 8cf1768Copy full SHA for 8cf1768
.github/workflows/maven.yml
@@ -6,12 +6,20 @@ on:
6
pull_request:
7
branches: [ "master" ]
8
9
+env:
10
+ # Since version 3.9.0 of Maven it will automatically understand this environment variable.
11
+ # However, as of 2024-11 the latest versions of Ubuntu and Debian were on 3.8.8 so it will take some
12
+ # time until we can remove the $MAVEN_ARGS below.
13
+ MAVEN_ARGS: "--no-transfer-progress -Dstyle.color=always"
14
+
15
jobs:
16
build:
17
18
runs-on: ubuntu-latest
19
20
steps:
21
+ - run: |
22
+ apt-get install xmlstarlet -y
23
- uses: actions/checkout@v4
24
- name: Set up JDK 17
25
uses: actions/setup-java@v4
0 commit comments