這種問題提示的是本地的SSL證書檢查過期, 一般重下載一個JDK. 解決辦法: 1.使用手機wifi 熱點進行下載, 有的電信網路或者聯通網路屏蔽了maven 網站了 2.更新maven的鏡像: 在maven 安裝目錄裡面的conf 文件夾, setting.xml 文件裡面更新鏡像: //http ...
這種問題提示的是本地的SSL證書檢查過期, 一般重下載一個JDK.
解決辦法:
1.使用手機wifi 熱點進行下載, 有的電信網路或者聯通網路屏蔽了maven 網站了
2.更新maven的鏡像: 在maven 安裝目錄裡面的conf 文件夾, setting.xml 文件裡面更新鏡像:
//https 的鏡像
<mirror> <id>alimaven</id> <name>aliyun maven</name> <mirrorOf>central</mirrorOf> <!-- 阿裡雲公共代理庫使用指南:https://help.aliyun.com/document_detail/102512.html?spm=a2c40.aliyun_maven_repo.0.0.36183054oSYFKS --> <!-- <url>https://maven.aliyun.com/nexus/content/groups/public</url> --> <url>https://maven.aliyun.com/repository/public</url> </mirror>
//http 的鏡像 <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror>