Je sais que c'est une vieille question, mais je suis tombé ici depuis Google. J'avais déjà un proxy en place, j'avais juste besoin d'accélérer les téléchargements simultanés. Vous pouvez utiliser l'option mvn :
-Dmaven.artifact.threads=30
Source : https://maven.apache.org/guides/mini/guide-configuring-maven.html
Configuring Parallel Artifact Resolution
By default, Maven 2.1.0+ will download up to 5 artifacts (from different groups) at once. To change the size of the thread pool, start Maven using -Dmaven.artifact.threads. For example, to only download single artifacts at a time:
mvn -Dmaven.artifact.threads=1 verify
You may wish to set this option permanently, in which case you can use the MAVEN_OPTS environment variable. For example:
export MAVEN_OPTS=-Dmaven.artifact.threads=3