在哪个maven2库可以findGoogle Guice?

据我了解, Google Guice 2.0在不久之前就已经出现了。 但是我看到中央回购还是过时了1.0版本。 请告诉我在哪里可以find与谷歌Guice 2.0的maven2存储库。

Guice 3.0现已上市 。 您将需要以下依赖它。

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

可悲的是,他们没有上传源代码的jar文件,而且这些类文件已经被Java 6编译 。 这可能是一个展示你的塞子

Guice 2.0现在可以在官方的google-maven-repository中find。 要使用它,请将以下内容添加到<dependencies>标记内的pom.xml中(如果没有,您需要添加一个):

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

您不需要,但是您可以按照这里的说明在 pom.xml中添加对官方google-maven-repository的引用。

因为我在中央没有看到Guice 2.0,所以我想我会在其中find一个稳定的回购站:

Grails的OpenID插件引用http://guice-maven.googlecode.com/svn/trunk/,但没有它(目前)。;

他们会尽快将其发布到中央存储库,如他们在此承诺的那样: http : //groups.google.com/group/google-guice/browse_thread/thread/6707a887ed5ef2e3

没关系。 Guice-maven意在提供这个。

直到它到达中央存储库,我从这里得到它: http : //guice-maven.googlecode.com/svn/trunk