From c497a2ab16d35ec9984bb7ddd04af98580a2c4cc Mon Sep 17 00:00:00 2001
From: Roel Spilker
+ Support for JDK9+ if you did modularize your own projects (you've written a module-info.java
file):javac -cp lombok.jar -p lombok.jar ...
+ Note that you will have to add lombok to your module-info.java
file:
+module myapp {
+ requires static lombok;
+}
+
+ The 'static' part ensures that you won't need lombok to be present at runtime. +
+ @s.section> + + <@s.section title="JDK 1.6 - 1.8 or no modules in later versions">
Just put lombok on the classpath when compiling with any javac (version 1.6 - 1.8): javac -cp lombok.jar ....
Support for JDK9, if you haven't modularized your own projects yet (no module-info.java
yet), is included in lombok starting with version 1.16.20. Just use lombok as normal: javac -cp lombok.jar ...
@@ -20,4 +29,5 @@ module myapp { The 'static' part ensures that you won't need lombok to be present at runtime.
@s.section> + @s.scaffold> -- cgit