Hi..
I am using project lombok 1.16.20 with Java 8 and Maven Compiler 3.7.0.
With the above configuration when I run mvn clean install, its not generating builder pattern classes. Whereas when I use 1.14.8, which is working well and good. Any help appreciated. Thanks.
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<fork>true</fork>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>