5maven生命周期

maven生命周期:
生命周期和构建的关系:
生命周期中的顺序:a b c d e
当我们执行c命令,则实际执行的是 a b c

生命周期包含的阶段:3个阶段
clean lifecycle :清理
  pre-clean clean post-clean

default lifecycle :默认(常用)

site lifecycle:站点
  pre-site site post-site site-deploy

再次强调:在pom.xml中增加完依赖后 需要maven - update project

原文地址:https://www.cnblogs.com/unlasting/p/12198346.html