首页 javaWEB nexus 本地私服搭建

nexus 本地私服搭建

1. 下载Nexus   下载地址:http://nexus.sonatype.org/   &nb…

1. 下载Nexus

 

下载地址:http://nexus.sonatype.org/

 

 

2. 启动Nexus

 

nexus-2.0.6-bundle/nexus-2.0.6/bin/jsw/linux-x86-64/nexus 启动

 

 

3. 进入Nexus管理页面

http://localhost:8081/nexus/index.html

默认密码 admin admin123

 

点击Repositories ,可以看到仓库列表,包括下面几种:

Public Repositories    仓库组
3rd part                     三方库,可以上传jar包到这个仓库
Central                      maven中心仓库
Releases                  自己项目中发布的构建
Snapshots                 trunk 下开发一个项目

 

这里需要注意把Central 仓库的自动更新设置为True:

更新之后能看到Index:

	<!-- nexus帳號和密碼-->
	<server>
     <id>nexus-releases</id>
     <username>admin</username>
     <password>admin123</password>
   </server>
   <server>
     <id>nexus-snapshots</id>
     <username>admin</username>
     <password>admin123</password>
   </server>
  </servers>

 

	<!-- 引用naxus倉庫組-->
    <profile>
       <id>dev</id>
          <repositories>
             <repository>
                 <id>nexus</id>
                 <url>http://127.0.0.1:8081/nexus/content/groups/public/</url>
                 <releases>
                    <enabled>true</enabled>
                 </releases>
                 <snapshots>
                    <enabled>true</enabled>
                 </snapshots>
              </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>nexus</id>
                    <url>http://127.0.0.1:8081/nexus/content/groups/public/</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
  </profiles>

修改maven的配置文件

更多 :http://san-yun.iteye.com/blog/1609410

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

为您推荐

nodejs 整理记录

nodejs 整理记录

下载包 https://blog.csdn.net/m0_59878114/article/details/120274...
websocket测试html

websocket测试html

<!DOCTYPE html> <html> <head> <meta cha...
bigdemical两个数比较大小

bigdemical两个数比较大小

/*int result = bigdemical1.compareTo(bigdemical2) result = -...
Beetl2.7 中文文档

Beetl2.7 中文文档

Beetl目前版本是2.7.23,相对于其他java模板引擎,具有功能齐全,语法直观,性能超高,以及编写的模板容易维护等...
纯CSS实现多个便签在一行展示,拖动滚动

纯CSS实现多个便签在一行展示,拖动滚动

div <h2>请注意需要在移动端预览,PC端拖拽无效果</h2> <div class=...
返回顶部