Why would you recompile a module which didn't change? Java doesn't need to re-link (is that what you think?) when dependent code has changed for as long as API stays the same (and if that is changed it wont compile of course :)
Without getting in too much details - by not calling 'clean' goal your build will be incremental On 11/30/07, Saloucious <[EMAIL PROTECTED]> wrote: > > > I don't think Maven will recompile modules which depends of modified one > > Is maven can make incremental builds ? > > > http://www.javaworld.com/javaforums/showflat.php?Cat=0&Number=32334&Main=32334 > > http://www.javaworld.com/javaforums/showflat.php?Cat=0&Number=32334&Main=32334 > > > > > Andrew Boyer wrote: > > > > Incremental builds can be done by not calling the clean target. In > > continuum, I believe the default targets are 'clean install'. If you > > change that to just 'install', you'll be doing incrementals. > > > > I haven't tried this, but it should work, since continuum maintains one > > working directory per project, and re-uses that working directory each > > time it does a build. > > > > Andrew > > > >> -----Original Message----- > >> From: I am Who i am [mailto:[EMAIL PROTECTED] > >> Sent: Wednesday, October 10, 2007 2:46 PM > >> To: [email protected] > >> Subject: How to do incremental build? > >> > >> Hi All > >> > >> How do i enable incremental build with maven2 and continuum? > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > -- > View this message in context: > http://www.nabble.com/How-to-do-incremental-build--tf4602698s177.html#a14087762 > Sent from the Maven - Users mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
