-
Notifications
You must be signed in to change notification settings - Fork 19
ERRORS
vasu34k123 edited this page Sep 28, 2017
·
8 revisions
1)Workbench has not been created yet” error in eclipse plugin programming" Sol)Go to the Run configuration -> Remove all the target platform jars. Click on add required bundles. Check the org.apache.felix.gogo.runtime, org.apache.felix.gogo.shell, org.eclipse.equinox.console, org.eclipse.osgi and your jar file. The last and important step. Go to Setting-> check the checkbox of "Clear the configuration area before launching". Run the OSGi application now. Also make sure ,u had below bundles:javax.servlet org.apache.felix.gogo.runtime org.eclipse.osgi.services
2)org.apache.maven.surefire.util.SurefireReflectionException when i run a maven project in eclipse. Solution) You have to define the maven-surefire-plugin in the pluginManagement section like the following: org.apache.maven.plugins maven-surefire-plugin 2.14.1
3)Java : Unsupported major.minor version 51.0 Solu)This is because the “jar” is compiled with JDK 1.7, but you try to run in a JDK 1.6 environment. To fix it, download JDK 7, and change the default JDK from 1.6 to 1.7