Is there a way to speed up Javadoc (takes 7 minutes)
Running maven with -T1C will cause maven to try to build modules in parallel, so if you have a multi-module project, at best it will build each module’s javadoc in parallel (if your dependency graph between modules allow it). The javadoc process itself is single-threaded, so you won’t be able to use multiple cores to … Read more