0 votes
in Maven - Coalescing Pipeline by
What is the difference between ANT and Maven?

1 Answer

0 votes
by

ANT

Maven

 
  1. ANT has no formal conventions, so information is to be provided in the build.xml file.
  2. ANT is procedural.
  3. ANT has no life cycle.
  4. ANT scripts are not reusable.
  5. ANT is specifically a build tool.
 
  1. Maven has conventions, so information is not to be provided in the pom.xml file.
  2. Maven is declarative.
  3. Maven has a life cycle.
  4. Maven is mainly used as a project management tool.
  5. Maven plugins are reusable.
...