Why use Buildr instead of Ant or Maven? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:32:51Z http://stackoverflow.com/feeds/question/1015525 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven 10 Why use Buildr instead of Ant or Maven? Scott Markwell 2009-06-18T22:28:17Z 2009-06-30T00:15:40Z <ul> <li><a href="http://buildr.apache.org/" rel="nofollow">http://buildr.apache.org/</a></li> <li><a href="http://ant.apache.org/" rel="nofollow">http://ant.apache.org/</a></li> <li><a href="http://maven.apache.org/" rel="nofollow">http://maven.apache.org/</a></li> </ul> <p>What does another build tool targeted at Java really get me? </p> <p>Is it so hard to write a plugin using Java versus writing it in Ruby?</p> <p>If you use Buildr over another tool, why?</p> <p>Side question: How many build systems does the Apache foundation need targeted at Java?</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1015554#1015554 -12 Answer by Jason Watts for Why use Buildr instead of Ant or Maven? Jason Watts 2009-06-18T22:36:31Z 2009-06-18T22:36:31Z <p>&lt;subjective opinion&gt; Java is <strong>WAYYYYY</strong> overtooled and frameworked to death &lt;/subjective opinion&gt;</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1015662#1015662 4 Answer by Yishai for Why use Buildr instead of Ant or Maven? Yishai 2009-06-18T23:10:42Z 2009-06-18T23:10:42Z <p>Well first there was ANT, and that was too procedural and XML based instead of a real scripting language.</p> <p>Then there was Maven. That was too complex.</p> <p>Then Ruby got popular, so this is an attempt to make a better build process that is as powerful as Maven as using a DSL based on Ruby to not make it complicated. It's all the latest rage (DSL's in Ruby) in some circles.</p> <p>You didn't mention <a href="http://ant.apache.org/ivy/m2comparison.html" rel="nofollow">Ivy</a>, which brings some more Maven functionality to ANT.</p> <p>The nice thing about Java is there are so many options. The bad thing about Java is there are so many options ...</p> <p>But anyway, the core answer is that Buildr attempts to solve the build challenge with a different technology approach (a DSL in Ruby) something that doesn't exist in another Apache project.</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1020069#1020069 3 Answer by sal for Why use Buildr instead of Ant or Maven? sal 2009-06-19T21:21:19Z 2009-06-19T21:21:19Z <p>I haven't used Buildr. It does looks like an improvement over Ant for people who do not need or want Maven's project structure and/or dislike XML.</p> <p>I can see Buildr being useful for developers using JRuby with legacy Java code; assuming it can use also invoke rake and Capistrano tasks. </p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1051952#1051952 5 Answer by Daniel Spiewak for Why use Buildr instead of Ant or Maven? Daniel Spiewak 2009-06-27T02:02:11Z 2009-06-27T02:02:11Z <p>I use Buildr partially because it has the best Scala support of any build tool, but also because it has all of the dependency-managing goodness of Maven and then some. For example, Buildr makes it almost trivial to use artifacts which aren't in a repository. You can specify the URL of a zip or tarball to download, out of which Buildr will extract the relevant JAR file and install it into your local repository. For libraries which <em>are</em> in a Maven repository, Buildr is by far the easiest way to install them on your project's classpath. For example:</p> <pre><code>repositories.remote &lt;&lt; 'http://repo1.maven.org/maven2' define 'my-project' do compile.with 'commons-cli:commons-cli:jar:1.0' end </code></pre> <p>After installing that in your <code>buildfile</code> and placing your sources in <code>src/main/java</code>, just run:</p> <pre><code>$ buildr </code></pre> <p>Buildr will take care of downloading the Commons CLI dependency, compiling your sources and running all tests (if any). As an extra bonus, it will perform all of these tasks quite a bit faster than Maven would have (really, Buildr performs exceptionally well).</p> <p>What really puts the icing on the cake is how easy it is to define ad hoc tasks. Buildr is built on top of Rake, which means that anything you can do with Rake, you can do in exactly the same way with Buildr. For example, let's say that I wanted to define a task to generate documentation for my project using ReStructured Text. Buildr doesn't have a built-in task for that, but I can easily define one of my own:</p> <pre><code>define 'my-project' do task :rst do system 'rst2html', _('README.rst'), _('README.html') \ or fail 'Unable to invoke rst2html.' end end </code></pre> <p>With this, I can invoke the following from <em>any</em> subdirectory of the project:</p> <pre><code>$ buildr my-project:rst </code></pre> <p>Buildr takes care of canonicalizing the paths (that's what the mysterious <code>_</code> method handles). I could even change things up a bit using Rake file task magic so that the <code>rst</code> task only runs if the <code>README.rst</code> file has changed since the last rebuild:</p> <pre><code>define 'my-project' do file _('README.html') =&gt; _('README.rst') do system 'rst2html', _('README.rst'), _('README.html') \ or fail 'Unable to invoke rst2html.' end task :rst =&gt; [ file _('README.html') ] end </code></pre> <p>It's hard to overstate just how powerful and useful this is in practice. I used to be a die-hard Ant user, not because I liked the tool, but because it was standard and I had yet to see anything better. Maven was (and is) too complicated and too restrictive. Imagine trying something like the above in Maven. You would have to write an entire plugin, just for that!</p> <p>The only problem with Buildr is the fact that it isn't very widely used, and so a) not a lot of people have it installed, and b) not a lot of people know how to use it. It's not a difficult tool, but it's harder than Ant if that's what your dev team already knows. Fortunately, both of these problems are easily remedied given enough time and exposure.</p> <p>If you think about it, the question isn't "Why use Buildr?", it's really "Why use anything else?" The advantages afforded by Buildr are so substantial, I really can't see myself going with any other tool, at least not when I have a choice.</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1052011#1052011 3 Answer by Matthieu for Why use Buildr instead of Ant or Maven? Matthieu 2009-06-27T02:43:26Z 2009-06-27T04:23:09Z <p>I've used Buildr for quite some time and believe me, it's an order of magnitude or two less painful than Maven. Copying a file is cp, not 20 lines of XML you have to spend 4 hours to get right. We're using it on a fairly big and complex build, in Apache ODE. Check it out for yourself (that's the whole thing):</p> <p><a href="http://github.com/apache/ode/blob/trunk/Buildfile" rel="nofollow">http://github.com/apache/ode/blob/trunk/Buildfile</a></p> <p>We used to rely on Ant, with a fairly extensive set of scripts. It worked but was expensive to maintain. The biggest mistake afterward was to migrate to Maven2. I could write pages of rants explaining all the problems we ran into and we still ended up with thousands of lines of XML. Check these two excerpts:</p> <p><a href="http://github.com/apache/ode/blob/aa9743cd981a4d2f9ea8668c3283cc1cb6b08bcf/pom.xml" rel="nofollow">http://github.com/apache/ode/blob/aa9743cd981a4d2f9ea8668c3283cc1cb6b08bcf/pom.xml</a> <a href="http://github.com/apache/ode/blob/aa9743cd981a4d2f9ea8668c3283cc1cb6b08bcf/axis2-war/pom.xml" rel="nofollow">http://github.com/apache/ode/blob/aa9743cd981a4d2f9ea8668c3283cc1cb6b08bcf/axis2-war/pom.xml</a></p> <p>$ ack -g "(build|pom).xml" | xargs wc -l 4652 total</p> <p>By my count that's 4652 lines against 698 and our build was much simpler back then, so the comparison isn't even completely fair to Buildr.</p> <p>So which one would you rather write/read/maintain?</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1052143#1052143 0 Answer by IttayD for Why use Buildr instead of Ant or Maven? IttayD 2009-06-27T05:01:18Z 2009-06-27T05:01:18Z <p>It's not hard to write a plugin, but it is a lot of overhead to wrap a one-shot action as a plugin. It is also harder to maintain (need to edit the plugin file, build, package, deploy instead of just changing the task code in the buildfile)</p> <p>With BuildR, your build files are written in a real language (you can use variables, methods, loops, containers), which is needed because building a product requires custom logic (code). The myth that Maven tries to sell is that it is all just declaring what you wants (via properties) and a "maven" creates everything for you. You need your own code.</p> <p>Because of the fact all the modules are defined in one file, it allows to easily share common data (artifact names/versions, custom methods, layouts etc.) between projects (contrary to mavens inheritance or ant's import)</p> <p>After using BuildR for some time now I can say it is very well designed (but not over-designed as Maven is)</p> <p>One more thing, that people may not consider is that because of the openness of Ruby I found I can fix bugs in BuildR by rewriting the buggy method (usually very short) in a file checked out with the project. This means I'm not biting my nails waiting for the next BuildR release. I just submit a bug, fix the bug and go on.</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1053478#1053478 0 Answer by Tristan Juricek for Why use Buildr instead of Ant or Maven? Tristan Juricek 2009-06-27T19:43:56Z 2009-06-27T19:43:56Z <p>I've moved our code base to buildr, and overall, am much more pleased than the XML-based tools.</p> <p>Experiences:</p> <ol> <li>It's taken me a while to get the buildr workflow when I need to customize it</li> <li>Figuring out what part of the API documentation does what is still a little mystifying for someone who doesn't really know Ruby intensely</li> <li>#1 and #2 didn't matter at all: I was able to customize EJB and Jarjar deployments, change the TestNG workflow, etc, without really feeling strong about the tool or the ruby language.</li> </ol> <p>That's still the strongest sell: it builds everything I need, and as I've needed more, I just got things working without a lot of fuss. Haven't done C-based builds, but we do preprocess markdown into a documentation site, for example. And we just integrated that tool with very little code.</p> <p>With maven and ant, I always ended up making substantial external scripts. With buildr, it only takes a pretty minor amount of ruby knowledge for you to hack together a pretty workable system. And the more you learn, you will have far, far less code.</p> <p>I never even got close to creating an ant or maven plugin - it was never worth the time.</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1055864#1055864 1 Answer by Martin Grotzke for Why use Buildr instead of Ant or Maven? Martin Grotzke 2009-06-28T21:51:30Z 2009-06-28T21:51:30Z <p>See also this thread on the buildr mailing list on buildr vs ant or maven: <a href="http://is.gd/1hjWa" rel="nofollow">http://is.gd/1hjWa</a></p> <p>And btw., I'm using buildr since then for my private projects and love it - it really provides best of both worlds (declarative/mvn + imperative/ant).</p> <p>I'm also just in the process of converting a multi module ant project (using ant script library) to buildr and the build is getting much, much simpler.</p> <p>The positive side effect for me as a java user is that I learn a little ruby, and that's easy but lots of fun... :-)</p>