Running IntelliJ code coverage (headless) on Jenkins? Permanently deleted user Created August 12, 2014 14:42 Is it possible to run the built-in code coverage in headless mode (with Maven) on Jenkins? How?
IDEA's coverage is distributed under apache 2.0 so it's possible to use it outside IDEA. You need to setup java agent to your tests and pass there parameters as shown at https://github.com/JetBrains/intellij-community/blob/master/plugins/coverage/src/com/intellij/coverage/IDEACoverageRunner.java.
Thanks,
Anna