当前位置:   article > 正文

Maven 在项目的 pom.xml 文件中 指定 阿里云的景象仓库

Maven 在项目的 pom.xml 文件中 指定 阿里云的景象仓库

配置

在 项目的 pom.xml 文件中添加如下配置即可


<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
   
   ......

    <!-- 下面是配置的代理的仓库 -->
    <repositories>
        <repository>
            <id>maven-ali-center</id>
            <url>https://maven.aliyun.com/repository/central</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>interval:10000</updatePolicy>
            </snapshots>
        </repository>

        <repository>
            <id>nexus</id>
            <url>http://repo.maven.apache.org/maven2</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>interval:10000</updatePolicy>
            </snapshots>
        </repository>


    </repositories>

</project>


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

阿里云仓库的使用

地址 :https://developer.aliyun.com/mvn/guide

可以搜索目标依赖

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/543231
推荐阅读
相关标签
  

闽ICP备14008679号