aboutsummaryrefslogtreecommitdiff
path: root/website/templates/setup/javac.html
diff options
context:
space:
mode:
authorcnuessgens <christian@nuessgens.com>2018-03-22 17:48:58 +0100
committercnuessgens <christian@nuessgens.com>2018-03-22 17:48:58 +0100
commit06da0854e93df222603fcc2e51c9594c16899087 (patch)
tree66fb28a407cf3322801f241cc419767a25417e03 /website/templates/setup/javac.html
parent1b6de01bf187def687cb0e757da4295b0790f0ac (diff)
parent5a5d75a931e66b03212081e35bdfdc7b6be98783 (diff)
downloadlombok-06da0854e93df222603fcc2e51c9594c16899087.tar.gz
lombok-06da0854e93df222603fcc2e51c9594c16899087.tar.bz2
lombok-06da0854e93df222603fcc2e51c9594c16899087.zip
Merge remote-tracking branch 'remotes/upstream/master'
Diffstat (limited to 'website/templates/setup/javac.html')
-rw-r--r--website/templates/setup/javac.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/website/templates/setup/javac.html b/website/templates/setup/javac.html
index 9cc9a560..48b0ebcf 100644
--- a/website/templates/setup/javac.html
+++ b/website/templates/setup/javac.html
@@ -9,7 +9,17 @@
<@s.section title="JDK 9">
<p>
- Support for JDK9 is ongoing. You need to set up some configuration to make lombok play nice with jigsaw (the JDK9 module system). The <a href="https://github.com/rzwitserloot/lombok/issues/985">github issue about JDK9 support for Lombok</a> has the details on how to set it up.
+ Support for JDK9, if you haven't modularized your own projects yet (no <code>module-info.java</code> yet), is included in lombok starting with version 1.16.20. Just use lombok as normal: <code> javac -cp lombok.jar ...</code>
+ </p><p>
+ Support for JDK9 if you did modularize your own projects (you've written a <code>module-info.java</code> file) is available in the <a href="/download-edge">edge release</a>. To use it: <code>javac -cp lombok.jar -p lombok.jar ...</code><br />
+ Note that you will have to add lombok to your <code>module-info.java</code> file:<pre>
+module <em>myapp</em> {
+ 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>
</@s.scaffold>