I developed an RCP plugin (not standalone) and a Java project with library code that the plugin should call.
I configured a Java project in the same workspace. The plugin is dependent on the Java Project.
Code compilation (the plugin does some things with Java Project / library code).
When I run the plugin, I get a ClassNotFoundException:
java.lang.ClassNotFoundException: com.mycode.ArgSet
at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:494)
Does anyone know how to properly configure the plugin?
source
share