maven私服的配置使用方法

发布时间:2020-09-26 02:13:06 作者:经典鸡翅
来源:脚本之家 阅读:241

maven的仓库分为本地仓库,远程仓库和私服仓库。

私服仓库一般是公司内部私有的,内部进行维护的。公司员工连接私服,从私服中下载jar,或者将自身的jar传到私服上。私服还可以从中央仓库下载jar,当私服中没用jar的时候,就会从中央仓库下载。

maven私服的配置使用方法

搭建私服下载

下载 Nexus,下载地址:http://www.sonatype.org/nexus/archived/ 。

可以选择zip和tar,分别对应windows和linux。

安装

将下载的zip解压,使用cmd进入bin目录,执行命令:

nexus.bat install

卸载

执行命令:

nexus.bat uninstall

启动

1、cmd进入目录,执行命令

nexus.bat start

2、在服务中找到nexus,右键启动

nexus配置文件详细

查看 nexus 的配置文件conf/nexus.properties
application-port=8081 # nexus 的访问端口配置
application-host=0.0.0.0 # nexus 主机监听配置(不用修改)
nexus-webapp=${bundleBasedir}/nexus # nexus 工程目录
nexus-webapp-context-path=/nexus # nexus 的 web 访问路径
nexus-work=${bundleBasedir}/../sonatype-work/nexus # nexus 仓库目录
runtime=${bundleBasedir}/nexus/WEB-INF # nexus 运行程序目录

访问私服

http://localhost:8081/nexus/

maven私服的配置使用方法

点击右上角log in,输入用户名和密码

maven私服的配置使用方法

默认是admin/admin123

登录完毕

maven私服的配置使用方法

上传jar包到私服

在maven的setting.xml中配置

 <server> 
   <id>releases</id> 
   <username>admin</username> 
   <password>admin123</password> 
  </server> 
  <server> 
   <id>snapshots</id> 
   <username>admin</username> 
   <password>admin123</password> 
  </server> 

配置项目的pom文件

<distributionManagement>
    <repository>
      <id>releases</id>
      <url>http://localhost:8081/nexus/content/repositories/releases/</url>
    </repository>
    <snapshotRepository>
      <id>snapshots</id>
      <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
    </snapshotRepository>
  </distributionManagement>

使用deploy命令即可将jar发布到私服,发布工程中的version,如果以snapshot结尾,则可以发布到快照仓库,如果以release结尾,则可以发布到releases版本。

从私服下载jar包

在setting中配置私服仓库

<distributionManagement>
    <repository>
      <id>releases</id>
      <url>http://localhost:8081/nexus/content/repositories/releases/</url>
    </repository>
    <snapshotRepository>
      <id>snapshots</id>
      <url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
    </snapshotRepository>
  </distributionManagement>

激活

 <activeProfiles> 
  <activeProfile>dev</activeProfile> 
 </activeProfiles> 

到此这篇关于maven私服的配置使用方法的文章就介绍到这了,更多相关maven私服配置使用内容请搜索亿速云以前的文章或继续浏览下面的相关文章希望大家以后多多支持亿速云!

推荐阅读:
  1. centos8下maven私服搭建(nexus-3.13)
  2. 部署maven&&Nexus私服

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

maven 私服 配置

上一篇:IIS下安装php5.3

下一篇:详解Javascript判断Crontab表达式是否合法

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》