Skip to content

Commit d8c89d1

Browse files
committed
Silence more download information from maven
Signed-off-by: Taylor Smock <smocktaylor@gmail.com>
1 parent 338ff8d commit d8c89d1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ant.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
ls ../../core
171171
ls ../../core/tools
172172
ls ../../core/tools/checkstyle
173-
mvn --file pom.xml package javadoc:jar source:jar -DskipTests -Dplugin.dist.dir=../../dist -Dplugin.version=${{ steps.version.outputs.version }}
173+
mvn --file pom.xml --no-transfer-progress package javadoc:jar source:jar -DskipTests -Dplugin.dist.dir=../../dist -Dplugin.version=${{ steps.version.outputs.version }}
174174
mv target/${{ inputs.plugin-jar-name }}-*-sources.jar ../../dist/${{ inputs.plugin-jar-name }}-sources.jar
175175
mv target/${{ inputs.plugin-jar-name }}-*-javadoc.jar ../../dist/${{ inputs.plugin-jar-name }}-javadoc.jar
176176
@@ -243,7 +243,7 @@ jobs:
243243
244244
if [ -f "pom.xml" ]; then
245245
echo "TEST_REPORT_PATH=target/surefire-reports" >> $GITHUB_ENV
246-
mvn test
246+
mvn --no-transfer-progress test
247247
elif [ -f "build.xml" ]; then
248248
echo "TEST_REPORT_PATH=${TEST_REPORT_PATH}" >> $GITHUB_ENV
249249
ant -diagnostics

.github/workflows/internal_ant.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
ls ../../core
171171
ls ../../core/tools
172172
ls ../../core/tools/checkstyle
173-
mvn --file pom.xml package javadoc:jar source:jar -DskipTests -Dplugin.dist.dir=../../dist -Dplugin.version=${{ steps.version.outputs.version }}
173+
mvn --file pom.xml --no-transfer-progress package javadoc:jar source:jar -DskipTests -Dplugin.dist.dir=../../dist -Dplugin.version=${{ steps.version.outputs.version }}
174174
mv target/${{ inputs.plugin-jar-name }}-*-sources.jar ../../dist/${{ inputs.plugin-jar-name }}-sources.jar
175175
mv target/${{ inputs.plugin-jar-name }}-*-javadoc.jar ../../dist/${{ inputs.plugin-jar-name }}-javadoc.jar
176176
@@ -243,7 +243,7 @@ jobs:
243243
244244
if [ -f "pom.xml" ]; then
245245
echo "TEST_REPORT_PATH=target/surefire-reports" >> $GITHUB_ENV
246-
mvn test
246+
mvn --no-transfer-progress test
247247
elif [ -f "build.xml" ]; then
248248
echo "TEST_REPORT_PATH=${TEST_REPORT_PATH}" >> $GITHUB_ENV
249249
ant -diagnostics

0 commit comments

Comments
 (0)