4

I'm using Intellij IDEA 2016.1 working in an imported Maven project. Intellij complains only about sonar-maven-plugin.

I have already tried to reimport in maven option but Intellij stills mad with this plugin.

The error message in Intellij is: Unresolved plugin org.codehaus.mojo:sonar-maven-plugin:3.0.1

enter image description here

Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T09:41:47-07:00)   
Maven home: /usr/local/apache-maven-3.3.9   
Java version: 1.8.0_92, vendor: Oracle Corporation   
Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk/Contents/Home/jre
Default locale: en_US, platform encoding: UTF-8     
OS name: "mac os x", version: "10.11.5", arch: "x86_64", family: "mac"
4

1 回答 1

5

那是因为带有 Maven 坐标的工件org.codehaus.mojo:sonar-maven-plugin:3.0.1是 Maven Central 中的pom文件而不是jar,因此无法正确解析。

使用这些坐标的插件的最新官方版本是2.7.1

然后sonar-maven-plugin坐标已经改变,移动到一个新的groupId: org.sonarsource.scanner.maven,它确实提供了3.0.1版本。

因此,您应该将pom.xml文件使用的现有坐标更改为:

<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.0.1</version>

这也记录在官方Sonarqube Maven 文档中。

于 2016-06-15T21:15:27.127 回答