[Solved] Is Maven just a bunch of Ant scripts?


No, while it’s possible to execute Ant tasks in Maven using the Maven AntRun Plugin, Maven is completely independent from Ant.

Like Ant, Maven is implemented in Java and you can configure it with XML.

https://github.com/apache/maven

solved Is Maven just a bunch of Ant scripts?