I have gradle spring boot project and I added Lambok dependency in build.gradle. I created one model class and want to use lombok. I have added @Data annotation but still setter and getter methods are not generated. Sample code :
import lombok.Data;
@Data
public class TestLambok {
private int id;
private String name;
private String summary;
}