Open renannprado opened 2 months ago
Thanks for the report and sorry you're running into an issue.
The -Awarns
flag only has an impact when the EISOP CF successfully runs. Here, there is an exception when trying to start, so Maven reports that error.
From the error message, this part TreeUtils.getMethod(org.checkerframework.framework.qual.DefaultQualifier, applyToSubpackages, 0): expected 1 match, found 0: []
leads me to suspect that maybe there is a mismatch in the checker-qual
artifact.
Is there maybe a dependency on checker-qual
that does not use io.github.eisop
as groupId?
If that does not solve the issue, could you provide some way to reproduce the issue? If that solves the issue, we can make our code more robust against this problem and also document this. Thanks!
I'm trying to setup eisop checker framework in a maven multi-module project.
When I add the
-Awarns
flag, I see that maven logs those as warnings, however the build finishes with error (i.e from my POV an exception).You can find all relevant information below:
Maven configuration:
Command:
Maven/Java version:
Output:
Expectation:
I would expect that no error occurs.