Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Problem with jacoco plug-in

It looks like your issue is caused by the fact that you want jacoco to run its "report" goal on a feature.
Since you're using Sonar, there is not big value in generating reports from Maven (Sonar plugin will do that for you), so I'll advise you simply remove the execution of the report goal from your pom.xml and let Sonar handle it.

Also, I usually get Sonar to analyze a Tycho project with a couple of successive Maven executions:
$ mvn clean verify #Normal build
$ mvn sonar:sonar ... #Run Sonar analysis on sources and build output (= classes & jacoco.exec )
If you're using Hudson in Eclipse.org infrastructure, the second execution is just a matter of enabling the Hudson Sonar plugin. http://wiki.eclipse.org/Sonar

HTH
--
Mickael Istria
Eclipse developer at JBoss, by Red Hat
My blog - My Tweets

Back to the top