美文网首页Maven
Maven实战之nexus

Maven实战之nexus

作者: 超级大鸡腿 | 来源:发表于2019-02-12 10:53 被阅读112次

    使用专门的Maven仓库管理软件Nexus构建Maven私服。

    nexus下载地址

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

    启动nexus服务

    管理员身份运行cmd,切换到目录D:\nexus-3.15.1-01-win64\nexus-3.15.1-01\bin(以我自己的存放目录举例子)

    1.   方式一,nexus.exe /run 命令可以启动nexus服务;

    2.   方式二,以本地服务来安装启动nexus;

    D:\nexus-3.15.1-01-win64\nexus-3.15.1-01\bin>nexus.exe /install //安装nexus服务 Installedservice 'nexus'

    D:\nexus-3.15.1-01-win64\nexus-3.15.1-01\bin>nexus.exe /uninstall //卸载nexus服务 Servicesis already stoped Uninstalledservice 'nexus' D:\nexus-3.15.1-01-win64\nexus-3.15.1-01\bin>net start nexus //启动nexus服务 nexus 服务已经启动成功 D:\nexus-3.15.1-01-win64\nexus-3.15.1-01\bin\bin>net stop nexus //关闭nexus服务 nexus 服务正在停止.. nexus 服务已经成功停止

    服务启动之后打开浏览器,输入http://127.0.0.1:8081/ 端口没被使用过的情况下,直接输入ip+8081端口,就可以打开nexus主页

    修改默认端口

    D:\nexus-3.15.1-01-win64\nexus-3.15.1-01\etc\nexus-default.properties 编辑可以修改端口

    application-host : Nexus服务监听的主机 application-port: Nexus服务监听的端口, nexus-context-path : Nexus服务的上下文路径 通常可以不做任何修改,主机可以改为application-host 为127.0.0.1(关于0.0.0.0与127.0.0.1的区别自行检索)

    主页如下

    登录之后就可以查看私服了。登录以后,最上面会有两个按钮,一个是查看仓库配置的(齿轮形状),另一个是查看仓库内容的(正方体), 通过点击左侧的browse来浏览仓库

    点击仓库配置按钮进入仓库管理

    Type仓库类型

    group(仓库组类型):又叫组仓库,用于方便开发人员自己设定的仓库;

    hosted(宿主类型):内部项目的发布仓库(内部开发人员,发布上去存放的仓库);

    proxy(代理类型):从远程中央仓库中寻找数据的仓库(可以点击对应的仓库的Configuration页签下Remote Storage Location属性的值即被代理的远程仓库的路径);

    virtual(虚拟类型):虚拟仓库(这个基本用不到,重点关注上面三个仓库的使用);

    Format仓库格式

    maven2

    nuget(.net仓库)

    Name

    maven-central:maven中央库,默认从https://repo1.maven.org/maven2/拉取jar

    maven-releases:私库发行版jar

    maven-snapshots:私库快照jar

    maven-public:仓库分组,把上面三个仓库组合在一起对外提供服务,在本地maven基础配置settings.xml中使用。

    Maven使用仓库的图解

    从图中可以看出,Maven可以从宿主仓库下载构件,也可以从代理仓库间接下载缓存构件,仓库组是一个虚拟仓库,最后实际会从组成仓库组的宿主仓库或者代理仓库下载构件。

    创建宿主仓库

    点击创建仓库按钮,选择仓库格式Maven2(hosted)

    项目中Maven集成nexus

    只要在PMO文件中配置私服的地址(比如http://192.168.1.161:8081)即可,配置如下:

    <repositories>

        <repository>

            <id>maven-central</id>

            <name>maven-central</name>

            <url>http://192.168.1.161:8081/repository/maven-central/</url>

            <snapshots>

                <enabled>true</enabled>

            </snapshots>

            <releases>

                <enabled>true</enabled>

            </releases>

        </repository>

    </repositories>

    项目中打包项目上nexus对应的仓库

    在项目pom文件中配置

    <!--定义snapshots库和releases库的nexus地址--> 

    <distributionManagement> 

        <repository> 

            <id>nexus-releases</id> 

            <url> 

                http://172.17.103.59:8081/nexus/content/repositories/releases/ 

            </url> 

        </repository> 

        <snapshotRepository> 

            <id>nexus-snapshots</id> 

            <url> 

                http://172.17.103.59:8081/nexus/content/repositories/snapshots/ 

            </url> 

        </snapshotRepository> 

    </distributionManagement> 

    如果发布时使用mvn deploy命令,版本号类似0.1-SNAPSHOT,此时maven会认为是快照版本,会自动发布到快照版本库 relases的会发布到relases仓库。 在distributionManagement段中配置的是snapshot快照库和release发布库的地址,这里是采用nexus作为镜像服务器。对于版本库主要是id和url的配置,配置完成后就可以通过mvn deploy进行发布了,当然了,如果你的镜像服务器需要用户名和密码,那么还需要在maven的settings.xml文件中做如下配置:

    <server> 

      <id>nexus-releases</id> 

      <username>admin</username> 

      <password>admin123</password> 

    </server> 

    <server> 

      <id>nexus-snapshots</id> 

      <username>admin</username> 

      <password>admin123</password> 

    </server>

    注意这里配置的server的id必须和pom文件中的distributionManagement对应仓库的id保持一致,maven在处理发布时会根据id查找用户名称和密码进行登录和文件的上传发布。

    此外nexus提供了全面的权限控制,能让用户自由地配置nexus用户,角色,权限

    相关文章

      网友评论

        本文标题:Maven实战之nexus

        本文链接:https://www.haomeiwen.com/subject/zlmheqtx.html