为何用到Maven私服?

我们从项目实际开发来看:

  1. 一些无法从外部仓库下载的构件,例如内部的项目还能部署到私服上,以便供其他依赖项目使用。

  2. 为了节省带宽和时间,在局域网内架设一个私有的仓库服务器,用其代理所有外部的远程仓库。当本地Maven项目需要下载构件时,先去私服请求,如果私服没有,则再去远程仓库请求,从远程仓库下载构件后,把构件缓存在私服上。这样,及时暂时没有Internet链接,由于私服已经缓存了大量构件,整个项目还是可以正常使用的。同时,也降低了中央仓库的符合。

Docker中Maven私服的搭建-LMLPHP

如上摘抄自私服服务器架设,如下为详细步骤:

1、下载一个nexus3的镜像

docker pull sonatype/nexus3

Docker中Maven私服的搭建-LMLPHP

2、将容器内部/var/nexus-data挂载到主机/root/nexus-data目录

docker run -d -p 8081:8081 --name nexus -v /root/nexus-data:/var/nexus-data --restart=always sonatype/nexus3

通过 docker ps -a 查看容器启动情况

Docker中Maven私服的搭建-LMLPHP

验证,通过id查看容器的详细信息,输出如下ip地址。

docker inspect 容器id

Docker中Maven私服的搭建-LMLPHP

紧接着访问以下这个地址试一下:curl 127.17.0.2:8081

Docker中Maven私服的搭建-LMLPHP

如果启动失败,可关闭防火墙再试一下:

systemctl stop firewalld.service

ok,启动后浏览器访问一下 http://ip:8081

Docker中Maven私服的搭建-LMLPHP

至此,私服搭建成功。

默认登陆账号 admin admin123

Docker中Maven私服的搭建-LMLPHP

注意,这个时候你可能会遇到如下这个错误:

Incorrect username or password, or no permission to use the application.

Docker中Maven私服的搭建-LMLPHP

Docker中Maven私服的搭建-LMLPHP

docker exec -it c2101070de57 bash
bash-4.2$ cd /nexus-data/
bash-4.2$ cat admin.password 
d62fa667-a22b-41db-a14a-6aa6f793f4fbbash-4.2$ 

去掉后面的 bash-4.2$d62fa667-a22b-41db-a14a-6aa6f793f4fb 即为密码。

重新登陆后,会提示你重设密码:

Docker中Maven私服的搭建-LMLPHP

3、创建maven仓库

上传maven私服之前我们先,创建个仓库

Docker中Maven私服的搭建-LMLPHP

选择maven2(hosted)

Docker中Maven私服的搭建-LMLPHP

填写仓库信息:

Docker中Maven私服的搭建-LMLPHP

创建用户:

Docker中Maven私服的搭建-LMLPHP

填写基本信息

Docker中Maven私服的搭建-LMLPHP

创建好账户后就可以在右上角切换账户了。

接着就是配置本地 maven > conf 了,找到自己本机的 maven conf 下的 setting.xml 文件,添加如下信息:

Docker中Maven私服的搭建-LMLPHP

注意是 services 节点下:

<services>
    <server>
        <id>ttyy</id>
        <username>ttyy</username>
        <password>ttyy</password>
    </server>
 </services>

4、如何将架包上传到maven私服

创建一个普通的 maven 项目,配置 pom.xml 如下:

<!--注意限定版本一定为RELEASE,因为上传的对应仓库的存储类型为RELEASE -->
<!--指定仓库地址 -->
<distributionManagement>
    <repository>
        <!--此名称要和.m2/settings.xml中设置的ID一致 -->
        <id>ttyy</id>
        <url>http://192.168.10.130:8081/repository/ttyy-release/</url>
    </repository>
</distributionManagement> <build>
    <plugins>
        <!--发布代码Jar插件 -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-deploy-plugin</artifactId>
            <version>2.7</version>
        </plugin>
        <!--发布源码插件 -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.2.1</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

项目命令行中执行如下指令:

mvn deploy

Docker中Maven私服的搭建-LMLPHP

发布成功后,如何搜索呢?如下图:

Docker中Maven私服的搭建-LMLPHP

发布后如何使用呢,相信很多小伙伴肯定用过阿里云的私服,一样的道理啦:

<dependencies>
    <dependency>
        <groupId>club.sscai</groupId>
        <artifactId>ttyy-springboot</artifactId>
        <version>1.0-RELEASE</version>
    </dependency>
</dependencies> <repositories>
    <repository>
        <id>ttyy</id>
        <url>http://192.168.10.130:8081/repository/ttyy-release/</url>
    </repository>
</repositories>

Docker中Maven私服的搭建-LMLPHP

05-27 04:39