lombok doesn't work just by incorporating it into a project! After incorporating it into your project, you need to install it in your IDE.
pom.xml
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
The version is managed by Spring IO Platform. Update the project after drawing
The lombok jar file is an executable installer. Double click to run!
lombok will automatically search for Eclipse. Check the Eclipse you are using and Install / Update!
Restart Eclipse.
After rebooting, the @Data annotation color should have changed Getters / Setters should have been generated for the object.