What's the best tool for creating java besides ant?
5 answers
Ant, and Maven are two commonly used alternatives. What is considered the best will differ from project to project, and also often by developer and developer.
You have another option like Gant and Gradle. My favorite character is Gradle as it uses Groovy syntax and offers the benefits of Maven without forcing you to do anything.
+2
a source to share
The definite better alternative to ant (and a good successor) is Maven.
Maven has advantages over ant, and plugin development for Maven is progressing rapidly.
Maven advantages (over ant you can tell)
- Dependencies are loaded automatically
- Standardized, highly consistent layout -
- A standardized, very consistent name -
- Code coverage
- Extensive reports
- maven works easily with JUnit tests
The initial couple of hours will be daunting, but once you get used to it and see the benefits, you won't go back to ant ;-)
0
a source to share