I am using Lombok in Eclipse Neon.3 in a maven project
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.16</version>
<scope>provided</scope>
</dependency>
When doing an Update Maven Project (Alt+F5) everything works nicely, but as soon as I change any file and save (build automatically), it gives errors that the used @Getters do not exist.
The plugin is correctly installed and I can see the line "Lombok v1.16.16 "Dancing Elephant" is installed. https://projectlombok.org/" in Eclipse About Dialog. I can also see the getters and setters in the outline of the class, but still the red error markers appear that the methods do not exist.
I did not find any answer what could be the reason. Can anybody help?