刚刚准备将maven项目中一个子项目打个包,使用了mvn package。心想这个很简单嘛,没料就报错了。报错咱不怕,看看错在哪就好了。
编译出错,找不到我定义的异常类中的配置。那应该是引用父模块出来问题。
那就试着去mvn install 一下项目吧。成功后再尝试 mvn package。搞定!
mvn install 和 mvn package 的作用
- install: install the package into the local repository, for use as a dependency in other projects locally
- package: take the compiled code and package it in its distributable format, such as a JAR.