I have been using maven for sometime, and I understand some of the basics of maven. I want to know how actually it works, and in this quest, I have this question.
When we execute a command like this:
mvn clean install
From where does it get the instructions; comparing it with ant, in ant we have build.xml which instructs how to do the work.
Is there any "built-in" file which mvn
uses to "see" what actions it has to do?
Any response to clarify this greatly appreciated.