GradleCause: unable to find valid certification path to requested target
时间: 2023-11-16 15:59:38 浏览: 210
验证证书unable to find valid certification path to requested target
Gradle是一个基于Apache Ant和Apache Maven概念的项目自动化构建工具。而“Cause: unable to find valid certification path to requested target”这个错误通常是由于Gradle无法验证SSL证书而导致的。以下是两种解决方法:
1. 修改项目的build.gradle文件,将之前的“allprojects { repositories { google() jcenter() } }”改为“allprojects { repositories { google() jcenter() maven { url 'http://jcenter.bintray.com' } } }”,这样就可以使用http而不是https来下载依赖。
2. 终极解决方法是在Gradle的配置文件gradle.properties中添加“systemProp.javax.net.ssl.trustStore=C:/Program Files/Java/jdk1.8.0_181/jre/lib/security/cacerts”(根据你的Java安装路径进行修改),这样就可以让Gradle信任所有的SSL证书。
阅读全文