gpt4 book ai didi

java - SonarQube 不使用 IntelliJ 和 Maven 分析主要的 java 代码

转载 作者:行者123 更新时间:2023-11-29 04:15:26 26 4
gpt4 key购买 nike

我将 IntelliJ 与 Maven 一起用于我的项目,我必须使用 SonarQube 对其进行分析,但是当我使用 webApp 提供的命令扫描我的项目时,它只分析 pom.xml 文件而忽略了项目的其余部分。

Analysis results

clean install sonar:sonar -Dsonar.host.url=http://localhost:9000 -Dsonar.login="the corresponding key here"

我的 pom.xml(项目标签内的内容):

<groupId>cl.itau.simulacionCredito</groupId>
<artifactId>SimulacionCreditoIntelliJ</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.beust/jcommander -->
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.72</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<excludes>
<exclude>**/HomeTest.java</exclude>
<exclude>**/PropuestaTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.5.0.1254</version>
</plugin>
</plugins>
</build>

<distributionManagement>
<repository>
<id>SimulacionCredito</id>
<name>SimulacionCredito</name>
<url>file:C:\Users\Pc\IdeaProjects</url>
</repository>
</distributionManagement>

我还尝试在配置标签中使用它:

<sonar.sources>src/main/java</sonar.sources> 

这发生了:

Second analysis

我在 Maven 的 conf 中的 settings.xml:

<pluginGroups>
<pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
</pluginGroups>

<proxies>
</proxies>

<servers>
</servers>

<mirrors>
</mirrors>

<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>
http://localhost:9000
</sonar.host.url>
</properties>
</profile>
</profiles>

由于在尝试修复此问题时出现不同的错误,我一直在向 POM 添加内容。

我安装了最新版本的 SonarQube。

最佳答案

Sonarqube 通过分析 jacoco 输出来工作。我在你的 pom.xml 中没有看到 jacoco 的任何配置。 https://www.petrikainulainen.net/programming/maven/creating-code-coverage-reports-for-unit-and-integration-tests-with-the-jacoco-maven-plugin/是一个关于如何设置它的很好的教程。

您还必须告诉 sonarqube 您的 jacoco.exec 文件所在的位置。 https://docs.sonarqube.org/display/PLUG/Code+Coverage+by+Unit+Tests+for+Java+Project

关于java - SonarQube 不使用 IntelliJ 和 Maven 分析主要的 java 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52685593/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com