Add --no-transfer-progress to CI builds.
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index dd3919a..7f2ed4d 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 package --file pom.xml
+      run: mvn -V package --file pom.xml --no-transfer-progress
diff --git a/.travis.yml b/.travis.yml
index 390245c..91df7bf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,5 +27,5 @@
   allow_failures:

     - jdk: openjdk-ea

 after_success:

-  - mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco

+  - mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco --no-transfer-progress

   
\ No newline at end of file