0 votes
in Maven - Coalescing Pipeline by
How does Maven Architecture work?

1 Answer

0 votes
by

Maven architecture works in three steps, which are as follows:

  • The first step is to read the pom.xml file.
  • Then, it downloads the dependencies defined in pom.xml into the local repository from the central repository.
  • Lastly, it creates and generates a report according to the requirements, and executes life-cycles, phases, goals, plugins, etc.
...