Mvn install or Mvn package

后端 未结 8 1241
清歌不尽
清歌不尽 2020-12-07 13:41

I am new to Maven, I have a Java based web project with maven configured in my MyEclipse.
Now if I modified any java files then do I need to do Run as -> Mvn in

8条回答
  •  -上瘾入骨i
    2020-12-07 13:55

    From the Lifecycle reference, install will run the project's integration tests, package won't.

    If you really need to not install the generated artifacts, use at least verify.

提交回复
热议问题