salesforce/bazel-eclipse

Support development with lombok

plaird opened this issue · 0 comments

Take a package with lombok code generation annotations, and a class like:

@Data   // https://projectlombok.org/features/Data
@Slf4j   // https://projectlombok.org/api/lombok/extern/slf4j/Slf4j
public class SomeClass {
...
  log.info("Got me some lombok");
...
}

Current problems:

  • the reference to log generated member is flagged as a compile error
  • consumers of that class will not have access to code generated @Data methods.