tools_gradle_intellij_plugin_faq.md: FAQ entry: Exception javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated

This commit is contained in:
Jakub Chrzanowski 2023-01-19 08:05:17 +01:00
parent 4d097515c8
commit 7c1059b3c4
No known key found for this signature in database
GPG Key ID: C39095BFD769862E

View File

@ -246,4 +246,16 @@ test {
</tab>
</tabs>
### Exception javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
When using Java `11.0.2` for building plugins, resolving dependencies (or making any other network requests) in Gradle IntelliJ Plugin fails due to the [JDK-8220723](https://bugs.openjdk.org/browse/JDK-8220723) issue with the following exception:
```
Exception in thread "main" javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
```
To fix that issue, upgrade the Java version to the latest patch available of the major version of your choice.
<include from="snippets.md" element-id="missingContent"/>