MyEclipse中引用的maven配置文件只访问私服的配置
Posted 戈博小刀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyEclipse中引用的maven配置文件只访问私服的配置相关的知识,希望对你有一定的参考价值。
MyEclipse中要用到集成的maven,公司内网有个私服,办公机不能上外网。 这时Eclipse中设置引用的外部Setting配置文件中只需如下配置即可: 1.配置本地主机的maven仓库路径 <localRepository>E:/maven_project/repository</localRepository> 2.配置访问私服的用户名和密码 <servers> <server> <id>releases</id> <username>xxx</username> <password>xx</password> </server> <server> <id>snapshots</id> <username>xxx</username> <password>xx</password> </server> </servers> 3.配置私服的路径【下面的url标签中的就是公司私服的访问路径地址】 <mirrors> <mirror> <id>nexus</id> /> <name>internal nexus respository</name> <mirrorOf>central</mirrorOf> <url>http://192.168.x.x:8081/nexus/content/groups/public</url> </mirror> </mirrors> 【在settings主标签中,除了上面的配置外,其他的全部都注释掉即可。打开其他的反而可能造成maven访问错误】
以上是关于MyEclipse中引用的maven配置文件只访问私服的配置的主要内容,如果未能解决你的问题,请参考以下文章