关于java:idea-使用-mvn-clean-package-报错-Could-not-create-local-repository

3次阅读

共计 716 个字符,预计需要花费 2 分钟才能阅读完成。

应用 mac 版本的 idea 打包应用打包命令 mvn clean package 总是报错:

[ERROR] Could not create local repository at /Repository -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/LocalRepositoryNotAccessibleException

在网上找了很多办法,都是讲 maven 的配置门路找不到。同样的问题在 windows 零碎没有问题,在 mac 上就有问题。maven 配置也没有问题,配置各种门路也存在:

解决方案

Could not create local repository at /Repository

无奈创立本地仓库,去找 setting.xml 配置文件:

<localRepository>/Repository</localRepository>

批改老本地的仓库门路:

<localRepository>/Users/opt/Repository</localRepository>

如果感觉文章对你有帮忙的话,请点个赞吧!

正文完
 0