Skip to content

Commit 092d0ae

Browse files
authored
Add --no-transfer-progress option to mvn command (GoogleCloudPlatform#2280)
Fixes GoogleCloudPlatform#2279
1 parent 5a9391e commit 092d0ae

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

‎.github/workflows/sonar.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4848
run: |
4949
./mvnw \
50-
-B \
50+
-B -ntp \
5151
--activate-profiles codecoverage \
5252
-Dsonar.projectKey=GoogleCloudPlatform_cloud-opensource-java \
5353
-Dsonar.host.url=https://sonarcloud.io \

‎gradle-plugin/kokoro/release.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cat "${KOKORO_KEYSTORE_DIR}/72743_gradle_publish_secret" >> $HOME_GRADLE_PROPERT
1818

1919
# The gradle plugin depends on the dependencies module
2020
cd github/cloud-opensource-java
21-
./mvnw -V -B clean install
21+
./mvnw -V -B -ntp clean install
2222

2323
cd gradle-plugin
2424

‎kokoro/continuous.bat‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set PATH=%JAVA_HOME%\bin;%PATH%
55

66
cd github/cloud-opensource-java
77

8-
call mvnw.cmd -V -B clean install javadoc:jar
8+
call mvnw.cmd -V -B -ntp clean install javadoc:jar
99

1010
if %errorlevel% neq 0 exit /b %errorlevel%
1111
@echo on

‎kokoro/parent_release_build.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd github/cloud-opensource-java
99

1010
# Build the project (excluding boms) to ensure validity of parent pom
1111
# The artifact is unused in this parent-pom build.
12-
./mvnw -V -pl 'dependencies,enforcer-rules' -Prelease -B -U verify
12+
./mvnw -V -pl 'dependencies,enforcer-rules' -Prelease -B -ntp -U verify
1313

1414
# copy pom with the name expected in the Maven repository
1515
ARTIFACT_ID=$(mvn -B help:evaluate -Dexpression=project.artifactId 2>/dev/null | grep -v "^\[")

0 commit comments

Comments
 (0)