In what maven2 repository can Google Guice be found?

Artyom Sokolov picture Artyom Sokolov · May 21, 2009 · Viewed 21.1k times · Source

As far as I understand Google Guice 2.0 is out not so long ago. But I see that central repo still has outdated 1.0 version. Please, tell where can I find maven2 repository with Google Guice 2.0.

Answer

Dominic Mitchell picture Dominic Mitchell · Sep 1, 2009

Guice 3.0 is now available on central. You'll need the following to depend on it.

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

Sadly, they haven't uploaded source jars, and the class files have been compiled with Java 6. This may be a show-stopper for you…