eclipse更改maven的本地路径和外部仓库地址
背景
当前使用eclipse自带的maven碰到两个蛋疼的问题:
- maven在国内使用如果不进行FQ则会痛苦不堪如便秘。
- maven下载大量jar包导致某盘不够用,需要换大的分区。
因此为了解决这个问题就介绍两个eclipse配置:maven本地路径配置和maven外部路径配置(改为阿里的仓库,享受顺香丝滑)。
方法
- 进入eclipse的maven配置界面Window》Preferences>Maven>User Settings
- 你会发现eclipse自带的maven是没有settings文件的,所以你需要在计算机/用户/.m2文件夹中建一个settings.xml文件,内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? xml
version="1.0" encoding="UTF-8"?>
< 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 http://maven.apache.org/xsd/settings-1.0.0.xsd">
< localRepository >C:\Users\Ocean\.m2\repository</ localRepository >
< mirrors >
< mirror >
< id >nexus-aliyun</ id >
< mirrorOf >*</ mirrorOf >
< name >Nexus aliyun</ name >
< url >http://maven.aliyun.com/nexus/content/groups/public</ url >
</ mirror >
</ mirrors >
</ settings >
|
- 下面这个是配置你的本地仓库地址
1
|
< localRepository >C:\Users\Ocean\.m2\repository</ localRepository >
|
- 下面的是配置阿里巴巴的maven仓库,享受快速加载,感谢阿里!
1
2
3
4
5
6
|
< mirror >
< id >nexus-aliyun</ id >
< mirrorOf >*</ mirrorOf >
< name >Nexus aliyun</ name >
< url >http://maven.aliyun.com/nexus/content/groups/public</ url >
</ mirror >
|
- 建好settings文件后首先Browse文件,然后Reindex。
- 简单的两步就配置完成了