Sachin Giri
Sachin Giri

Reputation: 199

Eclipse RCP : How to use Nebula NatTable feature?

I am following this tutorial to have a NatTable in my e4 RCP applicaton product. My app is feature based not plug in based as shown in Tutorial. I followed and installed these features. When I try to launch the product, I encounter following error

Unresolved requirement: Require-Bundle: org.eclipse.nebula.widgets.nattable.core; bundle-version="1.3.0"

Can anybody share any sample about how to use nebula features successfully?

Upvotes: 0

Views: 850

Answers (2)

Dirk Fauth
Dirk Fauth

Reputation: 4231

As explained in the tutorial you posted, NatTable Core has dependencies to the following plug-ins:

  • org.eclipse.swt
  • org.eclipse.jface
  • org.eclipse.equinox.common
  • org.eclipse.core.commands
  • org.apache.commons.logging

In most cases org.apache.commons.logging is missing in the product configuration and needs to be added in another feature.

Upvotes: 0

Sachin Giri
Sachin Giri

Reputation: 199

I resolved this problem, by

run configurations --> Plug ins --> Add Required Plug-ins

Then it worked.

Upvotes: 0

Related Questions