Skip to content

Instantly share code, notes, and snippets.

@nickname55
Created June 22, 2019 14:12
Show Gist options
  • Save nickname55/77e788ed06042bfc249a6832ddc0f323 to your computer and use it in GitHub Desktop.
Save nickname55/77e788ed06042bfc249a6832ddc0f323 to your computer and use it in GitHub Desktop.
maven compiler plugin and Lombok annotation processor
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>UTF-8</encoding>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment