aboutsummaryrefslogtreecommitdiff
path: root/website/templates/setup
diff options
context:
space:
mode:
Diffstat (limited to 'website/templates/setup')
-rw-r--r--website/templates/setup/javac.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/website/templates/setup/javac.html b/website/templates/setup/javac.html
index 113be9c0..f90cb727 100644
--- a/website/templates/setup/javac.html
+++ b/website/templates/setup/javac.html
@@ -17,9 +17,11 @@
</ul>
Both are equally effective. Note that you will have to add lombok to your <code>module-info.java</code> file:<pre>
module <em>myapp</em> {
- requires lombok;
+ requires static lombok;
}</pre>
</p><p>
+ The 'static' part ensures that you won't need lombok to be present at runtime.
+ </p><p>
Feedback about JDK9 module-info support can be given at <a href="https://github.com/rzwitserloot/lombok/issues/985">github issue #985</a>.
</p>
</@s.section>