From 299078684931e91863d7f3cfcc30d2c8e9eb24ee Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Wed, 8 Jan 2020 01:32:10 +0100 Subject: Document compiling java modules with maven. Fixes #2325 --- website/templates/setup/maven.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 @@

+ <@s.section title="JDK9+ with module-info.java"> +

+ The configuration of the compiler plug-in should contain the following:

+<annotationProcessorPaths>
+	<path>
+		<groupId>org.projectlombok</groupId>
+		<artifactId>lombok</artifactId>
+		<version>${version}</version>
+	</path>
+</annotationProcessorPaths>
+
+

+ + <@s.section title="Delomboking: The Lombok Maven Plugin">

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 after lombok has been applied, or if you want to generate javadoc. The plugin is open source. Read more about the lombok maven plugin. -- cgit