gpt4 book ai didi

sonarqube - 在 Jenkins 中设置 SONAR 构建后操作(Maven 作业)

转载 作者:行者123 更新时间:2023-12-02 00:49:06 28 4
gpt4 key购买 nike

Sonar 3.5.1,Jekins Sonar 插件 2.1。插件安装在 Jenkins 中。我添加了带有 Sonar 和默认设置的构建后操作。我在构建时遇到此错误。

我不知道该怎么办。我必须修改 pom.xml 吗?

[ERROR] No plugin found for prefix 'sonar' in the current project and in the plugin
groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories
[local (/export/home/tpbuild/.m2/repository), central (http://repo.maven.apache.org
/maven2)] -> [Help 1]
org.apache.maven.plugin.prefix.NoPluginFoundForPrefixException: No plugin found for
prefix 'sonar' in the current project and in the plugin groups [org.apache.maven.plugins,
org.codehaus.mojo] available from the repositories [local (/export/home/tpbuild
/.m2/repository), central (http://repo.maven.apache.org/maven2)]

最佳答案

将以下行添加到 settings.xml 配置文件应该可以解决此问题:

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>

关于sonarqube - 在 Jenkins 中设置 SONAR 构建后操作(Maven 作业),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18013115/

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