+1 vote
in Azure by
edited by
Build Life Cycle Phases

1 Answer

0 votes
by

Following are the default phases of each build life cycle:

  • validate - checks if the project is correct and all information is available.

  • compile - compiles the source code in binary artifacts.

  • test - executes the tests.

  • package - takes the compiled code and packages it as, a war or jar or an ear file.

  • integration-test - takes the packaged result and executes additional tests required for packaging.

  • verify - checks if the package is valid.

  • install - installs the result of the package phase into the local Maven repository.

  • deploy - deploys the package to a target, i.e. a remote repository.

Related questions

0 votes
asked Feb 20, 2020 in Azure by MBarbieri
+1 vote
asked Jan 30, 2020 in Azure by Tate
0 votes
asked Aug 20, 2023 in Maven - Coalescing Pipeline by GeorgeBell
...