jenkins构建sonar扫描时报错,跪求大神帮助,非常无力55555
发布网友
发布时间:2022-05-30 02:22
我来回答
共1个回答
热心网友
时间:2023-09-17 18:21
只需要把sonar信息配置在maven conf settings.xml里面的 <profile>里,如
<profile>
<id>sonar</id>
<properties>
<sonar.host.url> </sonar.host.url>
<sonar.jdbc.url>jdbc:h2:tcp://ip:9092/sonar</sonar.jdbc.url>
<sonar.jdbc.driver>org.h2.Driver</sonar.jdbc.driver>
<sonar.jdbc.username>sonar</sonar.jdbc.username>
<sonar.jdbc.password>sonar</sonar.jdbc.password>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>sonar</activeProfile>
</activeProfiles>
,并默认激活。再在
jenkins里面配置命令clean test sonar:sonar -Dsonar.forceAnalysis=true clean追问jenkins里面配置命令clean test sonar:sonar -Dsonar.forceAnalysis=true clean
这个在哪配置?