eclipse无法修改maven默认的本地仓库位置。

2024-12-04 18:55:32
推荐回答(5个)
回答1:

原因:eclipse中maven默认仓库是当前用户下.m2/repository,需改变默认路径按照下面步骤。这里以D:\IDE\personalEclipse\repository为例: 

  1. 手动创建本地仓库的地址为,在对应路径D:\IDE\personalEclipse\下创建repository文件夹,然后将D:\IDE\personalEclipse\apache-maven-3.3.9\conf\setting.xml这个路径下的文件复制到D:\IDE\personalEclipse\repository该文件夹下。

  2. 从windows的环境变量中增加了:M2_REPO=D:/IDE/personalEclipse/repository,同时把这个变量增加到path变量中。 


  3. 修改D:\IDE\personalEclipse\apache-maven-3.3.9\conf\setting.xml文件,在localRepository标签中添加D:/IDE/personalEclipse/repository表示maven的本地库的路径

  4. 从eclipse->preferences->maven->installations下add一个已经安装到d盘的 maven: 

  5. 从eclipse->preferences->maven->installations下修改user setting 选项为:D:/IDE/personalEclipse/repository/settings.xml,接着修改global setting 

  6. D:\IDE\personalEclipse\apache-maven-3.3.9\conf\setting.xml,找到对应的文件路径即可 ,并点击update settings,然后点击下面的reindex按钮更新索引。

  7. 点击配置窗口的apply按钮即可。配置修改后,eclise会自动更新索引,当完成后重启myeclipse,会发现M2_REPO变量的值变成了D:/IDE/personalEclipse/repository。

回答2:

我猜你们在settings.xml中配置仓库配置错了位置.

我猜你们是在箭头处配置了,可惜这里是注解,要在注解外配置.配置好之后,重启Eclipse,然后再设置就行了!

回答3:

从eclipse中增加了maven2的插件之后,maven默认的本地库的路径是${user}/.m2/repository/下,一般windows用户的操作系统都安装在C盘,所以这个目录下的jar包比较危险。我尝试从myeclipse->preferences->java->build path->classpath variables中查找M2_REPO这个变量,发现其路径指向的是“C:\Documents and Settings\lvxda\.m2\repository\”,我想修改其路径为:d:\m2\repository,可是这个变量的编辑按钮是灰色的,不可编辑。从网上也没有找到相应的解决办法。打算自己尝试一下:

1、手动创建本地仓库的地址为:d:/m2/repository

2、从windows的环境变量中增加了:M2_REPO=d:\m2\repository,同时把这个变量增加到path变量中。

3、修改d:\maven\conf\setting.xml文件,在节点下新增一行:
复制内容到剪贴板
代码:
d:/m2/repository
表示本地仓库的地址为:d:/m2/repository。
4、从myeclipse->preferences->maven->installations下add一个已经安装到d盘的maven,如:d:\maven,并勾选此新加项。并点击下面的browse按钮打开maven的全局配置文件,如:d:\maven\conf\setting.xml。

5、从myeclipse->preferences->maven->installations下修改user setting 选项为:D:\m2\repository\settings.xml,并点击update settings。并点击下面的reindex按钮更新索引。

6、点击配置窗口的apply按钮,突出配置窗口。

7、配置修改后,myeclise会自动更新索引,当完成后重启myeclipse,会发现M2_REPO变量的值变成了d:/m2/repository。

自此,maven从远程库下载的jar包都会放到d:/m2/repository下。为了避免每次构建系统都从远程仓库下载jar,需要搭建私服。

回答4:

修改完后, 这俩都要点

最后要更新项目

即: 右键项目-Maven-Update Project

回答5:

setting.xml配置文件的localRepository标签写错没?