I am using IntelliJ IDEA 2016.3 + lombok plugin with the following structure:
Edit: this is the Module Content Root configuration:
Everything works as expected in src/main/java
and src/test/java
, but classes in src/integration-test
and src/end-to-end-test
don't see the generated lombok code (so no autocomplete).
I can still run the tests without any issue though.
Does anyone have any idea what I should do to benefit from auto-complete from these other test source folders?
Thanks!
src/main
andsrc/test
) – Sands