0

我按照本指南在 Ubuntu 12.04 上安装了声纳。我可以在终端中启动声纳,但是当我尝试将它用作 maven 插件时mvn sonar:sonar出现错误:

[ERROR] Failed to execute goal org.codehaus.mojo:sonar-maven-plugin:2.0:sonar (default-cli) on project portalE: Sonar server can not be reached at 0.0.0.0:9000. Please check the parameter 'sonar.host.url'. -> [Help 1]

我可以使用浏览器轻松打开 0.0.0.0:9000 和 localhost:9000 。在 pom.xml 我只添加了:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>sonar-maven-plugin</artifactId>
    <version>2.1</version>
</plugin>

我在项目的根目录中有文件(sonar-project.properties):

# required metadata
sonar.projectKey=project
sonar.projectName=Project_name
sonar.projectVersion=2.0

# optional description
sonar.projectDescription=Project description 
# path to source directories (required)
sonar.sources=src/

# The value of the property must be the key of the language.
sonar.language=java

# Encoding of the source code
sonar.sourceEncoding=UTF-8

我以前从未使用过声纳,所以请告诉我这里是否还有更多配置要做。我阅读了文档,但看不到我在哪里犯了错误。任何帮助表示赞赏。

4

1 回答 1

0

好的,我犯了非常愚蠢的错误......在 maven settings.xml 文件中,我将 URL 设置为 0.0.0.0:9000,所以我忘记了 http:// 抱歉,这个问题实际上很容易回答。

于 2013-07-30T14:24:30.863 回答