org.eclipse.sisu:org.eclipse.sisu.plexus 0.9.0.M4 API
Overview
Implements Plexus semantics on top of Sisu and Google-Guice.Legacy applications can use the Plexus container API as usual:
ContainerConfiguration config = new DefaultContainerConfiguration(); // ... configure ... PlexusContainer container = null; try { container = new DefaultPlexusContainer( config ); // ... execute/wait ... } finally { if ( container != null ) { container.dispose(); } }
Sisu applications that want to re-use Plexus components can use the PlexusSpaceModule
wrapper:
binder.install( new PlexusSpaceModule( space ) );
Plexus API
Package
Description
Sisu-Plexus backend implementation.