What does mvn install in maven exactly do

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

    -DskipTests=true is short form of -Dmaven.test.skip=true

    Make changes in Setting.xml in your .m2 folder. You can use link to local repo so that the jars once downlaoded should not be downloaded again and again.

    file://C:/Users/admin/.m2/repository
     
    

提交回复
热议问题