Skip to content

Commit

Permalink
switch to batch-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Querela committed Oct 28, 2024
1 parent f88ce58 commit dfd12b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: mvn --version

- name: Install archetype
run: mvn -ntp clean install "archetype:update-local-catalog"
run: mvn --batch-mode clean install "archetype:update-local-catalog"

- name: Create endpoint project
env:
Expand All @@ -47,13 +47,13 @@ jobs:
-DartifactId=test-endpoint \
-Dversion=1.0-SNAPSHOT \
-DinstitutionName="Test endpoint for Java ${{ matrix.java-version }}" \
-B -X -ntp
--batch-mode --debug
- name: Build endpoint project
env:
WORKPATH: work/${{ matrix.java-version }}/
run: |
cd "$WORKPATH"
cd "test-endpoint/"
mvn -ntp clean package
mvn -ntp dependency:tree -Ddetail=true
mvn --batch-mode clean package
mvn --batch-mode dependency:tree -Ddetail=true

0 comments on commit dfd12b9

Please sign in to comment.