I tried to install the checkstyle-Plugin for my eclipse bundle Eclipse for Java Developers
, by dragging the provided link from http://eclipse-cs.sourceforge.net
YOU NEED TO INSTALL YOUR NETWORK ROOT SSL CERTIFICATE INTO JRE CACERTS. FOR ANY JAVA PKIX SSL EXAPTION YOU MAY FOLLOW THIS GUIDE.
How to get Root Certificate?
NOW YOU HAVE YOUR ROOT CERTIFICATE!
HOW TO INSTALL THIS CERTIFICATE INTO JRE CACERTS?
Before you proceed further do confirm you had located exactly that jre which is giving this error. Many times IDE uses jre which is bundled with it not system jre. In my case I pointed all my IDE to my system Java installation.
keytool -import -noprompt -trustcacerts -alias ALIASNAME -file
/PATH/TO/YOUR/DESKTOP/CertificateName.cer -keystore /PATH/TO/YOUR/JDK/jre/lib/security/cacerts -storepass changeit
NOW YOUR PROBLEM IS RESOLVED! RESTART YOUR IDE AND CHECK RESULTS.