4.Maven配置本地仓库,阿里云远程仓库
1.配置本地仓库
Edit maven安装目录下->conf->settings文件
配置<localRepository>D:\myinstall\apache-maven-3.9.4\repository</localRepository> 改地址为本地工作目录
2.配置aliyun中央仓库
配置阿里云中央仓库的好处是下载jar包非常快(不配置默认在国外maven中央仓库下载,可能下载不下来)
加入如下配置
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>