Skip to main content

The following downloads are provided under the terms and conditions of the
Eclipse Foundation Software User Agreement unless otherwise specified.

Distribution

Update Site

To install a bundle distribution download the zip and point your P2 installer at it.

Maven Artifacts

The following artifacts are also available from the Central Repository:

  • JSR330-based container that supports classpath scanning, auto-binding, and dynamic auto-wiring

      <dependency>
        <groupId>org.eclipse.sisu</groupId>
        <artifactId>org.eclipse.sisu.inject</artifactId>
        <version>0.3.5</version>
      </dependency>
    
  • Maven plugin that generates annotation indexes for Sisu to avoid classpath scanning at runtime

      <plugin>
        <groupId>org.eclipse.sisu</groupId>
        <artifactId>sisu-maven-plugin</artifactId>
        <version>0.3.5</version>
      </plugin>
    
  • Implementation of Plexus container API and injection semantics on top of Sisu and Google-Guice

      <dependency>
        <groupId>org.eclipse.sisu</groupId>
        <artifactId>org.eclipse.sisu.plexus</artifactId>
        <version>0.3.5</version>
      </dependency>
    

Back to the top