What does mvn install in maven exactly do

前端 未结 8 469
离开以前
离开以前 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:12

    mvn install primary jobs are to 1)Download The Dependencies and 2)Build The Project

    while job 1 is nowadays taken care by IDs like intellij (they download for any dependency at POM)

    mvn install is majorly now used for job 2.

提交回复
热议问题