RE: incremental compiler questions

2015-01-11 Thread Martin Gainty
> From: ja...@takari.io > Subject: Re: incremental compiler questions > Date: Sat, 10 Jan 2015 05:33:21 -0500 > To: dev@maven.apache.org > > > On Jan 10, 2015, at 3:16 AM, Mark Struberg wrote: > > > Hi Martin! > > > > The maven-compiler plugin alre

Re: incremental compiler questions

2015-01-10 Thread Jason van Zyl
On Jan 10, 2015, at 3:16 AM, Mark Struberg wrote: > Hi Martin! > > The maven-compiler plugin already does this. But once a single change is > detected then we need to recompile the _whole_ module because of the reasons > explained by Igor. > Pro of JDT: you can e.g. also see if there were onl

Re: incremental compiler questions

2015-01-10 Thread Mark Struberg
Hi Martin! The maven-compiler plugin already does this. But once a single change is detected then we need to recompile the _whole_ module because of the reasons explained by Igor. Pro of JDT: you can e.g. also see if there were only 'internal' changes and thus the other dependencies don't need

Re: incremental compiler questions

2015-01-09 Thread Igor Fedorenko
I am not sure I understand your questions, maybe you can explain you what you are trying to achieve and I can tell how to do it. Few general comments As I tried to explain in the hangout, proper incremental compilation requires type reference information. Consider two classes, A and B extends A,

incremental compiler questions

2015-01-09 Thread Martin Gainty
Good Evening Igor- Instead of implementing eclipe jdt for incremental java compilation is there: 1)any ability to refactor/reconfigure javac to read Last Modified Date of source file to enable incremental compilation? 2)any concerns over generated class files..are they the same? any deltas ..if