Provides support for lombok annotations to write great Java code with IntelliJ IDEA.
Last version (0.34) released on 17.01.2021
37th version of plugin released.
Install it automatically from IntelliJ Idea plugin repository.
Tested and supports IntelliJ versions: 2018.X, 2019.X, 2020.1 and 2020.2.1+, 2020.3 (Build In!)
Last support for IntelliJ 2017.1, 2017.2 and 2017.3 by plugin version 0.32!
Last support for IntelliJ 2016.2 and 2016.3 by plugin version 0.31!
Last support for IntelliJ 15.0.6 and 2016.1 by plugin version 0.19!
Last support for IntelliJ 14.1.7 by plugin version 0.14!
Last support for IntelliJ 11.1.5, 12.1.7, 13.1.6 by plugin version 0.11
Last support for IntelliJ 10.5.4 by plugin version 0.8.7
With this plugin your IntelliJ can recognize all of generated getters, setters and some other things from lombok project, so that you get code completion and are able to work without errors stating the methods don't exists.
Many features of the plugin (including warnings) could be disabled through per-project settings.
Restart IDE.
In your project: Click Preferences -> Build, Execution, Deployment -> Compiler, Annotation Processors. Click Enable Annotation Processing
Afterwards you might need to do a complete rebuild of your project via Build -> Rebuild Project.
Make sure you have Lombok dependency added to your project. This plugin does not automatically add it for you.
Please Note: Using newest version of the Lombok dependency is recommended, but does not guarantee that all the features introduced will be available. See Lombok changelog for more details.
If you are using Gradle/Maven/Ivy, see example below:
In your build.gradle
:
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
testCompileOnly 'org.projectlombok:lombok:1.18.16'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
}
In your pom.xml
:
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.16</version>
<scope>provided</scope>
</dependency>
</dependencies>
In your ivy.xml
:
<dependency org="org.projectlombok" name="lombok" rev="1.18.16" conf="build" />
If you're using Eclipse compiler with lombok, try this setup:
@mplushnikov Michail Plushnikov
Contributors
YourKit supports open source projects with its full-featured Java Profiler. YourKit, LLC is the creator of YourKit Java Profiler and YourKit .NET Profiler, innovative and intelligent tools for profiling Java and .NET applications.
Copyright (c) 2011-2020 Michail Plushnikov. See the LICENSE file for license rights and limitations (BSD).
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。