-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to treat reflection warnings as errors #381
Comments
I found a workaround: https://github.com/TWiStErRob/repros/tree/master/parceler/fail-on-warning, but it's quite elaborate. |
I like this idea. We could just change this decorator out for one that validates to an error based on an annotation processor configuration in this location: https://github.com/johncarl81/parceler/blob/master/parceler/src/main/java/org/parceler/internal/ParcelerInvocationBuilderStrategy.java#L40 |
Or use a validator that validates a warning to an error. |
Something like |
Hmm, that actually gave me an idea for another workaround: kapt {
javacOptions {
option("-Werror")
}
} since these warnings are coming from Javac running the annotation processor on kapt stubs. Finer control is still appreciated though. 🤓 |
Given the following class:
I get this build output:
I'm looking for a way to make this warning an error, similar to how lint and javac and kotlinc allows me to.
The text was updated successfully, but these errors were encountered: