<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The Build Tool Report: Turnaround Times using Ant, Maven, Eclipse, IntelliJ, and NetBeans</title>
	<atom:link href="http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/feed/" rel="self" type="application/rss+xml" />
	<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/</link>
	<description>Improving Java Development</description>
	<lastBuildDate>Wed, 16 May 2012 14:41:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Kingwincelas2</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-1171</link>
		<dc:creator>Kingwincelas2</dc:creator>
		<pubDate>Wed, 07 Mar 2012 00:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-1171</guid>
		<description>Maven sucks HUGE, SMELLY HORSE BALLS!!!!!
</description>
		<content:encoded><![CDATA[<p>Maven sucks HUGE, SMELLY HORSE BALLS!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Angelo Schneider</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-690</link>
		<dc:creator>Angelo Schneider</dc:creator>
		<pubDate>Mon, 09 Aug 2010 20:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-690</guid>
		<description>Sorry, but I strongly doubt anyone using Ant or Maven is doing an &quot;incremental build&quot; with it. They all do full builds, hence the long build times.</description>
		<content:encoded><![CDATA[<p>Sorry, but I strongly doubt anyone using Ant or Maven is doing an &#8220;incremental build&#8221; with it. They all do full builds, hence the long build times.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toomas Römer</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-689</link>
		<dc:creator>Toomas Römer</dc:creator>
		<pubDate>Tue, 12 Jan 2010 08:25:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-689</guid>
		<description>@what_are_you_saying

You have wrong level of abstraction here. By incremental builds we mean builds done in development for the developer to see results and not clean full builds.

You&#039;re splitting hairs by saying that the true incremental builds are Eclipse JDT delta compilations vs ant/maven javac incremental builds. Invoke ant on a source tree, change one file and reinvoke. Only one new file will be compiled (unless the referenced .class files also need compilation).

Ant is said to break the the &quot;incremental&quot; (or the IDE) compiler because once you use command line compilation + IDE compilation you get into trouble. JDT and javac compile enums for example differently, anonymous inner classes can have different numbering scheme, compilation errors can be compiled into runtime exceptions vs not compiling at all. This is the sad story of using 2 compilers and one output path. You run into problems.

We don&#039;t advocate any specific build tool. We like the shortest turnaround possible and the best tools for the specific job. For this survey we tried to cover as many tools as possible.</description>
		<content:encoded><![CDATA[<p>@what_are_you_saying</p>
<p>You have wrong level of abstraction here. By incremental builds we mean builds done in development for the developer to see results and not clean full builds.</p>
<p>You&#8217;re splitting hairs by saying that the true incremental builds are Eclipse JDT delta compilations vs ant/maven javac incremental builds. Invoke ant on a source tree, change one file and reinvoke. Only one new file will be compiled (unless the referenced .class files also need compilation).</p>
<p>Ant is said to break the the &#8220;incremental&#8221; (or the IDE) compiler because once you use command line compilation + IDE compilation you get into trouble. JDT and javac compile enums for example differently, anonymous inner classes can have different numbering scheme, compilation errors can be compiled into runtime exceptions vs not compiling at all. This is the sad story of using 2 compilers and one output path. You run into problems.</p>
<p>We don&#8217;t advocate any specific build tool. We like the shortest turnaround possible and the best tools for the specific job. For this survey we tried to cover as many tools as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toomas Römer</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-704</link>
		<dc:creator>Toomas Römer</dc:creator>
		<pubDate>Tue, 12 Jan 2010 08:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-704</guid>
		<description>@what_are_you_saying

You have wrong level of abstraction here. By incremental builds we mean builds done in development for the developer to see results and not clean full builds.

You&#039;re splitting hairs by saying that the true incremental builds are Eclipse JDT delta compilations vs ant/maven javac incremental builds. Invoke ant on a source tree, change one file and reinvoke. Only one new file will be compiled (unless the referenced .class files also need compilation).

Ant is said to break the the &quot;incremental&quot; (or the IDE) compiler because once you use command line compilation + IDE compilation you get into trouble. JDT and javac compile enums for example differently, anonymous inner classes can have different numbering scheme, compilation errors can be compiled into runtime exceptions vs not compiling at all. This is the sad story of using 2 compilers and one output path. You run into problems.

We don&#039;t advocate any specific build tool. We like the shortest turnaround possible and the best tools for the specific job. For this survey we tried to cover as many tools as possible.</description>
		<content:encoded><![CDATA[<p>@what_are_you_saying</p>
<p>You have wrong level of abstraction here. By incremental builds we mean builds done in development for the developer to see results and not clean full builds.</p>
<p>You&#8217;re splitting hairs by saying that the true incremental builds are Eclipse JDT delta compilations vs ant/maven javac incremental builds. Invoke ant on a source tree, change one file and reinvoke. Only one new file will be compiled (unless the referenced .class files also need compilation).</p>
<p>Ant is said to break the the &#8220;incremental&#8221; (or the IDE) compiler because once you use command line compilation + IDE compilation you get into trouble. JDT and javac compile enums for example differently, anonymous inner classes can have different numbering scheme, compilation errors can be compiled into runtime exceptions vs not compiling at all. This is the sad story of using 2 compilers and one output path. You run into problems.</p>
<p>We don&#8217;t advocate any specific build tool. We like the shortest turnaround possible and the best tools for the specific job. For this survey we tried to cover as many tools as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: what_are_you_saying</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-688</link>
		<dc:creator>what_are_you_saying</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-688</guid>
		<description>Ant is frequently cited as ** breaking ** the incremental compiler.  Are you people out of your mind?  Or just severely &quot;challenged&quot;?</description>
		<content:encoded><![CDATA[<p>Ant is frequently cited as ** breaking ** the incremental compiler.  Are you people out of your mind?  Or just severely &#8220;challenged&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: what_are_you_saying</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-703</link>
		<dc:creator>what_are_you_saying</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-703</guid>
		<description>Ant is frequently cited as ** breaking ** the incremental compiler.  Are you people out of your mind?  Or just severely &quot;challenged&quot;?</description>
		<content:encoded><![CDATA[<p>Ant is frequently cited as ** breaking ** the incremental compiler.  Are you people out of your mind?  Or just severely &#8220;challenged&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: what_are_you_saying</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-687</link>
		<dc:creator>what_are_you_saying</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-687</guid>
		<description>&quot;The average total time taken by incremental builds in an hour is exactly 6 minutes, but the standard deviation is 10.1, rendering this number unreliable. We can, however, divide the respondents in three quite well defined groups:&quot;

You must be joking.  An incremental compiler, such as the one in the Eclipse IDE compiles in the background in response to a code modification.  Rarely is a complete rebuild necessary, that is, unless you have filled your IDE with lots of crap like Maven, which this website seems to be trying to promote.

Ant is by definition not &quot;incremental&quot;.  Why don&#039;t you go back to school, or learn VB?</description>
		<content:encoded><![CDATA[<p>&#8220;The average total time taken by incremental builds in an hour is exactly 6 minutes, but the standard deviation is 10.1, rendering this number unreliable. We can, however, divide the respondents in three quite well defined groups:&#8221;</p>
<p>You must be joking.  An incremental compiler, such as the one in the Eclipse IDE compiles in the background in response to a code modification.  Rarely is a complete rebuild necessary, that is, unless you have filled your IDE with lots of crap like Maven, which this website seems to be trying to promote.</p>
<p>Ant is by definition not &#8220;incremental&#8221;.  Why don&#8217;t you go back to school, or learn VB?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: what_are_you_saying</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-702</link>
		<dc:creator>what_are_you_saying</dc:creator>
		<pubDate>Tue, 12 Jan 2010 00:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-702</guid>
		<description>&quot;The average total time taken by incremental builds in an hour is exactly 6 minutes, but the standard deviation is 10.1, rendering this number unreliable. We can, however, divide the respondents in three quite well defined groups:&quot;

You must be joking.  An incremental compiler, such as the one in the Eclipse IDE compiles in the background in response to a code modification.  Rarely is a complete rebuild necessary, that is, unless you have filled your IDE with lots of crap like Maven, which this website seems to be trying to promote.

Ant is by definition not &quot;incremental&quot;.  Why don&#039;t you go back to school, or learn VB?</description>
		<content:encoded><![CDATA[<p>&#8220;The average total time taken by incremental builds in an hour is exactly 6 minutes, but the standard deviation is 10.1, rendering this number unreliable. We can, however, divide the respondents in three quite well defined groups:&#8221;</p>
<p>You must be joking.  An incremental compiler, such as the one in the Eclipse IDE compiles in the background in response to a code modification.  Rarely is a complete rebuild necessary, that is, unless you have filled your IDE with lots of crap like Maven, which this website seems to be trying to promote.</p>
<p>Ant is by definition not &#8220;incremental&#8221;.  Why don&#8217;t you go back to school, or learn VB?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niko Mahle</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-686</link>
		<dc:creator>Niko Mahle</dc:creator>
		<pubDate>Thu, 29 Oct 2009 09:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-686</guid>
		<description>Hi, it would be very interesting how much percentage of the maven users use still Maven 1 ?</description>
		<content:encoded><![CDATA[<p>Hi, it would be very interesting how much percentage of the maven users use still Maven 1 ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niko Mahle</title>
		<link>http://zeroturnaround.com/blog/the-build-tool-report-turnaround-times-using-ant-maven-eclipse-intellij-and-netbeans/comment-page-1/#comment-701</link>
		<dc:creator>Niko Mahle</dc:creator>
		<pubDate>Thu, 29 Oct 2009 09:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zeroturnaround.com/?p=1837#comment-701</guid>
		<description>Hi, it would be very interesting how much percentage of the maven users use still Maven 1 ?</description>
		<content:encoded><![CDATA[<p>Hi, it would be very interesting how much percentage of the maven users use still Maven 1 ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

