0

尝试使用声纳构建我们的 java 应用程序进行分析。我们在防火墙后面,因此无法访问 maven repo1。我们确实有一个用于第三方工件的内部公司 Artifactory 和一个用于我们本地产品的项目 Artifactory。我是负责我们构建服务器的 SCM 人,而不是开发人员。也就是说,带有 junit 测试的应用程序构建良好。我们有两个目标干净安装。声纳服务器是 3.5.1,端口设置为 8080 而不是 9000 这是在我们的 pom.xml 文件中。

    <profile>
        <id>sonarJsEnabled</id>
        <properties>
            <srcDir>src/main/static</srcDir>
            <sonar.exclusions>libs/**/*,DSTCore/**/*,test/**/*</sonar.exclusions>
            <maven.test.skip>true</maven.test.skip>
            <sonar.language>js</sonar.language>
            <sonar.branch>js</sonar.branch>

        </properties>
    </profile>

    <profile>
        <id>sonarHtmlEnabled</id>
        <properties>
            <srcDir>src/main/static</srcDir>
            <sonar.language>web</sonar.language>
            <sonar.branch>web</sonar.branch>                                
            <sonar.web.fileExtensions>html,xhtml,jspf,jsp</sonar.web.fileExtensions>
            <maven.test.skip>true</maven.test.skip>
        </properties>
    </profile>
<profile>
   <id>sonar</id>
   <activation>
      <activeByDefault>true</activeByDefault>
   </activation>
   <properties>
      <!-- SERVER ON A REMOTE HOST -->
      <sonar.host.url>http://10.226.xx.xx:8080</sonar.host.url>
   </properties>
</profile>

和这个:

           <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>sonar-maven-plugin</artifactId>
                <version>1.0-beta-2</version>
            </plugin>

我们添加 sonar:sonar 当我们手动构建或使用 Bamboo 构建时,我们会得到这个输出。

C:\sonartest>mvn 声纳:声纳 [INFO] Scanning for projects... [INFO] Searching repository for plugin with prefix: 'sonar'. [INFO] org.apache.maven.plugins: checking for updates from EnterpriseArchitectureRepo [INFO] org.codehaus.mojo: checking for updates from EnterpriseArchitectureRepo [INFO] artifact org.codehaus.mojo:sonar-maven-plugin: checking for updates from EnterpriseArchitectureRepo [INFO] Ignoring available plugin update: 2.0 as it requires Maven version 3.0 [INFO] Ignoring available plugin update: 2.0-beta-2 as it requires Maven version 3.0 [INFO] Ignoring available plugin update: 2.0-beta-1 as it requires Maven version 3.0 [INFO] ------------------------------------------------------------------------ [INFO] Building fundTrader [INFO] task-segment: [sonar:sonar] (aggregator-style) [INFO] ------------------------------------------------------------------------ [INFO] [sonar:sonar {execution: default-cli}] [INFO] Sonar host: http://10.226.xx.xx:8080 [INFO] Sonar version: 3.5.1 [INFO] Execute: org.codehaus.sonar:sonar-maven-plugin:3.5.1:sonar Downloading: http://repository.corp.net:8080/artifactory/libs-release/org/codehaus/sonar/sonar/3.5.1/sonar-3.5.1.pom [INFO] Unable to find resource 'org.codehaus.sonar:sonar:pom:3.5.1' in repository EnterpriseArchitectureRepo (http://repository.corp.net:8080/artifactory/libs-release) ... [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Can not execute Sonar

Embedded error: Unable to build project for plugin 'org.codehaus.sonar:sonar-maven-plugin': Cannot find parent: org.codehaus.sonar:sonar for project: null:sonar-maven-plugin:maven-plugin:null for project null:sonar-maven-plugin:maven-plugin:null Unable to download the artifact from any repository

任何帮助将不胜感激。

4

1 回答 1

2

我看起来好像sonar-3.5.1.pom没有找到。考虑将 Bintray 的jcenter远程存储库添加到您的 Artifactory(它比 Maven Center 拥有更多的工件)。最简单的方法是从 repo.jfrog.org 上的 Artifactory 实例导入 jcenter 配置。只需单击 Import -> Load 并jcenter从已加载的存储库配置列表中进行选择。

于 2013-07-30T08:51:06.883 回答