1.

What are the phases of the clean lifecycle?

Answer»

The Maven CLEAN lifecycle takes care of eliminating all temporary files from the output directory, including generated source files, compiled CLASSES, and previous JAR files, among other things.

  • pre-clean- performs tasks that are necessary prior to actual project CLEANING.
  • clean- delete all files CREATED by the previous build.
  • post-clean- performs tasks that are necessary to finalize project cleaning.


Discussion

No Comment Found