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.
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
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>