aboutsummaryrefslogtreecommitdiff
path: root/website/templates/features/delombok.html
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-10-16 00:14:10 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2018-10-16 00:14:49 +0200
commit89907fd11f99903d4dc8f65c628d0c63fc511a7b (patch)
tree2fce20b46a784ef22d0b2a37434b35d095a62400 /website/templates/features/delombok.html
parent836bd0ab573124ea6c168ef8351a7153fbfea363 (diff)
downloadlombok-89907fd11f99903d4dc8f65c628d0c63fc511a7b.tar.gz
lombok-89907fd11f99903d4dc8f65c628d0c63fc511a7b.tar.bz2
lombok-89907fd11f99903d4dc8f65c628d0c63fc511a7b.zip
[Fixes #1848] Added support to delombok for properly handling jigsaw (module-info) style projects.
Diffstat (limited to 'website/templates/features/delombok.html')
-rw-r--r--website/templates/features/delombok.html4
1 files changed, 3 insertions, 1 deletions
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 @@
</p><p>
To let delombok print the transformation result of a single java file directly to standard output, you can use:
<pre>java -jar lombok.jar delombok -p MyJavaFile.java</pre>
+ </p><p>
+ The <code>-classpath</code>, <code>-sourcepath</code>, and <code>--module-path</code> options of javac are replicated as <code>--classpath</code>, <code>--sourcepath</code>, and <code>--module-path</code> in delombok.
</p>
<@f.main.h3 title="Running delombok in ant" />
@@ -39,7 +41,7 @@
&lt;javadoc sourcepath="build/src-delomboked" defaultexcludes="yes" destdir="build/api" /&gt;
&lt;/target&gt;</pre>
<br />
- Instead of a <code>from</code> attribute, you can also nest <code>&lt;fileset&gt;</code> nodes.
+ Instead of a <code>from</code> attribute, you can also nest <code>&lt;fileset&gt;</code> nodes. The <code>delombok</code> supports <code>sourcepath</code>, <code>classpath</code>, and <code>modulepath</code> as parameter or as nested element, or as nested refid element, similar to the <code>javac</code> task.
</p>
<@f.main.h3 title="Running delombok in maven" />