theme plugin para oxygen mejores devstyle dark black best java eclipse plugins

java - para - plugin eclipse spring



La instalaciĆ³n de Checkstyle-Plugin(7.2.0) para Eclipse Neon falla (1)

Intenté instalar el checkstyle-Plugin para mi Eclipse Eclipse for Java Developers , arrastrando el enlace provisto desde http://eclipse-cs.sourceforge.net/#!/ a mi ventana de Eclipse.

Lamentablemente, esto produce el siguiente error:

An error occurred while collecting items to be installed session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). No repository found containing: osgi.bundle,net.sf.eclipsecs.branding,7.2.0.201611072237 No repository found containing: osgi.bundle,net.sf.eclipsecs.checkstyle,7.2.0.201611072237 No repository found containing: osgi.bundle,net.sf.eclipsecs.core,7.2.0.201611082201 No repository found containing: osgi.bundle,net.sf.eclipsecs.doc,7.2.0.201611082205 No repository found containing: org.eclipse.update.feature,net.sf.eclipsecs,7.2.0.201611082205 No repository found containing: osgi.bundle,net.sf.eclipsecs.ui,7.2.0.201611072237

Alguna idea de como puedo arreglar esto?

Instalarlo usando Marketplace también no funcionó. Falló con:

An error occurred while collecting items to be installed session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=). Unable to read repository at https://sourceforge.net/projects/eclipse-cs/files/updatesite/7.2.0/plugins/net.sf.eclipsecs.doc_7.2.0.201611082205.jar. sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target Unable to read repository at https://sourceforge.net/projects/eclipse-cs/files/updatesite/7.2.0/features/net.sf.eclipsecs_7.2.0.201611082205.jar. sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target


NECESITA INSTALAR SU CERTIFICADO ROOT SSL DE RED EN JRE CACERTS. PARA CUALQUIER EXCEPCIÓN SSL DE JAVA PKIX, PUEDE SEGUIR ESTA GUÍA.

¿Cómo obtener el certificado de raíz?

  1. Abre Google Chrome y navega a https://sourceforge.net/
  2. Haga clic en el icono justo al lado de su url. ver la siguiente imagen.

  1. Haga clic en Ver certificado. Puede ver la jerarquía y seleccionar el máximo certificado en la jerarquía
  2. Confirme que el certificado tenga la palabra ROOT en su nombre.
  3. Ahora justo debajo de esa parte de la jerarquía, puede ver una imagen rectangular del certificado. Simplemente arrastre esa imagen y colóquela en su escritorio.

¡AHORA TIENES TU CERTIFICADO DE RAÍZ!

¿CÓMO INSTALAR ESTE CERTIFICADO EN JRE CACERTS?

Antes de continuar, confirme que ha localizado exactamente el jre que está dando este error. Muchas veces IDE usa jre que está incluido con él, no el sistema jre. En mi caso, apunté todo mi IDE a la instalación de mi sistema Java.

  1. use keytool.exe dentro de su carpeta jre bin.
  2. ejecute el comando siguiente para colocar su certificado dentro del archivo cacerts

keytool -import -noprompt -trustcacerts -alias ALIASNAME -file
/PATH/TO/YOUR/DESKTOP/CertificateName.cer -keystore / PATH / TO / YOUR / JDK / jre / lib / security / cacerts -storepass changeit

¡AHORA SE RESUELVE SU PROBLEMA! REINICIE SU IDE Y REVISE LOS RESULTADOS.