1、安裝nexus 官網:http://www.sonatype.org/nexus/go/ 瀏覽器
注:nexus2.6版本後不支持jdk1.6服務器
2、安裝mavenmaven
3、打開url
默認帳號:admin/admin123xml
右上角log in後點擊profile能夠進行帳號密碼操做get
4、上傳jar包 it
①頁面手動上傳 ftp
②批量上傳jdk
ftp鏈接服務器,找到sonatype-work文件夾,將jar包上傳到/sonatype-work/nexus/storage/public/文件夾下
默認路徑爲:
nexus-work=${bundleBasedir}/../sonatype-work/nexus
上傳完後瀏覽器輸入http://IP地址:8081/nexus/content/groups/public/能夠查看全部jar包
5、maven settings.xml文件更改
鏡像地址:
<mirrors>
<mirror>
<id>id</id>
<name>name</name>
<url>http://IP地址 :8081/nexus/content/groups/public</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
倉庫地址:
<repository>
<id>central</id>
<name>Public Repositories</name>
<url>http://IP地址:8081/nexus/content/groups/public</url>
<layout>default</layout>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</releases>
</repository>