Prem Kumar Subudhi
Prem Kumar Subudhi

Reputation: 21

sonar 5.0 maven 3 with jdk 1.8

I am trying sonar 5.0 with jdk 1.8 .

With Sonar 5.0 I am getting following error for two jenkin version

Jenkins ver. 1.583

[ERROR] Failed to execute goal org.codehaus.mojo:sonar-maven-plugin:2.5:sonar (default-cli) on project com.ciphercloud.root.core.grp: Unable to register extension com.villagechief.sonar.salesforce.sftest.SFTestSensor: Lorg/apache/commons/configuration/Configuration;: org.apache.commons.configuration.Configuration -> [Help 1]

Jenkins ver. 1.580.3 [ERROR] Plugin org.codehaus.mojo:sonar-maven-plugin:2.9 or one of its dependencies could not be resolved: Failure to find org.codehaus.mojo:sonar-maven-plugin:jar:2.9 in http://172.16.16.86:9081/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced -> [Help 1]

Is this issue also you are resolving ? If we have known work around to resolve this please suggest.

Thanks in adv for any suggestion in this regard.

Thanks and Regards, Prem

Upvotes: 2

Views: 2699

Answers (1)

Harald Wellmann
Harald Wellmann

Reputation: 12885

Try setting the plugin version explicitly to match your sonar server version by including the following in your <pluginManagement> section:

<dependency>
    <groupId>org.codehaus.sonar</groupId>
    <artifactId>sonar-maven-plugin</artifactId>
    <version>5.0</version>
</dependency>

Upvotes: 2

Related Questions