gpt4 book ai didi

maven - 如何从同一个项目生成两个 Sonar 报告?

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

我想从同一个项目创建两组 Sonar 报告。一个将涵盖所有内容,另一个将排除一些包裹。

这可能吗,如果可以,该怎么做?

编辑:设置排除项不是问题,但有两个报告是。

最佳答案

在 Maven 中创建新配置文件并为每个配置文件添加带有新分支的调用 Sonar :mvn clean install -Pprofile1 sonar:sonar -Dsonar.branch=BRANCH1

   <properties>
<sonar.branch>
DEFAULT_BRANCH
</sonar.branch>
</properties>

<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>
http://localhost:9000
</sonar.host.url>
</properties>
</profile>
<profile>
<id>profile1</id>
<properties>
<!-- Optional URL to server. Default value is http://localhost:9000 -->
<sonar.host.url>
http://myserver:9000
</sonar.host.url>
</properties>
</profile>
</profiles>

关于maven - 如何从同一个项目生成两个 Sonar 报告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9466102/

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