当前位置: 移动技术网 > IT编程>开发语言>Java > 浅谈Maven的安装及修改为阿里云下载依赖

浅谈Maven的安装及修改为阿里云下载依赖

2019年07月22日  | 移动技术网IT编程  | 我要评论

1518手机,赤色石,采暖炉 菲斯曼

使用java工程管理越来越多的jar包,担心导错了,多导了,漏导了怎么办?

换一个ide项目后项目会不会出一堆bug,看的头皮发麻?

自己写的代码放在别人的机器上运行会不会出问题?

maven的强大毋庸置疑,当使用maven后以上这些都不是问题,但是配置maven是一件耐心的事情,基本步骤总结如下:

一、下载

http://maven.apache.org/download.cgi

也可以直接在eclipse工具中下载,点击eclipse菜单栏help->eclipse marketplace搜索关键字maven到插件maven integration for eclipse 并点击安装即可

架构maven工作环境(配置环境变量)
新建:maven_home
路径(例如):d:\360downloads\tools\marven3.5\apache-maven-3.5.0
添加到path配置文件中:;%maven_home%\bin;

二、配置好后验证

输入mvn -version
成功后会有如以下提示:

microsoft windows [版本 6.1.7601]
版权所有 (c) 2009 microsoft corporation。保留所有权利。

c:\users\administrator>mvn -version
apache maven 3.5.0 (ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-04t03:39:0
6+08:00)
maven home: d:\360downloads\tools\marven3.5\apache-maven-3.5.0-bin\apache-maven-
3.5.0\bin\..
java version: 1.8.0_121, vendor: oracle corporation
java home: d:\program files\java\jdk1.8.0_121\jre
default locale: zh_cn, platform encoding: gbk
os name: "windows 7", version: "6.1", arch: "amd64", family: "windows"

三、修改默认下载地址,默认下载地址在c盘中如下:

c:\users\administrator\.m2
建议换一个地址,防止系统变慢,重装系统也不会影响。
如:d:\eee\1701javaee_2\maveninport_aliyun\.m2

四、将安装路径下的apache-maven-3.5.0\conf\settings.xml文件复制一份到新地址的.m2目录下面(与repository在同一目录)。

五、打开eclipse将maven工程添加到eclipse工具中。

window->preferences->maven->installations->add->maven安装路径。

六、打开settings.xml,修改如下2个地方的内容:

1、此处为存放下载依赖存放地方,在文件第53行:

原始文件:

<!-- localrepository
| the path to the local repository maven will use to store artifacts.
|
| default: ${user.home}/.m2/repository
<localrepository>/path/to/local/repo</localrepository>
-->

修改后的文件:

<!-- localrepository
| the path to the local repository maven will use to store artifacts.
|
| default: ${user.home}/.m2/repository
<localrepository>/path/to/local/repo</localrepository>
-->
<localrepository>d:\eee\1701javaee_2\maveninport_aliyun\.m2\repository</localrepository>
 

2、此处为修改为从阿里云服务器上下载依赖,强烈建议更换,下载速度会快很多,在文件第160行

原始文件:

<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>
<id>mirrorid</id>
<mirrorof>repositoryid</mirrorof>
<name>human readable name for this mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
</mirrors>

修改后的文件:

<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>
<id>mirrorid</id>
<mirrorof>repositoryid</mirrorof>
<name>human readable name for this mirror.</name>
<url>http://my.repository.com/repo/path</url>
</mirror>
-->
<!-- 阿里云镜像 下载配置 -->
<mirror>
<id>nexus-aliyun</id>
<mirrorof>*</mirrorof>
<name>nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

</mirrors>

完成后重启eclipse.

以上这篇浅谈maven的安装及修改为阿里云下载依赖就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网