diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/templates/setup/maven.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/website/templates/setup/maven.html b/website/templates/setup/maven.html index 5ca09126..0e28421f 100644 --- a/website/templates/setup/maven.html +++ b/website/templates/setup/maven.html @@ -24,6 +24,20 @@ </p> </@s.section> + <@s.section title="JDK9+ with module-info.java"> + <p> + The configuration of the compiler plug-in should contain the following:<pre> +<annotationProcessorPaths> + <path> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>${version}</version> + </path> +</annotationProcessorPaths> +</pre> + </p> + </@s.section> + <@s.section title="Delomboking: The Lombok Maven Plugin"> <p> There is a plugin for Maven that we recommend you use if you want to delombok via maven. Useful if you want to run source analysis tools on your source <em>after</em> lombok has been applied, or if you want to generate javadoc. The plugin is open source. Read more <a href="http://awhitford.github.io/lombok.maven/lombok-maven-plugin/">about the lombok maven plugin</a>. |