Bootstrap

Nexus搭建本地私有Maven 仓库

Sonatype Nexus搭建本地私有 Maven 仓库

安装nexus服务

首先下载Nexus Repository OSS,地址: https://www.sonatype.com/products/repository-oss-download。

在这里插入图片描述

填写信息后点击DOWNLOAD,选择对应OS版本。

在这里插入图片描述

以nexus-3.42.0-01-unix.tar.gz为例,下载完成后解压:

tar -xzvf nexus-3.42.0-01-unix.tar.gz

在nexus-3.42.0-01/bin目录下执行:

./nexus run

开启成功:

在这里插入图片描述

此时浏览器打开http://localhost:8081/ 就可以打开nexus的控制面板了。

在这里插入图片描述

默认端口修改

nexus默认端口为8081,可能由于默认端口被占用导致启动失败:

在这里插入图片描述

Linux可根据端口查找进程

 sudo lsof -i:

修改nexus-3.42.0-01/etc目录下的nexus-default.properties的application-port:

## DO NOT EDIT - CUSTOMIZATIONS BELONG IN $data-dir/etc/nexus.properties
##
# Jetty section
application-port=8081
application-host=0.0.0.0
nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml
nexus-context-path=/

# Nexus section
nexus-edition=nexus-pro-edition
nexus-features=\
 nexus-pro-feature

nexus.hazelcast.discovery.isEnabled=true

登录nexus

用户名为admin,默认密码在sonatype-work\nexus3目录下admin.password中,首次登录会提示修改密码。

手动上传aar

登录后点击upload,选择一个仓库:

在这里插入图片描述

点击Upload,就完成了上传。

引用AAR

添加maven仓库:

maven {
	allowInsecureProtocol = true
	url 'http://172.20.217.6:8080/repository/maven-releases/'
}

然后build.gradel添加对应aar依赖。

;