java - Eclipse RCP with project dependency -
I have not developed a RCP plug-in (standalone), and a Java project with a plug-in with a library code Need to call
I have configured the Java project in the same workspace. The plug-in has a project dependency on the Java project.
Compile the code (plug-in does some stuff with Java project / library code).
When I run plug-in, I get a ClassNotFound exception:
java.lang.ClassNotFoundException: com.mycode.ArgSet at org.eclipse.osgi.internal .loader.BundleLoader.findClassInternal (Bundle Loader. Java: 494)
Anyone know how to properly configure the plug-in?
Convert your library project to the plug-in project (right-click -> Configure -> Convert to Plug-In Project ) and add it to its dependencies Your Plug-in Project (Manifest Editor, Dependency tab).
Comments
Post a Comment