修改本地仓库地址
maven 用来管理我们的 Java 第三方库,我们需要设置仓库的本地地址来存放这此第三方库。
打开 Maven 目录下的配置文件(\apache-maven-3.5.0\conf\settings.xml) , 找到 … 标签。
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ${user.home}/.m2/repository
-->
<localRepository>D:/Java/maven/repo</localRepository>
Maven 默认将本地仓库设置在 ${user.home}/.m2/repository 目录下,这里修改为 D:/Java/maven/repo 路径。
设置中央仓库地址
中央仓库即当我们要用到 Java 的第三方库时应该去哪里下载。
同样打开 Maven 目录下的配置文件(\apache-maven-3.5.0\conf\settings.xml) , 找到 … 标签。
<mirrors>
<!-- mirror
| Specifies a repository mirror site to use instead of a given repository. The repository that
| this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
| for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
|
<mirror&g
版权声明:本文为qq_30242987原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。