maven导入项目问题Could not transfer artifact org.apache.maven.plugins:maven-clean-plugin:pom:2.5 from/to alimaven (https://maven.aliyun.com/repository/public): D:\Software\maven3.6\apache-maven-3.6.1\maven-repo\org\apache\maven\plugins\maven-clean-plugin\2.5\maven-clean-plugin-2.5.pom.part.lock (系统找不到指定的路径。)
首先检查一下路径一不一致
进入setting->maven查下面两个是写错,或者本地仓库与setting.xml里面的本地仓库不一样
下载地址修改
将sitting.xml配置文件改为阿里云的仓库地址
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
如果还是报错就找到setting->maven->importing,这里是证书问题
加入这句话
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true
如果还是不行就在setting->maven->runner
加入这句话
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true -DarchetypeCatalog=internal
上面试过都没问题的话哪么就是User用户对你创建的Maven的仓库的文件夹的访问权限不够(我就是这个问题,亲测有效)
找到你的本地仓库,这个就是你自己建立的哪个仓库,右键属性找到安全
你会发现我指的几个你的文件都没有打上勾,这就代表每次需要写入,修改文件是都需要管理员权限,maven下载插件时是自动在里面创建文件夹,它肯定没有管理员权限,所以创建不了,就报找不到系统路径。
那我们就修改他的权限,点击高级
选中Authentical Users 点击编辑,把它写入权限打开,修改权限打开,我想到以后这里以后肯定有很多操作,我是全部权限都打开了。
最后
点击重新加载所有项目就o~k了。