I'm trying to use Lombok in a Maven project with Java 8, but Lombok doesn't generate any Getters and Setters when I apply the @Data Annotation. I tried to use Maven Compiler Plugin Version 3.5 as mentioned here, but it didn't help. Does anybody have I clue, which versions I need to use?
pom.xml
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.14</version>
<scope>provided</scope>
</dependency>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>