diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-02-06 22:14:03 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-02-07 00:01:16 +0100 |
commit | 55bcc142d08ac8a4de0c3965333e3816c496799f (patch) | |
tree | f80823205b3bd3742565c23b788b1ec0f1987345 /website | |
parent | bb95ad218d29a9f5b1011b7c7b919ed41337a00b (diff) | |
download | lombok-55bcc142d08ac8a4de0c3965333e3816c496799f.tar.gz lombok-55bcc142d08ac8a4de0c3965333e3816c496799f.tar.bz2 lombok-55bcc142d08ac8a4de0c3965333e3816c496799f.zip |
[jdk9] forcing new rounds when compiling multiple modules didn’t work. (FilerException on creating the new round).
Diffstat (limited to 'website')
-rw-r--r-- | website/templates/setup/javac.html | 4 |
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> |