Re: Ant vs Maven vs Eclipse, IntelliJ, NetBeans – Exploring Incremental Builds

2009-10-01 Thread Dominique Devienne
On Thu, Oct 1, 2009 at 10:17 AM, David Booth wrote: > We’re looking into incremental builds — trying to document the differences > in popularity & productivity between using tools like Ant and Maven versus > IDEs.  We haven’t seen a study like this before, and we’ve already receive

Ant vs Maven vs Eclipse, IntelliJ, NetBeans – Expl oring Incremental Builds

2009-10-01 Thread David Booth
We’re looking into incremental builds — trying to document the differences in popularity & productivity between using tools like Ant and Maven versus IDEs. We haven’t seen a study like this before, and we’ve already received responses from over 550 developers. We’d like this report to b

Re: incremental builds

2005-09-15 Thread Jeffrey E Care
Many tasks already support incremental builds: javac, copy, move, zip, native2ascii, etc. Plus you can always use dependset & uptodate to munge it for tasks that don't support it. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead

RE: incremental builds

2005-09-15 Thread hind.lwahhabi
Nicolas, As a matter of fact i am using and with some specific compilers for non-java code. -Original Message- From: Nicolas Vervelle [mailto:[EMAIL PROTECTED] Sent: Thu 9/15/2005 10:04 AM To: Ant Users List Subject: Re: incremental builds Hi, I would say that it depends on the

Re: incremental builds

2005-09-15 Thread Nicolas Vervelle
? Nicolas [EMAIL PROTECTED] wrote: Hello folks, I am not sure you can do this in Ant but anyway i am asking the question: -Is there a way to perform incremental builds using ant scripts, i.e build only what has changed? If so does it rely on some manual-scripts-timestamp-moulinette or is there

incremental builds

2005-09-15 Thread hind.lwahhabi
Hello folks, I am not sure you can do this in Ant but anyway i am asking the question: -Is there a way to perform incremental builds using ant scripts, i.e build only what has changed? If so does it rely on some manual-scripts-timestamp-moulinette or is there a smarter manner to do so? Thanks

Re: which build tool yields fastest incremental builds? GNU make , Jam , Ant or Scons ?

2005-07-27 Thread hiren patel
- smart copies, e.g. only copy things that need copying yes. our build system does smart copies. - smart testing, e.g. only test things that have changed) NO. Testing done is not a part of the build process. - compiling only things that have changed yes. - dependency management a script gene

Re: which build tool yields fastest incremental builds? GNU make , Jam , Ant or Scons ?

2005-07-22 Thread James Fuller
>so anybody knows which one is fastest among Jam,Ant and Scons ? > > the differences in perf are small between the three versus other bottlenecks, for example does your current build system do the following; - smart copies, e.g. only copy things that need copying - smart testing, e.g. only t

RE: which build tool yields fastest incremental builds? GNU make , Jam , Ant or Scons ?

2005-07-21 Thread Dominique Devienne
mpromise on the > time to build. > > Do you know that which tool yields fastest incremental builds ? > > As it seems that GNU make is fastest of all but painful for large > projects. Jam , Ant and scons all are more sophisticated tools but > have complains about being slow

which build tool yields fastest incremental builds? GNU make , Jam , Ant or Scons ?

2005-07-19 Thread hiren patel
yields fastest incremental builds ? As it seems that GNU make is fastest of all but painful for large projects. Jam , Ant and scons all are more sophisticated tools but have complains about being slow. so anybody knows which one is fastest among Jam,Ant and Scons ? Thanks, Hiren patel

RE: Incremental builds with VSS

2003-09-11 Thread Faist, Jeff
et date/time to last Modified, make it writable ss get -R -I- -GTM -W Doing a full or new build I use the modified time for the initial get and for incremental builds I use the Current time. That way only files that have changed since the last get will have newer date/time stamps than the built file

RE: Incremental builds with VSS

2003-09-11 Thread Ciramella, EJ
the VSS task also doesn't preserve the modified date. Try something like this: -Original Message- From: Ciramella, EJ [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 1:50 PM To: 'Ant Users List' Subject: RE: Incremental builds wit

RE: Incremental builds with VSS

2003-09-11 Thread Ciramella, EJ
use the exec task and call ss.exe directly -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 1:12 PM To: [EMAIL PROTECTED] Subject: Incremental builds with VSS My build file gets the files from VSS (Visual Source Safe) to a local

Incremental builds with VSS

2003-09-11 Thread Suzanne . Dorman
My build file gets the files from VSS (Visual Source Safe) to a local directory, compiles the contents of the local directory, and then creates the jars. It does a vssget every time it executes, which then forces a full compile. Is there a way for it to only get files from VSS that are new since t