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

<@s.scaffold title="IntelliJ IDEA">
	<@s.introduction>
		<p>
			The <a href="https://www.jetbrains.com/idea/">Jetbrains IntelliJ IDEA</a> editor is compatible with lombok.
		</p><p>
			Add the <a href="https://plugins.jetbrains.com/plugin/6317">Lombok IntelliJ plugin</a> to add lombok support for IntelliJ:
			<ul><li>
				Go to <code>File &gt; Settings &gt; Plugins</code>
			</li><li>
				Click on <code>Browse repositories...</code>
			</li><li>
				Search for <code>Lombok Plugin</code>
			</li><li>
				Click on <code>Install plugin</code>
			</li><li>
				Restart IntelliJ IDEA
			</li></ul>
		</p>
		<p>
			You can also check out <a href="https://www.baeldung.com/lombok-ide">Setting up Lombok with Eclipse and IntelliJ</a>, a blog article on baeldung.
		</p>
	</@s.introduction>
</@s.scaffold>