博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maven私库nexus3安装及使用
阅读量:6223 次
发布时间:2019-06-21

本文共 2981 字,大约阅读时间需要 9 分钟。

hot3.png

一、试验环境

1、操作系统:Windows 10 

2、nexus版本:nexus-3.0.1-01-win64

二、安装

1、下载地址: 

下载 
2、我们下载nexus-3.0.1-01-win64.exe后双击安装即可,安装完成后默认开放8081端口。

三、使用

安装成功后有两个默认账号admin、anonymous,其中admin具有全部权限默认密码admin123;anonymous作为匿名用户,只具有查看权限。 

仓库 
用户 
仓库

pepositories说明

maven-central:maven中央库,默认从拉取jar 

maven-releases:私库发行版jar 
maven-snapshots:私库快照(调试版本)jar 
maven-public:仓库分组,把上面三个仓库组合在一起对外提供服务,在本地maven基础配置settings.xml中使用。

仓库 

component

本地maven库配置settings.xml

org.sonatype.plugins
nexus
admin
admin123
nexus
*
http://localhost:8081/repository/maven-public/
repo2
central
Human Readable Name for this Mirror.
http://repo2.maven.org/maven2/
nexus
central
http://central
true
true
central
http://central
true
true
nexus
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

工程配置pox.xml

nexus
Releases
http://localhost:8081/repository/maven-releases
nexus
Snapshot
http://localhost:8081/repository/maven-snapshots
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
compile
page
org.apache.maven.plugins
maven-surefire-plugin
true
org.apache.maven.plugins
maven-compiler-plugin
3.3
1.8
1.8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

编译到maven私库

deploy -e 

项目右单击->Run As->Maven build.. 
进入如下界面 
eclipse

快照编译:pom.xml中版本设置

0.0.1-SNAPSHOT
  • 1

编译后在nexus中看到如下图结果,快照已经编译到nexus中Components-> maven-snapshots。 

快照

发行版编译:pom.xml中版本设置

0.0.1-RELEASE
  • 1

编译后在nexus中看到如下图结果,发行版已经编译到nexus中Components->maven-releases。 

发行版

转载于:https://my.oschina.net/xiaominmin/blog/2050604

你可能感兴趣的文章
RHEL6.2下挂载光驱安装软件
查看>>
YYCache 源码分析(二)
查看>>
2016年第9本:系统之美
查看>>
framebuff 显示子系统
查看>>
php手册杂记
查看>>
Yii2 定时任务创建(Console 任务)
查看>>
lombok+slf4j+logback SLF4J和Logback日志框架详解
查看>>
PHP 单例模式继承的实现方式
查看>>
思维杂谈(1)
查看>>
【Java深入研究】3、HashMap源码解析(jdk 1.7)
查看>>
1102 采药 2005年NOIP全国联赛普及组
查看>>
WebSockets Tutorial(教程一)WebSockets简介
查看>>
仿支付宝/微信的password输入框效果GridPasswordView解析
查看>>
【复制虚拟机】虚拟机复制后无ip的问题
查看>>
002-数据库命名开发规范
查看>>
vue、vuex、iview、vue-router报错集锦与爬坑记录
查看>>
Redis使用示例及在PHP环境中用redis存储session
查看>>
Ansible 之Playbook
查看>>
update
查看>>
keepalived实现服务高可用
查看>>