1. 程式人生 > >maven全域性倉庫中新增阿里雲映象

maven全域性倉庫中新增阿里雲映象

找到maven 的配置檔案settings.xml,在其中新增以下配置,可解決在中央倉庫無法下載jar包問題。

Could not transfer artifact * from/to central (https://repo.maven.apache.org/maven2): Received fatal alert: protocol_version

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