MIM
MIM

Reputation: 519

Not able to validate the plug-in in eclipse

I am trying to consume a jar created by other team (compiled using Java 8 - 64 bit) into a 32 bit application. I have added jar dependency to my project pom and able to import the classes into my project class without any issues.

Issue: When I am trying validate the plug-in in eclipse (Run > Run configuration > Plug-ins tab), seeing Require-Bundle:xyz;bundle-version="0.0.0" error.

Not sure how to fix this. I use Java 7 - 32 bit version for my project.

As jar is compiled in 64 bit version, will not work in 32 application ?

Any thoughts

enter image description here

Upvotes: 0

Views: 119

Answers (1)

greg-449
greg-449

Reputation: 111216

Require-Bundle:xyz means that the plugin requires plugin xyz to run and it can't be found.

Most plugins are not specific to 64 or 32 bits unless they contain native code (which most don't).

Upvotes: 0

Related Questions