Skip to content

Commit 520b080

Browse files
committed
in google closure script, turn off download progress monitoring
1 parent ce720ce commit 520b080

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

script/closure-library-release/closure-library-release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ perl -p -e "s/RELEASE_VERSION/$release_version/go" \
167167
if [ "$HUDSON" = "true" ]; then
168168
(
169169
cd "$third_party_project_dir"
170-
mvn --fail-at-end \
170+
mvn -ntp -B --fail-at-end \
171171
-Psonatype-oss-release \
172172
-Dsource.skip=true \
173173
clean deploy
174174
)
175175

176176
(
177177
cd "$project_dir"
178-
mvn --fail-at-end \
178+
mvn -ntp -B --fail-at-end \
179179
-Psonatype-oss-release \
180180
-Dsource.skip=true \
181181
clean deploy
@@ -188,13 +188,13 @@ else
188188
(
189189
cd "$third_party_project_dir"
190190
mvn clean
191-
mvn package
191+
mvn -ntp -B package
192192
mvn install:install-file -Dfile=./target/google-closure-library-third-party-$release_version.jar -DpomFile=pom.xml
193193
)
194194
(
195195
cd "$project_dir"
196196
mvn clean
197-
mvn package
197+
mvn -ntp -B package
198198
mvn install:install-file -Dfile=./target/google-closure-library-$release_version.jar -DpomFile=pom.xml
199199
)
200200
fi

0 commit comments

Comments
 (0)