Using Quarkus 2.14.2.Final, with quarkus-maven-plugin
and quarkus-jacoco
.
pom.xml:
...
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jacoco</artifactId>
<scope>test</scope>
</dependency>
...
In application.yml containing:
quarkus:
jacoco:
excludes:
- "**/dto/*"
- "**/domain/*"
as described here
When I run mvn package
, I get this warning:
- [INFO] --- quarkus-maven-plugin:2.14.2.Final:build (default) @ starling-round-up ---
- [WARNING] [io.quarkus.config] Unrecognized configuration key "quarkus.jacoco.excludes" was provided; it will be ignored; verify that the dependency extension for this configuration is set or that you did not make a typo
I'm not sure why I get this warning and how to get rid of.