Maven私有仓库搭建配置

研发团队考虑使用 Jenkins 进行一键构建、部署服务,其中构建使用 Maven 进行,构建时需要从 Maven 仓库中下载所需依赖,因此项目的各个模块 jar 包需要上传到本地私有仓库中供 Maven 构建时下载。

  1. 下载 Maven 程序包并解压缩到仓库服务器,启动服务,地址为:
http://172.22.151.183:8081/
  1. 配置 Jenkins 服务所在机器的 Maven , 配置文件路径:
C:\Users\Administrator\.m2\settings.xml
  1. 配置文件完整内容:
<?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">
    
    <pluginGroups />
    <proxies />
	
    <servers>
	
	<server>
      <id>maven-thirdpart</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
	
	<server>
      <id>maven-releases</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
	
	<server>
      <id>maven-snapshots</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
		
	<server>
      <id>maven-public</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
	
	</servers>
    
    <localRepository>C:\Users\Administrator\.m2\repository</localRepository>
    
    <mirrors>
		<mirror>
            <id>maven-snapshots</id>
            <mirrorOf>*</mirrorOf>
            <url>http://172.22.151.183:8081/repository/maven-snapshots/</url>
        </mirror>
		<mirror>
            <id>alimaven</id>
            <mirrorOf>central</mirrorOf>
            <name>aliyun maven jcenter</name>
            <url>https://maven.aliyun.com/repository/jcenter</url>
        </mirror>
        <mirror>
            <id>alimaven</id>
            <mirrorOf>central</mirrorOf>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
        </mirror>
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <mirror>
            <id>central</id>
            <name>Maven Repository Switchboard</name>
            <url>http://repo1.maven.org/maven2/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <mirror>
            <id>repo2</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://repo2.maven.org/maven2/</url>
        </mirror>
        <mirror>
            <id>ibiblio</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url>
        </mirror>
        <mirror>
            <id>jboss-public-repository-group</id>
            <mirrorOf>central</mirrorOf>
            <name>JBoss Public Repository Group</name>
            <url>http://repository.jboss.org/nexus/content/groups/public</url>
        </mirror>
        <mirror>
            <id>google-maven-central</id>
            <name>Google Maven Central</name>
            <url>https://maven-central.storage.googleapis.com
            </url>
            <mirrorOf>central</mirrorOf>
        </mirror>
        <!-- 中央仓库在中国的镜像 -->
        <mirror>
            <id>maven.net.cn</id>
            <name>oneof the central mirrors in china</name>
            <url>http://maven.net.cn/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
    </mirrors>
	
</settings>
  1. 项目模块 pom 文件配置:
	<!-- 构件依赖仓库 -->
    <repositories>
        <repository>
            <id>maven-snapshots</id>
            <url>http://172.22.151.183:8081/repository/maven-snapshots/</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
                <!-- <updatePolicy>always</updatePolicy> -->
            </snapshots>
        </repository>
    </repositories>
    
    <!-- 插件仓库 -->
    <pluginRepositories>
        <pluginRepository>
            <id>maven-public</id>
            <url>http://172.22.151.183:8081/repository/maven-public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>
    
    <!-- 发布仓库 -->
    <distributionManagement>
        <snapshotRepository>
            <id>maven-snapshots</id>
            <name>maven-snapshots</name>
            <url>http://172.22.151.183:8081/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

以上,就是最最最简略的配置,甚至没有配置 release 发布版本仓库,因为我们项目目前需求只是 snapshot 快照版本,能够把依赖模块编译打包上传、web 服务模块构建时能够下载所需的依赖模块 jar 包即可。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值