I have a GraphBuilder component as a core-extension that works well since a while.

No I like to require another component but that component fails with:

"No implementation for org.apache.maven.plugin.LegacySupport was bound"

So my first guess was that this might be to early... but if I inject it into my GraphBuilder I get an instance without a problem.

My next guess was, that requiring the component was to eager, so I injected the plexus container and did:

LegacySupport lookup1 = container.lookup(LegacySupport.class);
OtherComponent lookup2 = container.lookup(OtherComponent.class);

loopu1 succeeds and return the DefaultLegacySupport,
lookup2 fails with

com.google.inject.ProvisionException: Unable to provision, see the following errors:

1) No implementation for org.apache.maven.plugin.LegacySupport was bound.

Any idea how to find out whats wrong here? A full trace could be found at: https://github.com/eclipse/tycho/runs/7404178853 by exapanding any of the failed tests...

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org

Reply via email to