-
-
Notifications
You must be signed in to change notification settings - Fork 47
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
Works with Lombok? #35
Comments
Given the popularity of Lombok and maven, including a working example of using jabel with maven would be awesome. I'll keep looking into it. My first clue is this: https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#annotationProcessors
Which implies to me, that because Jabel seems to require listing it as an explicit |
Boom - gotta love stack overflow: https://stackoverflow.com/questions/11685498/what-is-the-default-annotation-processors-discovery-process |
Ok, tracked down the Lombok annotation processor classes;
As the automatic detection method is turned off when any processor is configured explicitly, I add this to my list: Now m configuration as this the compile passes:
|
FYI this does seem to make IDEA complain with
So added to the override in the IDEA profile by setting the
|
It works! :-) See more information here |
Does this work also when you're using Lombok as an active compiler plugin? I have Lombok included as a compiler annotation processor, but I add Jabel and it's annotationProcessors class directive, and the Lombok enhancements don't seem to be active anymore.
The text was updated successfully, but these errors were encountered: