機能している jacoco maven プラグインがあり、lombok によって生成されたコードを除外したいと考えています。オプション LOMBOK.DATA を見つけましたが、どうしたらよいかわかりません。
除外に入れても何の影響もありません。
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<configuration>
<exclude>
<exclude>LOMBOK.DATA</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<phase>prepare-package</phase>
</execution>
</executions>
</plugin>