I am using Java 8 on OSX. I have the lombok.jar in classpath and I have the following dependency in maven.
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.14.0</version>
<scope>provided</scope>
</dependency>
When I try to build the code from maven, I get compilation issues :
mvn clean install
...error: cannot find symbol
[ERROR] symbol: variable log
error: cannot find symbol
[ERROR] symbol: method getMinLevel()
These are methods/injected dependencies by Lombok not found at the build time. I am not sure what else is required to fix this.