Code Coverage Kotlin and Java together using Maven - Jacoco
问题 I am using Maven plugin to generate the code-coverage with Maven Plugin as below: <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> But this does not include any code coverage of the kotlin