could not find framework in eclipse RCP application

后端 未结 1 1088
灰色年华
灰色年华 2020-12-20 04:09

I have developed one eclipse RCP application which I am calling from my own Java program.
When I run my own Java program from command prompt (windows) it is perfectly wo

相关标签:
1条回答
  • 2020-12-20 05:04

    As mentioned in this thread, you:

    • do not only have to add the platform plugins you wish to export to the list of dependent plugins of your feature,

    Dependencies

    • but you also have to the list of included plugins

    Required plugins

    (See this project for instance)

    Make sure you "Validate Plug-ins" before you launch your RCP (see this thread).
    With the Launch Configuration Dialog, in the "Plug-ins" Tab, there is a "Validate Plug-ins" button that you can click to verify that all the dependency of the "selected" plug-ins are satisfied.
    If there are some errors, you can click the "Add Required Plug-ins" to correct the error.

    0 讨论(0)
提交回复
热议问题