Apache Maven is a software project management and build process tool. Maven uses concept of project object model(POM) to manage a project's build, reporting and documentation from a central piece/server.
Things I liked,
- Write little in fact very little build instructions. - Trick is to follow standard folder structure based on the archetype chosen war, ear & jar etc. Which means quite a lot of discipline across projects.
- Don't worry about checking in jar which are commonly used in projects, maven can get it for you from maven repository. Lot of checking time, memory, version conflicts and backup could be avoided.
- Custom archetype creation.
- Natural integration with unit testing tools, put the test case in rite place it taken care of running it for you.
- Project report generation.
- Maven plug-in for eclipse (Eclipse IAM) is cool to work with reduces lot of manual interventions.
Try maven in 5 minutes .
Reference
http://maven.apache.org/
3 comments:
Other side of the coin
Other side of the coin
May be you are right, still i feel maven has a better edge.
Post a Comment