Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-dev] m2e connector written in Indigo not picked up by Juno

There are two possible explanations

- eclipse does not "see" your plugin in dropins folder for whatever reason
- eclipse does "see" your plugin, but not all plugin dependencies can be
satisfied in Juno

Check with OSGi console if your bundle is present and can be activated.

Also, you may want to use Eclipse Intsall New Software GUI to properly
install your bundle. This requires additional effort to package p2
repository, but provides dependency validation and can even install
missing dependencies during install time.


--
Regards,
Igor

On 12-08-06 2:25 AM, ds@xxxxxxxxxx wrote:
Hi,

I have written an m2e connector in Indigo. When I drop it into the
dropins folder of an Indigo installation, everything works. However,
Juno does not pick up the plugin. It does not even show up in the plugin
registry view.

When I open the project in Juno, I can run the connector as Eclipse
application just fine.

This is certainly a general Eclipse question, OTOH since I used the
description from the m2e connector development page to create the
connector, someone on this list might have seen a similar issue with
his own connector. I have seen other people having similar problems with
non-m2e plugins, but their solution was to re-create their plugin
project in Juno from scratch :-(

My MANIFEST.MF looks like this:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: m2e connector for fornax oaw
Bundle-Version: 0.0.2.qualifier
Bundle-SymbolicName: org.fornax.oaw.m2e;singleton:=true
Bundle-Vendor: Escalon System-Entwicklung, Dietrich Schulten
Bundle-RequiredExecutionEnvironment: J2SE-1.5,
  JavaSE-1.6
Require-Bundle: org.eclipse.core.runtime,
  org.eclipse.m2e.jdt;bundle-version="[1.0.0,1.2.0)",
  org.eclipse.m2e.core;bundle-version="[1.0.0,1.2.0)",
  org.eclipse.m2e.maven.runtime;bundle-version="[1.0.0,1.2.0)",
  org.slf4j.api;bundle-version="1.6.1",
  org.eclipse.core.resources
Export-Package: org.fornax.oaw.m2e

Any idea what might be wrong here?

Best regards,

Dietrich Schulten

--
Escalon System-Entwicklung
Inh. Dietrich Schulten
Bubenhalde 10
74199 Donnbronn



_______________________________________________
m2e-dev mailing list
m2e-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/m2e-dev



Back to the top