JaCoCo: exclude generated methods (using it with Lombok)

前端 未结 3 965
说谎
说谎 2021-02-05 03:08

I am using JaCoCo and it is considering methods generated by Lombok (generated in the bytecode, not trace of them in the source code). How can I configure JaCoCo to ignore them?

3条回答
  •  Happy的楠姐
    2021-02-05 03:32

    Also another way to exclude lombok generated classes since jacoco 0.8.0 and lombok 1.16.14 see: https://www.rainerhahnekamp.com/en/ignoring-lombok-code-in-jacoco/

    Luckily, beginning with version 0.8.0, Jacoco can detect, identify and ignore Lombok-generated code. The only thing you as the developer have to do is to create a file named lombok.config in your directory’s root and set the following flag:

    lombok.addLombokGeneratedAnnotation = true
    

    This adds the annotation lombok.@Generated to the relevant methods, classes and fields. Jacoco is aware of this annotation and will ignore that annotated code.

    Please keep in mind that you require at least version 0.8.0 of Jacoco and v1.16.14 of Lombok.

提交回复
热议问题