在IDEA中创建一个项目,一直Resolving Maven dependencies,转圈圈
Dependencies
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
项目地址:https://gitcode.com/gh_mirrors/de/Dependencies
免费下载资源
·
原因:第一次创建项目,没有修改镜像
解决方法:修改为国内的阿里云镜像
1.file----->setting
2.搜索框中搜索Maven,然后找到你自己的maven配置路径
3.在该目录下新建一个setting.xml文件,然后把下面这段话放进去,保存就ok了
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>
4.回idea刷新一下或者重建一个项目就ok了
参考自https://blog.csdn.net/liangyihuai/article/details/57406870
GitHub 加速计划 / de / Dependencies
27
1
下载
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
最近提交(Master分支:5 个月前 )
1997a400 - 3 年前
2f423539 - 3 年前
更多推荐
已为社区贡献5条内容
所有评论(0)