Add --no-transfer-progress to CI builds.
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 28fa9e8..858e73f 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -37,4 +37,4 @@
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
- run: mvn -V -Ddoclint=all --file pom.xml
+ run: mvn -V -Ddoclint=all --file pom.xml --no-transfer-progress
diff --git a/.travis.yml b/.travis.yml
index cbbb2f8..845e35d 100755
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@
- openjdk11
script:
- - mvn
+ - mvn -V --no-transfer-progress
after_success:
- - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco
\ No newline at end of file
+ - mvn -V --no-transfer-progress clean test jacoco:report coveralls:report -Ptravis-jacoco
\ No newline at end of file