addSbtPlugin("play" % "sbt-plugin" % "2.1.1")
addSbtPlugin("de.johoop" % "jacoco4sbt" % "1.2.4")lazy val s = Defaults.defaultSettings ++ Seq(jacoco.settings:_*)
val main = play.Project(appName, appVersion, appDependencies, settings = s).settings(
// Add your own project settings here
parallelExecution in jacoco.Config := false,
jacoco.reportFormats in jacoco.Config := Seq(XMLReport("utf-8"), HTMLReport("utf-8")),
jacoco.excludes in jacoco.Config := Seq("*anon*", "views*", "*Routes*", "controllers*routes*", "controllers*Reverse*", "controllers*javascript*", "controller*ref*")
)Thanks for the link, I forgot to say I do already get the HTML report OK.
It's as if there is something missing in the generated jacoco.exec.
Any other ideas before I start debugging the sonar sources?
Peter
--
You received this message because you are subscribed to the Google Groups "play-framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email to play-framewor...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--