Enable incremental compilation using a workaround for the maven-compiler-plugin 3.1 bug

This commit is contained in:
Simon Willnauer 2013-12-14 21:56:01 +01:00
parent 80ab75e54e
commit 8f85d63b67
1 changed files with 7 additions and 0 deletions

View File

@ -324,6 +324,13 @@
<source>1.6</source>
<target>1.6</target>
<fork>true</fork>
<!-- REMOVE WHEN UPGRADE:
see https://jira.codehaus.org/browse/MCOMPILER-209 it's a bug where
incremental compilation doesn't work unless it's set to false causeing
recompilation of the entire codebase each time without any changes. Should
be fixed in version > 3.1
-->
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
<plugin>