首页 > 代码库 > 使用Nexus搭建Maven仓库

使用Nexus搭建Maven仓库

1.目的

通过建立自己的私服,能够减少中央仓库负荷、节省外网宽带、加速maven构建、自己部署构件等,从而高效的使用maven,nexus是当前流行的Maven仓库管理软件。

2.下载nexus

  • 2.1 网址:http://www.sonatype.org/nexus/,我选择zip包下载
    技术分享
    技术分享
  • 2.2 解压到E盘,选择进入所在机器的版本号进入,我选择:E:\nexus-2.12.1-01-bundle\nexus-2.12.1-01\bin\jsw\windows-x86-64,能够将nexus安装成windows服务,在服务中能够查看和启动
    技术分享
    技术分享
    假设启动失败,可能服务默认port8081已被占用,能够在E:\nexus-2.12.1-01-bundle\nexus-2.12.1-01\conf\nexus.properties中改动
    技术分享
  • 2.3 在浏览器中打开首界面:http://127.0.0.1:8082/nexus。默认的username和password:admin/admin123
    技术分享
  • 2.4 创建宿主仓库,指定本地仓库所在位置(E:\MavenRepository中包括经常使用构件)
    技术分享
    技术分享
    技术分享
  • 2.5 创建代理仓库,能够使用OSC公开地址:
    http://maven.oschina.net/content/groups/public/
    技术分享
  • 2.6 创建仓库组。一个仓库组能够相应多个仓库,这里測试设置host1和proxy1
    技术分享
  • 2.7 设置开放库,供外网用户使用,訪问地址:http://127.0.0.1:8082/nexus/content/groups/public/
    技术分享

  • 未完待续

<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

使用Nexus搭建Maven仓库