美文网首页
nexus私服搭建及maven配置使用

nexus私服搭建及maven配置使用

作者: 山华水清 | 来源:发表于2019-03-03 09:49 被阅读0次

nexus私服搭建

参考资料
Nexus搭建开发组的私有仓库
https://www.cnblogs.com/fanzhenyong/p/7709434.html
nexus/bin/nexus 下修改INSTALL4J_JAVA_HOME_OVERRIDE=java环境变量
/opt/nexus/etc/nexus-default.propertie s修改端口
/opt/nexus/bin/nexus.rc 修改运行配置

# vi /etc/systemd/system/nexus.service

# file content start
[Unit]
Description=nexus service
After=network.target

[Service]
Type=forking
LimitNOFILE=65536
ExecStart=/opt/nexus/bin/nexus start
ExecStop=/opt/nexus/bin/nexus stop
User=root
Restart=on-abort

[Install]
WantedBy=multi-user.target
# file content end

# set file encode unix not dos
:set ff=unix
# 设置为自启服务
# systemctl  daemon-reload
# systemctl start nexus.service
# systemctl status nexus.service
# systemctl enable nexus.service
# 几种仓库类型

- hosted,本地仓库,通常我们会部署自己的构件到这一类型的仓库。比如公司的第二方库。

- proxy,代理仓库,它们被用来代理远程的公共仓库,如maven中央仓库。

- group,仓库组,用来合并多个hosted/proxy仓库,当你的项目希望在多个repository使用资源时就不需要多次引用了,只需要引用一个group即可。

# 预置三个本地仓库

- Releases:这里存放我们自己项目中发布的构建, 通常是Release版本的, 比如我们自己做了一个FTP Server的项目, 生成的构件为ftpserver.war, 我们就可以把这个构建发布到Nexus的Releases本地仓库. 关于符合发布后面会有介绍.

- Snapshots:这个仓库非常的有用, 它的目的是让我们可以发布那些非release版本, 非稳定版本, 比如我们在trunk下开发一个项目,在正式release之前你可能需要临时发布一个版本给你的同伴使用, 因为你的同伴正在依赖你的模块开发, 那么这个时候我们就可以发布Snapshot版本到这个仓库, 你的同伴就可以通过简单的命令来获取和使用这个临时版本.

- 3rd Party:顾名思义, 第三方库, 你可能会问不是有中央仓库来管理第三方库嘛,没错, 这里的是指可以让你添加自己的第三方库, 比如有些构件在中央仓库是不存在的. 比如你在中央仓库找不到Oracle 的JDBC驱动, 这个时候我们就需要自己添加到3rdparty仓库。


# 设置maven settings

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <localRepository>D:/deploy/apache-maven-3.5.3/repository</localRepository>
    <!-- 配置镜像 -->
    <mirrors>
        <mirror>
            <!-- 此镜像一般用来作为公司第三方引用基础类库镜像,是所有仓库的镜像地址 -->
            <id>nexus</id>
            <!-- 为*表示为所有的仓库做镜像,有了这个配置,所有的构建都会包含public组,如果你想包含public-snapshots组,
                你必须添加public-snapshots这个Profile,通过在命令行使用如下的 -P 标志:$ mvn -P public-snapshots clean install -->
            <mirrorOf>*</mirrorOf>
            <url>http://192.168.174.161:8081/repository/maven-public/</url>
        </mirror>
        <mirror>
            <!-- 此镜像一般用来作为公司内部开发的版本快照,作为public-snapshots仓库的镜像地址 -->
            <!-- 镜像的id,id用来区分不同的mirror元素。 -->
            <id>nexus-public-snapshots</id>
            <!-- 被镜像的服务器的id。例如,如果我们要设置了一个Maven中央仓库(http://repo1.maven.org/maven2)的镜像,
                就需要将该元素设置成central。这必须和中央仓库的id “central”完全一致。 -->
            <mirrorOf>public-snapshots</mirrorOf>
            <!-- 该镜像的URL。 -->
            <url>http://192.168.174.161:8081/repository/maven-public/</url>
        </mirror>
    </mirrors>

    <!-- settings.xml中的profile元素是pom.xml中profile元素的裁剪版本。它包含了activation, repositories, pluginRepositories 和 properties元素。
         这里的profile元素只包含这四个子元素是因为这里只关心构建系统这个整体(这正是settings.xml文件的角色定位),而非单独的项目对象模型设置。
       如果一个settings中的profile被激活,它的值会覆盖任何其它定义在POM中或者profile.xml中的带有相同id的profile。 -->
    <profiles>
        <profile>
            <id>development</id>
            <!-- 仓库。仓库是Maven用来填充构建系统本地仓库所使用的一组远程项目。而Maven是从本地仓库中使用其插件和依赖。
                不同的远程仓库可能含有不同的项目,而在某个激活的profile下,可能定义了一些仓库来搜索需要的发布版或快照版构件。有了Nexus,这些应该交由Nexus完成 -->
            <repositories>
                <repository>
                    <id>central</id>
                    <!-- 虚拟的URL形式,指向镜像的URL,因为所有的镜像都是用的是nexus,这里的central实际上指向的是http://repos.d.xxx.com/nexus/content/groups/public -->
                    <url>http://central</url>
                    <!-- 表示可以从这个仓库下载releases版本的构件-->
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <!-- 表示可以从这个仓库下载snapshot版本的构件 -->
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </repository>
            </repositories>

            <!-- 插件仓库。仓库是两种主要构件的家。第一种构件被用作其它构件的依赖。这是中央仓库中存储大部分构件类型。
                另外一种构件类型是插件。Maven插件是一种特殊类型的构件。由于这个原因,插件仓库独立于其它仓库。
               pluginRepositories元素的结构和repositories元素的结构类似。每个pluginRepository元素指定一个Maven可以用来寻找新插件的远程地址。 -->
            <pluginRepositories>
                <pluginRepository>
                    <id>central</id>
                    <url>http://central</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>

        <profile>
            <!--this profile will allow snapshots to be searched when activated-->
            <id>public-snapshots</id>
            <repositories>
                <repository>
                    <id>public-snapshots</id>
                    <!-- 虚拟的URL形式,指向镜像的URL,这里指向的是http://repos.d.xxx.com/nexus/content/groups/public-snapshots -->
                    <url>http://public-snapshots</url>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>public-snapshots</id>
                    <url>http://public-snapshots</url>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

    <!-- 激活的Profile。activation元素并不是激活profile的唯一方式。settings.xml文件中的activeProfile元素可以包含profile的id,
        任何在activeProfile中定义的profile id,不论环境设置如何,其对应的profile都会被激活。如果没有匹配的profile,则什么都不会发生。
      profile也可以通过在命令行,使用-P标记和逗号分隔的列表来显式的激活(如,-P test)。
      要了解在某个特定的构建中哪些profile会激活,可以使用maven-help-plugin(mvn help:active-profiles)。 -->
    <activeProfiles>
        <!-- 没有显示激活public-snapshots -->
        <activeProfile>development</activeProfile>
        <activeProfile>public-snapshots</activeProfile>
    </activeProfiles>

    <!-- 发布的服务器和密码,暂时未限制权限 -->
    <servers>
        <!-- 发布的位置在POM中配置,以ID为关联,有很多公用的信息需要配置在POM文件里,最佳实践是定义一个公司级别的root pom -->
        <server>
            <id>thirdparty</id>
            <username>admin</username>
            <password>admin123</password>
        </server>
        <server>
            <id>shsq-releases</id>
            <username>admin</username>
            <password>admin123</password>
        </server>
        <server>
            <id>shsq-snapshots</id>
            <username>admin</username>
            <password>admin123</password>
        </server>
    </servers>

</settings>

# pom本地发布配置

<distributionManagement>
        <repository>
            <id>shsq-releases</id>
            <name>User Project Release</name>
            <url>http://192.168.174.161:8081/repository/maven-releases/</url>
        </repository>

        <snapshotRepository>
            <id>shsq-snapshots</id>
            <name>User Project SNAPSHOTS</name>
            <url>http://192.168.174.161:8081/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

相关文章

网友评论

      本文标题:nexus私服搭建及maven配置使用

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