From 89907fd11f99903d4dc8f65c628d0c63fc511a7b Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 16 Oct 2018 00:14:10 +0200 Subject: [Fixes #1848] Added support to delombok for properly handling jigsaw (module-info) style projects. --- website/templates/features/delombok.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'website/templates/features') diff --git a/website/templates/features/delombok.html b/website/templates/features/delombok.html index 56b02f7d..75178740 100644 --- a/website/templates/features/delombok.html +++ b/website/templates/features/delombok.html @@ -23,6 +23,8 @@

To let delombok print the transformation result of a single java file directly to standard output, you can use:

java -jar lombok.jar delombok -p MyJavaFile.java
+

+ The -classpath, -sourcepath, and --module-path options of javac are replicated as --classpath, --sourcepath, and --module-path in delombok.

<@f.main.h3 title="Running delombok in ant" /> @@ -39,7 +41,7 @@ <javadoc sourcepath="build/src-delomboked" defaultexcludes="yes" destdir="build/api" /> </target>
- Instead of a from attribute, you can also nest <fileset> nodes. + Instead of a from attribute, you can also nest <fileset> nodes. The delombok supports sourcepath, classpath, and modulepath as parameter or as nested element, or as nested refid element, similar to the javac task.

<@f.main.h3 title="Running delombok in maven" /> -- cgit