본문 바로가기

Study/Java

[troubleshooting] STS (Eclipse) github copilot plugin 설치 오류

반응형

STS에서 github copilot plugin을 설치하려고 하면 다음과 같은 에러가 뜬다.

Unable to read repository at https://azuredownloads-g3ahgwb5b8bkbxhd.b01.azurefd.net/github-copilot/content.xml. PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

SSL 관련 오류인데 Eclipse 사용 시 잘 설치되지만 STS에선 위 에러가 발생했다.

STS의 SpringToolSuite4.ini 파일에 다음 설정을 추가하면 github copilot plugin이 정상적으로 설치되는 것을 확인할 수 있다.

-Djavax.net.ssl.trustStoreType=Windows-ROOT
-Djavax.net.ssl.trustStore=NONE
반응형