How is “mvn clean install” different from “mvn install”?

前端 未结 5 941
名媛妹妹
名媛妹妹 2020-11-28 02:03

What is the difference between mvn clean install and mvn install?

5条回答
  •  再見小時候
    2020-11-28 02:30

    clean is its own build lifecycle phase (which can be thought of as an action or task) in Maven. mvn clean install tells Maven to do the clean phase in each module before running the install phase for each module.

    What this does is clear any compiled files you have, making sure that you're really compiling each module from scratch.

提交回复
热议问题