Howdy, Some time ago I stumbled upon Robert S. remark in "[DISCUSS] MNG-7020 Remove Maven 2 WagonExcluder backward compat code" thread: "Why download, if they are being removed from the classpath afterwards due to classworld config". Similarly, there is a thread "maven-site-plugin and sisu-inject-plexus" discussing that plugin pulls down ancient plexus-container-default (10+ years ago dropped). And finally, we all know about "maven downloads the whole internet" maxim :)
Hence, I wanted to check this out. My "experiment" was not about maven "speed" (whatever you mean by it), but more about it's "bandwidth" usage. My setup: - am using (primed) MRM, not interested in bashing Central or measuring my ISP network speed - am always nuking local repo (hence, starting state is "get everything needed for build") - my test bed project is maven itself (master, ab20190a1a9fecdc8f85b40e8d03d806f3da4fc6) - build + tests ARE executed, and succeed OK, but I was really interested in local repository post-build state - command line am executing from maven checkout root is: rm -r /tmp/repo; ~/bin/maven/apache-maven-XXX/bin/mvn clean install -Dmaven.repo.local=/tmp/repo Remarks: times and the whole "experiment' is not scientific, they are just there for "rough comparison" sake. I did not repeat builds multiple times (to have some "mean time"), as I was not interested in time, but did repeat enough times to ensure that local repository state (file count, file sizes) are consistent. Results: maven 3.6.3 (released): total time 1:45 min (as Maven reports) total files in local repo: 3743 total bytes in local repo: 162600 count of files having "plexus-container-default" in local repo: 37 (18 POM, 10 JAR) mvn master (4.0.0-alpha-1, ab20190a1a9fecdc8f85b40e8d03d806f3da4fc6): total time 1:08 min (as Maven reports) total files in local repo: 3741 total bytes in local repo: 162428 count of files having "plexus-container-default" in local repo: 37 (18 POM, 10 JAR) so, pretty much the same. Then I went to create a (hacked for now) patch, as can be seen here: https://github.com/apache/maven/compare/master...cstamas:plugin-resolution-hack results with above patched mvn master: total time 1:04 min (as Maven reports) total files in local repo: 2992 total bytes in local repo: 149740 count of files having "plexus-container-default" in local repo: 0 Basically patch "cut" almost 1k of unnecessary file downloads, 10+MB byte downloads in case of Maven being built. Is there some issue in JIRA covering this behaviour of Maven (I could not find any)? Have fun, Tamas
