Maven 依赖下载地址更改为alibaba镜像
Maven 依赖更改为alibaba镜像查看setting.xml所在的文件路径在 file -> setting -> Build,Execution,Deployment ->Maven然后根据文件路径找到setting.xml文件,用记事本打开在mirrors标签下添加如下代码<settings xmlns="http://maven.apache.o...
·
Maven 依赖更改为alibaba镜像
查看setting.xml所在的文件路径
在 file -> setting -> Build,Execution,Deployment ->Maven
然后根据文件路径找到setting.xml文件,用记事本打开
在mirrors标签下添加如下代码
<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>
完成后
在 file -> setting -> Build,Execution,Deployment ->Maven
在点击
再点击
最后 点击应用apply,就OK了
阿里仓库
https://maven.aliyun.com/mvn/search
更多推荐
已为社区贡献1条内容
所有评论(0)