maven Project read error
程序员文章站
2022-07-14 17:10:00
...
原因:
由于TLSv1.1 协议不安全, 出于PCI 安全标准的原因, 从2018-06-18起, maven Sonatype *仓库不再支持 TLSv1.1 以及以下的协议版本,原文参见 no longer supports TLSv1.1 and below 官方说明
方案1: 升级 jdk 到1.8
jdk1.8 TLS 1.2 默认是 enable ,不会出现这个异常
方案3: 通过添加 -Dhttps.protocols=TLSv1.2 , 配置 java runtime 参数,来 enable TLS 1.2
如果你是jdk 1.7 (尤其是 1.7.0_131-b31 以前的版本)你可以使用以下command line:
mvn -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 <goals>
或者在相关脚本中加入:
export MAVEN_OPTS=-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2
推荐阅读
-
WAC启动Android模拟器 transfer error: Read-only file system错误解决方法
-
Error:The SDK Build Tools revision (23.0.3) is too low for project ':app'. Minimum required is 25.0.
-
解决 React-Native mac 运行报错 error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build log
-
Intellj IDEA2018 使用 MAVNE版本的坑 Unable to import maven project: See logs for details
-
A盘读取错误“A disk read error occurred Press Ctrl+Alt+del to restart”的原因及
-
解决Maven打包时报错"The packaging for this project did not assign a file to the build artifact"
-
IDEA 2019.2.2配置Maven3.6.2打开Maven项目出现 Unable to import Maven project的问题
-
WAC启动Android模拟器 transfer error: Read-only file system错误解决方法
-
IDEA中Maven Project 的Plugins项目出现红色波浪线解决办法
-
maven Project read error