<#import "_setup.html" as s> <@s.scaffold title="JavaC"> <@s.section title="JDK9+ with module-info.java">

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 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 ...

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.