1. 程式人生 > >MyEclipse中引用的maven配置文件只訪問私服的配置

MyEclipse中引用的maven配置文件只訪問私服的配置

clip clas ase 密碼 mirrors 外部 lips ips 配置私服

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配置文件只訪問私服的配置