I think you are using the wrong dependency artifactId lombok-maven-plugin, it should be:
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
Also you should not need the plugin at the end.