idea 配置 maven 和 鏡像

https://pan.baidu.com/s/1ZdTTxHzo9urnmwVel5ePKA
提取碼:9v4ehtml

文件的使用路徑maven

參考文章 1 https://blog.csdn.net/qq_32588349/article/details/51461182this

2 https://jingyan.baidu.com/article/a3a3f811cd5f0b8da2eb8abf.html阿里雲

 

1解壓到到本身的制定文件夾下面 url

2 配置settings.xml.net

 

3 文件路徑xml

 

鏡像htm

<mirrors>
    <!-- 阿里雲倉庫 -->
    <mirror>
        <id>alimaven</id>
        <mirrorOf>central</mirrorOf>
        <name>aliyun maven</name>
        <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
    </mirror>blog


    <!-- 中央倉庫1 -->
    <mirror>
        <id>repo1</id>
        <mirrorOf>central</mirrorOf>
        <name>Human Readable Name for this Mirror.</name>
        <url>http://repo1.maven.org/maven2/</url>
    </mirror>it

    <!-- 中央倉庫2 -->    <mirror>        <id>repo2</id>        <mirrorOf>central</mirrorOf>        <name>Human Readable Name for this Mirror.</name>        <url>http://repo2.maven.org/maven2/</url>    </mirror></mirrors> 

相關文章
相關標籤/搜索