3 Answers 3 Sorted by:
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending. 18
I was able to get it working by manually updating the ASM dependency used by the cobetura-maven-plugin. Here is a link with more details: http://www.befreeman.com/2014/09/getting-cobertura-code-coverage-with.html
It is an open issue to make it understand new classformat , https://github.com/mojohaus/cobertura-maven-plugin/issues/21
This also happens if you have a cobertura plugin in your
and
sections. Remove one and the problem will go away.
Thanks for contributing an answer to Stack Overflow!
To learn more, see our tips on writing great answers. Draft saved Draft discarded
FAQ
Does cobertura support java8?
How do I use cobertura maven plugin?
Do nothing, just type the following Maven command to download and run the maven-cobertura-plugin automatically. Maven will generate the Cobertura code coverage report at ${project}/target/site/cobertura/index. html . Please refer to this Cobertura Maven Plugin for more examples.
How do I install cobertura?
- Install the cobertura plugin (via Manage Jenkins -> Manage Plugins)
- Configure your project’s build script to generate cobertura XML reports (See below for examples with Ant and Maven2)
- Enable the “Publish Cobertura Coverage Report” publisher.
- Specify the directory where the coverage.
How do I add cobertura plugin to Eclipse?