安装 roller weblogger 时它说找不到 guice
when installing roller weblogger it says couldn't find guice
我正在尝试安装 Roller Weblogger,当使用 maven 构建时,它显示错误:
Failed to execute goal on project roller-planet-business: Could not
resolve dependencies for project
org.apache.roller:roller-planet-business:jar:5.0.1: Could not find
artifact com.google.code.guice:guice:jar:2.0 in central
(http://repo1.maven.org/maven2) -> [Help 1]
如何解决?
Could not find artifact com.google.code.guice:guice:jar:2.0 in
central (http://repo1.maven.org/maven2)
这意味着他无法在 maven 存储库中找到这个 jar:我进行了搜索,我在存储库 maven 中找到了这个:
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>2.0</version>
</dependency>
所以尝试一下,因为这个 jar 已经存在
我正在尝试安装 Roller Weblogger,当使用 maven 构建时,它显示错误:
Failed to execute goal on project roller-planet-business: Could not resolve dependencies for project org.apache.roller:roller-planet-business:jar:5.0.1: Could not find artifact com.google.code.guice:guice:jar:2.0 in central (http://repo1.maven.org/maven2) -> [Help 1]
如何解决?
Could not find artifact com.google.code.guice:guice:jar:2.0 in central (http://repo1.maven.org/maven2)
这意味着他无法在 maven 存储库中找到这个 jar:我进行了搜索,我在存储库 maven 中找到了这个:
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>2.0</version>
</dependency>
所以尝试一下,因为这个 jar 已经存在