Nexus3之在Window中搭建Maven私服

Nexus3之在Window中搭建Maven私服

文章目录

  • Nexus3之在Window中搭建Maven私服
  • 1. 下载
  • 2. 安装
  • 3. 创建用户及仓库
  • 4. maven的setting.xml文件修改
  • 5. POM.xml文件修改

1. 下载

官网: https://www.sonatype.com/download-oss-sonatype

下载OSS免费版,如下载版本为:Nexus-3.16.0-latest-win64.zip

2. 安装

  • 先将Nexus-3.16.0-latest-win64.zip文件解压到指定目录,如:D:\Nexus-3.16.0目录下
  • 将D:\Nexus-3.16.0\nexus-3.16.2-01\bin 添加到环境变量的path路径后面
  • 以管理员身份打开cmd窗口,输入下面命令安装
# 注册服务
nexus /install Nexus3 #此命令直接注册到服务中,名称为Nexus3
# 启动服务
net start Nexus3
  • 浏览器总输入 http://localhost:8081 进行访问,第一次访问时间稍微有些长

3. 创建用户及仓库

浏览器中打开Nexus图形界面后,输入管理员密码登录,默认账户/密码为 admin/admin123
注意:最新版本的admin会在安装目录下的admin.password文件中,首次登陆后修改admin密码接口,如:3.39.0-01的admin密码位置如下
Your admin user password is located in E:\warehouse\nexus-3.39.0-01\sonatype-work\nexus3\admin.password on the server.

  1. 创建一个用户,比如 yuan/yuan123
  2. 配置一个代理(proxy)仓库,如使用阿里云的maven仓库,URL: http://maven.aliyun.com/nexus/content/groups/public/
  3. 创建两个hosted(宿主)类型的仓库
#名称为yuan-releases的hosted仓库
http://localhost:8081/repository/yuan-releases/
#名称yuan-sanpshots的hosted仓库
http://localhost:8081/repository/yuan-snapshots/
  1. 创建一个group类型的仓库
#名称为yuan-public的group类型仓库
http://localhost:8081/repository/yuan-public/
  1. 将yuan-releases 与 yuan-snapshots 添加到仓库组 yuan-public中

4. maven的setting.xml文件修改

  1. server配置
<servers> 
	
	<server>
		 <id>yuan-releasesid>
		 <username>yuanusername>
		 <password>yuan123password>
	 server>
	
	 <server>
		 <id>yuan-snapshotsid>
		 <username>yuanusername>
		 <password>yuan123password>
	 server>
  servers>
  1. mirrors配置
 <mirrors>  
	 
	 <mirror>
		<id>nexus-aliyunid>
		<name>Nexus aliyunname>
		<url>http://maven.aliyun.com/nexus/content/groups/public/url>
		<mirrorOf>centralmirrorOf>
	 mirror>	
	 
	<mirror>
            <id>nexus-yuanid>
            <mirrorOf>*mirrorOf>
            <name>Nexus yuanname>
            <url>http://localhost:8081/repository/yuan-public/url>
    mirror>
  mirrors>
  1. profiles编写
<profiles>
    
	<profile>
      <id>jdk8id>
      <activation>
		<activeByDefault>trueactiveByDefault>
        <jdk>1.8jdk>
      activation>
      <properties>
        <maven.compiler.source>1.8maven.compiler.source>
		<maven.compiler.target>1.8maven.compiler.target>
		<maven.compiler.compilerVersion>1.8maven.compiler.compilerVersion>
      properties>
      
	  <repositories>
        <repository>
            <id>nexus-yuanid>
            <name>nexus yuan groupname>
            <url>http://localhost:8081/repository/yuan-public/url>
            <releases>
                <enabled>trueenabled>
            releases>
            <snapshots>
                <enabled>trueenabled>
            snapshots>
        repository>
    repositories>
    
    <pluginRepositories>
        <pluginRepository>
            <id>nexus-yuanid>
            <name>nexus yuan groupname>
            <url>http://localhost:8081/repository/yuan-public/url>
            <releases>
                <enabled>trueenabled>
            releases>
            <snapshots>
                <enabled>trueenabled>
            snapshots>
        pluginRepository>
    pluginRepositories>
    profile>
  profiles>
  
  <activeProfiles>
    <activeProfile>jdk8activeProfile>
  activeProfiles>

5. POM.xml文件修改

一般将私服配置到父工程的pom.xml文件中

  1. 在pom.文件中添加下面内容
<distributionManagement>
        
        <repository>
            
            <id>yuan-releasesid>
            <name>nexus yuan groupname>
            <url>http://localhost:8081/repository/yuan-releases/url>
        repository>
        
        <snapshotRepository>
            
            <id>yuan-snapshotsid>
            <name>nexus yuan groupname>
            <url>http://localhost:8081/repository/yuan-snapshots/url>
        snapshotRepository>
    distributionManagement>
  1. 完成后,可在idea中执行maven的install命令进行安装
  2. install命令成功后,可执行deploy命令将jar发布的maven私服库中。

你可能感兴趣的:(Maven,Nexus3,Java17,maven,java,Nexus3)