I want to create a code coverage report for my Java 8 Maven project. I've got a problem with using Cobertura because it fails to handle Java 8 syntax. Anyone familiar with a workaround? Any other Maven plugin?
相关问题
- Include pom.xml in Jar with gradle
- What order does maven find its dependencies?
- proguard causing EnumMap NPE on dynamically declar
- Xcode Code Coverage and fopen$UNIX2003
- Maven: How to read the Parent POM version
相关文章
- IDEA2020 安装maven 插件后,springboot程序 SpringBootApplic
- pom文件中的插件定义
- pom.xml中的project为何报红
- Hibernate Tutorial - Where to put Mapping File?
- ceil conterpart for Math.floorDiv in Java?
- Cannot use org.jvnet.jax-ws-commons.jaxws-maven-pl
- Do JDK classes have any further specifications bey
- New Maven install: mvn -version java.lang.ClassNot
Use JaCoCo which works on Java 8.
Here is the plugin XML from my pom:
It also has good integration with Continuous Integration Systems like Jenkins