Skip to content

Commit 772084a

Browse files
JAVASE-2 Remove download progress from maven logs of workflows (#20)
Co-authored-by: leonardo-pilastri-sonarsource <leonardo-pilastri-sonarsource@users.noreply.github.com>
1 parent 398d215 commit 772084a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/PrepareNextIteration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
git config user.name "${GITHUB_ACTOR}"
2828
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
2929
git checkout -b gh-action/next-iteration
30-
mvn versions:set -DgenerateBackupPoms=false -DnewVersion="${{ inputs.nextVersion }}"
30+
mvn versions:set --batch-mode -DgenerateBackupPoms=false -DnewVersion="${{ inputs.nextVersion }}"
3131
git commit -m 'Prepare next development iteration' -a
3232
git push --set-upstream origin gh-action/next-iteration
3333
gh pr create -B master --title 'Prepare next development iteration' --body ''

check-license-compliance.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -euo pipefail
44
# See https://xtranet.sonarsource.com/display/DEV/Open+Source+Licenses
55

66
mvn org.codehaus.mojo:license-maven-plugin:aggregate-add-third-party \
7+
--batch-mode \
78
-Dlicense.missingFile=$(pwd)/missing-dep-licenses.properties \
89
-DuseMissingFile \
910
-Dlicense.overrideUrl=file://$(pwd)/override-dep-licenses.properties

0 commit comments

Comments
 (0)