vote up 6 vote down star
2

I am really tired of struggling with Maven 2 all the time. Build tools should not be in the way. Recently I have been looking at Buildr and Gradle. Maven 3 seems to fix some of the struggles. So, what should I go for now? Buildr? Gradle? Or wait a year for Maven 3?

flag

3 Answers

vote up 0 vote down

Keep your code well maintained and broken into well defined modules and porting between build systems becomes a minor problem.

As for now, maven-2 is a good choice for the middle 2/3rd of projects. For the really simple, ant is still ok. For the really complex, a hybrid of maven-2 and other tools (like antrun) becomes inevitable.

Not sure why you are having problems with maven-2.

It differs from ant and buildr in that it is a tool for describing your build process, not scripting it. Complex builds, the ones with multiple dynamic parts and nested and/or transient dependencies are hard to build because they are hard to describe.

link|flag
vote up 0 vote down

maven 3.x is already embedded in IDEs (at least on netbeans, check this link for more infomration). You can play today with maven 3.x simply building a Maven project with netbeans.

Another nice news is that maven got more 'enterprise' support with integrating EJB/WS in IDE projects (again, at least on netbeans).

So I would stick to maven 2.x for production builds and play with maven 3.x for development.

link|flag
Great to know. Another plus for moving to Netbeans. Will check that out. Thanks. – Sten Roger Aug 20 at 15:14
fwiw: m2eclipse and maven3 are developed in parallel by Sonatype. – Brian Fox Oct 28 at 3:18
vote up 2 vote down

No build system is a magic bullet. I find Maven solves more problems than it causes for me, but I'm quite comfortable writing plugins to get round its shortcomings, I also deal with hundreds of projects, so Maven's inheritance and dependency processing is quite helpful for me.

Browse SO a bit and you'll see Buildr and Gradle both have issues too (same for Ant and Ivy), generally you're trading one set of problems for another and its a case of finding the least painful.

Is there anything in particular that is bothering you about Maven or is it a general itch? If it is a particular problem it is worth looking at the Maven 3 issues on Jira, if the problem isn't addressed, you can raise it, or else there may be little point in you waiting

link|flag
Yes, I am aware that buildr and gradle has problems too. The biggest problem in Maven 2 is transient dependencies. It's great when I want it, but sometimes I would like to exclude a dependency globally, like commons-logging. Aslo, some of the plugins I use is really awful to work with. One option is to write a better plugin I suppose :-) – Sten Roger Aug 20 at 14:40
You can exclude transitive dependencies, though it is a bit clunky, have a look at this page: docs.codehaus.org/display/MAVENUSER/… – Rich Seller Aug 20 at 14:47
That method is what I'm doing now. Would still like to declare a global exclude. Maven 3 looks like it promises such a thing. – Sten Roger Aug 20 at 14:53
Instead of excluding I add the dependency with "provided" scope so it doesn't show up in classpaths or WARs. It will still be on the compile classpath though but as long as you don't use commons-logging in your code you'll be fine. – Martin Nov 1 at 15:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.