编译第一条规则

时间:2016-07-07 09:26:46

标签: eclipse maven sonarqube

我下载了项目1_ MyFirst Custom Check。我已将它作为Maven项目导入eclipse。

使用maven install我收到以下错误:

[INFO] Scanning for projects...
[INFO] Downloading: https://repo.maven.apache.org/maven2/org/sonarsource/sonar-packaging-maven-plugin/sonar-packaging-maven-plugin/1.15/sonar-packaging-maven-plugin-1.15.pom
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Unresolveable build extension: Plugin org.sonarsource.sonar-packaging-maven-plugin:sonar-packaging-maven-plugin:1.15 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.sonarsource.sonar-packaging-maven-plugin:sonar-packaging-maven-plugin:jar:1.15 @
[ERROR] Unknown packaging: sonar-plugin @ line 9, column 14
@ 
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR] 
[ERROR] The project org.sonar.samples:java-custom-rules-template:1.0-SNAPSHOT (C:\Users\rmolano\Downloads\sonar-examples-master\plugins\tutorial\java-custom-rules-template\completed\pom.xml) has 2 errors
[ERROR] Unresolveable build extension: Plugin org.sonarsource.sonar-packaging-maven-plugin:sonar-packaging-maven-plugin:1.15 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.sonarsource.sonar-packaging-maven-plugin:sonar-packaging-maven-plugin:jar:1.15: Could not transfer artifact org.sonarsource.sonar-packaging-maven-plugin:sonar-packaging-maven-plugin:pom:1.15 from/to central (https://repo.maven.apache.org/maven2): repo.maven.apache.org: Unknown host repo.maven.apache.org -> [Help 2]
[ERROR] Unknown packaging: sonar-plugin @ line 9, column 14
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/PluginManagerException

无法放入maven repo settings.xml文件夹中l .m2的真相,我测试了以下内容:

<settings>
  <profiles>
    <profile>
      <id>sonar</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>

      <properties>
        <sonar.host.url>
          http://localhost:9000
        </sonar.host.url>
      </properties>
    </profile>
  </profiles>

  <activeProfiles>
    <activeProfile>sonar</activeProfile>
  </activeProfiles>
</settings>

Sonarquebe安装与嵌入式数据库一起使用。 我怎么能编译?对我的配置设置有什么正确的依赖关系?

0 个答案:

没有答案