I'm using Maven And Sonar with eclipse. I already have my maven projects on LocalHost 9000. But when i go to eclipse configure>associate with sonar says that my groupId is empty. I think thats not supposed to happen. Anybody know how to fix this? Thanks

link|improve this question

0% accept rate
feedback

3 Answers

Few things to check:-

  1. Check the groupId is actually there in your pom.xml.
  2. Check that the artifactId and the eclipse project name are the same.
  3. Check that you typed groupId and artifactId in the associate with sonar dialog window. Then click find on server.
  4. Also make sure that the sonar plugin is set up on your eclipse (by going to Windows->Preferences->Sonar).

HTH.

link|improve this answer
Have the same issue but with the sonar ANT task, there doesn't seem be to be a way to define the groupId and artifactid via the properties. – emeraldjava Oct 12 '11 at 12:57
There is no properties named groupid or artifactid in the ant script. You need to set the key of the project to groupid:artifactid. see my answer above. – Mingjiang Shi Mar 20 at 12:47
feedback

It got fixed by following the instructions mentioned here: http://docs.codehaus.org/display/SONAR/Analyse+with+Ant+Task

link|improve this answer
was eduardo your account? – oers Oct 17 '11 at 13:25
No. Its not my account. – leenasn Oct 17 '11 at 17:08
feedback

I encountered the same issue, the tricks here are:

  1. The key of the sonar project must follow the naming convention, [groupid]:[artifactid]. They are separated by a ":". For example, if the key com.example:sample, then the groupid is com.example, artifactid is sample.
  2. The eclipse project name must be same as the artifactid (case-sensitive).

So, you need to 1) change the sonar project key to the naming convention above, 2) change the eclipse project name to the artifactid. Then eclipse will be able to automatically link your eclipse project to sonar project when your click the button "Find on server".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.