I want to use Lombok in a project to use @Getter and @Setter.
I included using Maven:
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.12.6</version>
<scope>provided</scope>
</dependency>
Import is OK for Netbeans:
import lombok.Getter;
import lombok.Setter;
But auto setters and getters don't work (no autocompletion / "cannot find symbol ...").
Strange thing is that for another project I have it's working fine! But I can't figure the differences.
I tested to:
change the lombok version (even the last): for any version, the import don't work anymore
build the project with Maven: it's OK!
use Eclipse: it's OK! (but I am the only one to decide unfortunately)
=> so I'm sure this is a Netbeans related problem
- enable annotation processing, as I've seen in tutorials=> I don't have such option in my project properties
Any idea ?