[misc] hide the download progress of dependencies

This commit is contained in:
Jakob Ackermann 2020-12-11 12:17:37 +00:00
parent 6d44851869
commit 275bb1b330

View file

@ -6,11 +6,11 @@ run: package
build:
mvn package -DskipTests
mvn --no-transfer-progress package -DskipTests
test:
mvn test
mvn --no-transfer-progress test
clean:
@ -18,7 +18,7 @@ clean:
package: clean
mvn package -DskipTests
mvn --no-transfer-progress package -DskipTests
.PHONY: run package build clean test