Try this on your multimodule maven build and watch the performance difference !
<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 |
This comment has been minimized.
This comment has been minimized.
Guess i'll need to finally upgrade to maven 3 to benefit from this … |
This comment has been minimized.
This comment has been minimized.
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
|
This comment has been minimized.
This comment has been minimized.
Ha! Thanks, that works :) |
This comment has been minimized.
This comment has been minimized.
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
This comment has been minimized.
Great !