您的位置:首页 > 其它

maven缺少依赖包,强制更新命令

2017-09-27 20:49 295 查看

mvn clean install -e -U

-e详细异常,-U强制更新 

If your local repository is somehow mucked up for release jars as opposed to snapshots (-U and --update-snapshots only update snapshots), you can purge the local repo using the following:

                       mvn dependency:purge-local-repository

You probably then want to clean and install again:

                       mvn dependency:purge-local-repository clean install

Just in case someone wants only update project's snapshot dependencies and doesn't want to install artifact:

            mvn dependency:resolve -U 

Don't forget to reimport dependencies in your IDE. In IDEA you need to right click on pom file and choose Maven -> Reimport

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: