aboutsummaryrefslogtreecommitdiff
path: root/website/templates/setup/javac.html
blob: 96bd8c2bb71b52b6cb99e3fc40ef898022f60977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<#import "_setup.html" as s>

<@s.scaffold title="JavaC">
	<@s.introduction>
		<p>
			Just put lombok on the classpath when compiling with any javac (version 1.6 - 1.8): <code>javac -cp lombok.jar ....</code>
		</p>
	</@s.introduction>

	<@s.section title="JDK 9">
		<p>
			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):<br /><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>
	</@s.section>
</@s.scaffold>