Skip to content

Guice40

Colin Decker edited this page Apr 28, 2015 · 19 revisions

Guice 4.0

Released April 28, 2015

Maven

Guice:

<dependency>
  <groupId>com.google.inject</groupId>
  <artifactId>guice</artifactId>
  <version>4.0</version>
</dependency>

Guice (No AOP):

<dependency>
  <groupId>com.google.inject</groupId>
  <artifactId>guice</artifactId>
  <version>4.0</version>
  <classifier>no_aop</classifier>
</dependency>

Extensions:

<dependency>
  <groupId>com.google.inject.extensions</groupId>
  <artifactId>guice-${extension}</artifactId>
  <version>4.0</version>
</dependency>

Downloads

Docs

New Features

  • Better Java8 runtime compatibility
  • List of changes coming soon.

Migrating from Guice 3.0

See the JDiff change report for complete details.

Clone this wiki locally