Created
April 27, 2012 12:43
-
-
Save krosenvold/2508909 to your computer and use it in GitHub Desktop.
Try this on your multimodule maven build and watch the performance difference !
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
..... | |
<dependencies> | |
<dependency> | |
<groupId>org.codehaus.plexus</groupId> | |
<artifactId>plexus-compiler-javac</artifactId> | |
<version>1.8.6</version> | |
</dependency> | |
</dependencies> | |
</plugin> | |
Btw; it's http://jira.codehaus.org/browse/PLXCOMP-202 |
Guess i'll need to finally upgrade to maven 3 to benefit from this …
(java.lang.NoSuchMethodError: org.codehaus.plexus.compiler.CompilerConfiguration.getGeneratedSourcesDirectory()Ljava/io/File;
with m2)
Nope, just upgrade your compiler-plugin too !
Den 27. apr. 2012 kl. 16:22 skrev gjoseph
reply@reply.github.com:
… Guess i'll need to finally upgrade to maven 3 to benefit from this …
(java.lang.NoSuchMethodError: org.codehaus.plexus.compiler.CompilerConfiguration.getGeneratedSourcesDirectory()Ljava/io/File;
with m2)
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/2508909
Ha! Thanks, that works :)
Seems to have dropped our 15 minute, Maven 3 (w/ multithreads) build to under 10! Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great !