gradle 프로젝트를 가져와서  project import 중에 에러가 났다. 

이유를 보니... 


eclipse 에러창으로는 

Could not install Gradle distribution from 'https://services.gradle.org/distributions/gradle-2.14.1-all.zip'.


sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

unable to find valid certification path to requested target

org.gradle.tooling.GradleConnectionException: Could not install Gradle distribution from 'https://services.gradle.org/distributions/gradle-2.14.1-all.zip'.

at org.gradle.tooling.internal.consumer.DistributionFactory$ZippedDistribution.getToolingImplementationClasspath(DistributionFactory.java:129)




intellij 에서는 

Error:Cause: unable to find valid certification path to requested target


문제가 나왔다. 보통이러면.... 해당 주소의 자원이 없거나 https 라서 ssl 관련 오류이다.(방화벽)


실제로 저 url 은 문제가 없다. 회사였다...아... 방화벽


뭐 이런 형태의 오류가 여러 ... 툴이나 설정중에 간간히 있었고... 그럴때보통의 해결책은 https 로 호출되는 url 을 http 로 변경해보는거다.


gradle 설정 (gradle-wrapper.properties) 에 가서 https 라고 된 distributionUrl 프로토콜값을 https --> http 로 변경해서 다시 refresh 해보면 잘 가져온다.


근데 이건 권장하긴 좀 그렇다. 이 외에 설정을 통해 프록시설정을 해두면 https 로라도 문제 없이 가져온다. 구글신에게 물어봐라 

+ Recent posts