Hi! This may be an obvious question - but I don't see it :-(.
We are about to start using Lombok on our projects, and so I've been setting up workspace that uses it.
I tried putting the Maven dependency on Lombok in the <dependencies> section on the parent pom, then inherit it into child projects - but when I do that, Eclipse doesn't seem to realize it has to run Lombok within each child project.
OTOH, when I put the Maven dependency in each child project, then Eclipse does the right thing.
Is there a way to put that Maven dependency on the parent pom, so that I don't have to configure it explicitly in all of the children?
Thank you!
Moises