What does mvn install in maven exactly do

前端 未结 8 477
离开以前
离开以前 2020-12-04 06:37

I just started using Maven and I was told to do mvn install in a specific directory.

What does mvn install do, exactly?

I think i

8条回答
  •  温柔的废话
    2020-12-04 07:05

    At any stage of maven build life cycle, all the previous goals are performed.

    Ex: mvn install will invoke mvn validate, mvn compile, mvn test, mvn package etc.

提交回复
热议问题