0

In Eclipse I have created RCP Plugin project.
I also created simple java project.

I've added simple java project to build path of RCP project.

So I am able to import and compile code in RCP, but when I start the RCP application, upon reaching code that uses the added java project I get exception:

java.lang.NoClassDefFoundError

How can I solve this (without creating a jar of java project and adding it as library to rcp project)?

yuris
  • 1,109
  • 4
  • 19
  • 33

1 Answers1

0

Everything in an RCP must be included in one of the plugins.

You need to build a jar file from your simple Java project and put that jar in one of the plugins included in the RCP.

greg-449
  • 109,219
  • 232
  • 102
  • 145