I tried looking for Jacoco offline instrumentation gradle script snippets but couldn't find one. Is it possible to do Jacoco offline instrumentation through gradle scripts ? If yes...An example of it would be greats. Thanks.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Here is an example of Gradle script that performs offline instrumentation using JaCoCo Ant Task:
The gradle jacoco plugin doesn't support offline instrumentation, it always does online instrumentation via the java agent.
If the ant jacoco plugin supports offline instrumentation that's likely the best way to get offline instrumentation working in gradle