idea 配置 maven 和 鏡像


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

文件的使用路徑

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

2 https://jingyan.baidu.com/article/a3a3f811cd5f0b8da2eb8abf.html

 

1解壓到到自己的制定文件夾下面 

2 配置settings.xml

 

3 文件路徑

 

鏡像

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


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


    <!-- 中央倉庫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> 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM