修改maven仓库位置
Posted 壹兒壹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改maven仓库位置相关的知识,希望对你有一定的参考价值。
在eclipse中安装好maven2的插件后:
第一步:
默认会放在~/.m2/repository目录下 (“~”代表用户的目录,比如windows7下一般都是C:\Users\zz\.m2\repository),
但是一般不想放在C盘下,所以换个仓库位置(E:/mavenrepository)。
第二步:
修改配置文件,将下载的maven2中conf文件夹下的settings.xml复制到C:\Users\zz\.m2\repository(或者E:/mavenrepository)中,并将其中的
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ~/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
修改为:
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ~/.m2/repository
<localRepository>/path/to/local/repo</localRepository>
-->
<localRepository>E:/mavenrepository</localRepository>
注:这一行一定要放在外面
第三步:
修改Eclipse的MAVEN的存储位置:
点击Browser按钮,选择settings.xml文件,点击update Settings按钮即可。
以上是关于修改maven仓库位置的主要内容,如果未能解决你的问题,请参考以下文章