aboutsummaryrefslogtreecommitdiff
path: root/website/templates/setup/intellij.html
blob: 76a3c7b94f867eec8faee1ed67cec1211866b3a3 (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 without a plugin as of version 2020.3.
		</p><p>
			For versions prior to 2020.3, you can 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>