maven私服nexus
1、sonatype nexus简介
Nexus是谷歌手机的一个牌子,我们要介绍的不是Nexus,而是Sonatype Nexus。它是Sonatype公司的一个产品,叫Nexus,它是Maven的私服。事实上有三种专门的Maven仓库管理软件可以帮助我们创建私服,有Apache的Archiva;JFrog的Artifactory和Sonatype的Nexus。其中Archiva是开源的,Artifactory和Nexus的核心也是开源的。这里我们重点介绍Sonatype公司的Nexus。
2、安装
下载地址:http://www.sonatype.org/nexus/
NEXUS OSS [OSS = Open Source Software,开源软件——免费] NEXUS PROFESSIONAL -FREE TRIAL [专业版本——收费]。 开源版本直接下载地址:https://www.sonatype.com/download-oss-sonatype
目录结构:
nexus-3.16.0-01:nexus服务器相关的文件 sonatype-work:nexus工作数据文件,存放生成的配置文件、日志文件、仓库文件等
端口配置:
安装路径etc目录下nexus-default.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
程序启动:
/bin目录,执行命令:nexus.exe /run
显示 Started Sonatype Nexus OSS 启动成功
程序访问:
启动成功后,默认访问地址:https://localhost:8081 初始账号密码:admin / admin123
注册为服务:
// cmd必须以管理员运行才注册(安装)服务 nexus.exe /install #安装 nexus.exe /start #开始 nexus.exe /stop #结束 nexus.exe /uninstall #卸载
2、使用
3、添加私有资源
例如:jdbc