在什么maven2存储库中可以找到Google Guice?

Art*_*lov 35 maven-2 repository guice

据我所知,Google Guice 2.0已经不久前出现了.但是我看到中央回购仍然已经过时了1.0版本.请告诉我在哪里可以找到使用Google Guice 2.0的maven2存储库.

Dom*_*ell 76

Guice 3.0现在可以在中央使用.您需要以下内容才能依赖它.

<dependency>
  <groupId>com.google.inject</groupId>
  <artifactId>guice</artifactId>
  <version>3.0</version>
</dependency>
Run Code Online (Sandbox Code Playgroud)

可悲的是,他们没有上传源jar,并且已经使用Java 6编译了类文件.这对你来说可能是个噱头......

  • 请注意,guice 3.0现在也可以在中央使用. (5认同)
  • 看来他们已经添加了消息来源 (2认同)