Back up your claim with some actual benefits.
feedback
|
|
Contrary to what @Joe Skora has said, with Maven 2 I have rarely needed to use ant in combination with Maven. Maven 1 was built on top of ant, so you often found yourself dropping down into ant related things. I rarely have, however, with Maven. These are the reasons I advocate Maven:
Those are my main reasons for advocating Maven. However, as others have noted, it is far from perfect:
The declarative dependency management and version artifacts alone have got me sold on Maven. | |||||||||||||||||||
feedback
|
|
We chose Maven 2 last year for one reason: Ant is a build tool; Maven is a build system What this means is that with Maven, you don't need to decide your directory layout, build targets, versioning scheme, management of dependencies, etc. This is all designed for you. It also means you will be working against the tool somewhat if you don't like the default. The benefits are that most of the common tools you want to build into your build system (CheckStyle, FindBugs, Unit Testing, Unit Coverage, JDepened...) are all available without any additional development work. In addition, there is a well-defined framework for extending the build system by building plugins (btw - using Ant to build plugins is trivially easy). Also, there is nice integration with IDEs so that developers are using the same build information as the auto-build system. The trade-off is that unless you are starting from scratch, you will probably need to refactor your source code to be in line with what Maven expects. The trade-off for not having to build everything from scratch is that you sometimes spend time figuring out how to coax Maven to do what you want, how you want it done. If I was starting from scratch again today, I would definitely go with Maven again (after 1+ year experience). | |||
|
feedback
|
|
I have used both Ant and Maven (1 and 2), and I strongly encourage avoiding Maven (see what others are saying). By using them, I mean that I have used, maintained, and created build scripts for dozens of clients and hundreds of projects, of all shapes and sizes. Neither Ant nor Maven scale well, so keep your build scripts independent (one project = one artifact at a time). However, Ant leaves you in control, but Maven will fight you forever unless you bend to its will (it's way or the highway). Best wishes. | |||||||||||||
feedback
|
|
Having just moved to an Ant project from many painful Maven projects, I was hoping for dumbed-down but simple builds with ant - unfortunately, the build environment at my new gig is a massive proprietary can-o-worms, as I'm sure most Ant-based projects become over time. At least Maven forces you to do things consistently, and to give credit, it goes a whole lot further towards providing a useful build environment than ant ever did. Ant falls short in delivering the tools to create a build environment by miles. I now understand why there's no good Ant plugin for Eclipse - it's all proprietary, so there's nothing consistent that a plugin (or human) can assume about an ant build, unlike maven, where everything is either explicitly defined, or implicitly follows convention. With not much to choose from, I would go with Maven again, but I'd recommend reading this first: 10 Sure Signs You Are Doing Maven Wrong Most of my maven frustrations have been caused by engineers who were tasked with setting up the maven build system and thought they knew better than to RTFM and follow convention. | |||
|
feedback
|
|
These are all preposterous:
Maven builds are not, in general, repeatable. I have worked on two teams using Maven and no one on the team understood the structure of Maven and the deeper implications of its use, even the ultra diehard flaming Maven fanboys. Sorry, the transitive dependency include logic is not "managing" anything for me, but it possibly saved the designers of Maven a few lines of XML. We have had bugs because of incorrectly configured scripts (that are quite subtle, I might add). These bugs have led to customers cancelling the contract.
The SCMS (e.g., Subversion, Mercurial, etc.) supports tagging. This is the version. You're telling me I need to have two versioning systems? The reliable one and Maven?
Maven supports transitive closure on a project's dependencies. This decreases dependency visibility. This is why transitive dependencies are not implemented in Eclipse or NetBeans, and another reason for the requirement of a (buggy, piss-poor) Eclipse plugin. Of course, most developers don't really use the full capabilities of Eclipse. Eclipse is an extremely advanced software development tool. The Maven plugin tampers with the build logic, breaks (in the case of transitive dependencies) visibility of real dependencies (vs. those that are not true downstream dependencies, only included to satisfy the transitive closure). As far as the "convention" over "configuration", that would be great but not every project requires all these folders. Very often, just to change Maven's 'convention' you can spend hours or even days. Yes, days.
This last comment "No need to check configuration files into source control". If all jars are in one directory (e.g., "/libs" or "/jars") then this is a non issue. What about platform specific build configuration files for cross platform builds? Does it make sense to write (non debuggable) XML scripts to glue these into Maven? IDE problems: The "java" folder causes a problem with NetBeans. Yes, in the modern world, there are multiple IDEs used on a single project. Due to transitive dependencies, the only way to load a Maven project into Eclipse is to use the plugin. This plugin performs a recursive inclusion of all downstream jars for each node in your Maven project. Also, this plugin will trigger complete workspace rebuilds (whenever it thinks it might need to), probably due to the loss of the detailed dependency information (that means "project A requires B, but NOT B's downstream dependencies"). Maven has support for tags that can toggle this transitive behavior, however, some of the team members who maintain the Maven xml files may disagree with turning this behavior off (don't touch my POM etc..). Thus, Maven causes serious negative workflow problems, particularly for expert programmers. In any event, the fact that you have to install a (crappy, buggy) plugin into your main development tool is a big knockout criterion for Maven. Even if the plugin were debugged, it has a profound negative effect on expert team member's ability to tweak their environment for their own purposes. The Maven plugin effectively disables stepping into the code as the jar files require source attachments. If the jar files do not contain embedded debugging information, they will need to be "unhooked" (and then of course "rehooked" later) to link your project to the source directories instead of the jars. Maven seems to appleal to people who:
| |||||
feedback
|
|
Its not either/or. Ant is a build tool, a powerful one but still just a build tool. Maven is a project oriented build manager that handles the build but also manages dependencies and artifacts, etc. Ant has a variety of tasks for handling Maven projects and repositories, because you will still use Ant when using Maven. | |||||||||
feedback
|
|
I generally prefer Ant because it is a tool as opposed to a system unlike Maven. In general I believe tools are better than systems because most real life problems are not systematic, they are specialized issues. Remember when Object Oriented Programming was supposed to abstract away all of the problems and solving any issue was merely an import and a new instance away? That did not really work out that way, did it? Real problems do not work that way, and systems are almost always more complicated, convoluted, inefficent, and error prone than specific solutions. Real problems require specific tools. That all in one screwdriver system probably doesn't have that torx 5mm you might need. And since Ant is simply a tool, you can use it in conjunction with other tools to create your specific solution. Common benefits of maven's system can easily be implemented in Ant:
And I can even do things that are super useful that I have not figured out how to do in maven:
Always be afraid of the "once size fits all", "just do this", "use X", "try my golden hammer", "don't worry about the specifics", "check out this magical encantation" solutions. | |||
|
feedback
|
|
I prefer Maven over Ant because of...
With all that said, I recommend that you do not use Eclipse with Maven. The Eclipse project structure is one of peers (it's flat) whereas maven uses a hierarchy (it's a tree). Trying to shoehorn your project into the eclipse format gets messy. The Netbeans and Intellij IDEA, both have excellent maven support. Philosophically speaking you might say that with maven you tell it what you want to accomplish and with ant you tell it how you want it to be done. | ||||
feedback
|
|
Ant is powerful build tool similar to make or nmake.Maven on the other hand is Apache project builded to overcome the shortcomings of Ant.Really speaking Ant is powerful build tool whereas Maven is little newer in this aspect | |||
|
feedback
|
|
Building with Ant is likely to become complicated over time. Ant requires for instance scripting in XML. XML is not a nice structure to develop in. Maven is not a silver bullet. (You might still need Ant.) But it is easier to maintain. It's most obvious advantage is managing 3rd party libraries. If only Maven was better documented... :-( | |||||
feedback
|
|
Maven has the chance to hit the sweet spot between a scripted build tool and an IDE-style pure declarative build. In the core of Maven is the build lifecycle, which is just an abstract sequence of steps. Then, in your POM you define (or inherit) a packaging. The packaging defines a set of default plugins and executions. You can think about the plugins as a bunch of Ant-tasks (or 'goals' in mavenspeak), which are versioned together. The executions define parameters for the actual goal and are bound to a lifecycle phase. See also these two blog articles (shameless self promotion). | ||||
|
feedback
|