Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.23 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.23 KB

guice-betas

Unofficial BETA builds of Google-Guice with experimental features.

These builds are temporarily deployed for community testing purposes and shouldn't be used in production.

Issues with these builds should be reported here rather than the upstream Guice repository.

4.2.4-20200419-NEWAOP-BETA

This BETA replaces CGLIB with a brand-new AOP implementation that should work better with the latest JDKs

    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
      <version>4.2.4-20200419-NEWAOP-BETA</version>
    </dependency>

guice-4.2.4-20200419-NEWAOP-BETA.jar

Maven repository

To consume these betas add the following repository definition to the <repositories> section of your pom.xml

    <repository>
      <id>guice-betas</id>
      <url>https://mcculls.github.io/guice-betas/maven2/</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>