+1 vote
in Azure by
Built-in Build Lifecycles of Maven

1 Answer

0 votes
by

Maven has three built-in build lifecycles:

  • default - supports project deployment (compiling and packaging)

  • clean - supports project cleaning (removal of previous jar files, temp files, source files etc.)

  • site - supports project's site documentation.

...