Back up your claim with some actual benefits.
|
5
|
|||||||||||
|
|
|
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. |
||||||||
|
|
|
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. |
||||||
|
|
|
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. |
|||
|
|
|
|
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). |
||
|
|
|
|
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). |
|||
|
|
|
|
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... :-( |
||
|
|
|
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 |
||
|
|
|
|
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. |
||||||
|
