intellij-lombok-plugin Questions
10
I'm trying to add Lombok to my Spring Boot project in IntelliJ IDEA. So far, I've
added the plugin under Settings - Plugins (version 0.13.16)
added compile('org.projectlombok:lombok') to my...
Gyron asked 15/12, 2016 at 9:50
1
I like using Lombok, but it requires enabling annotation processor in IDEs settings. Because developers use different IDEs and CI/CD has it's own compilation flow, plus I would really like to avoid...
Optimize asked 3/6, 2019 at 10:58
1
Solved
I have a field with lombok annotation (@Setter) and I am looking for an easy way to find usages of the auto generated setter.
When I put the cursor on the @Setter annotation and run Find usages (A...
Cressi asked 7/5, 2019 at 10:44
1
Solved
I was recently working with Java 11 and Lombok on Intellij and it was all fine.
I tried Java 12 but now I'm always getting compilation errors, because lombok 's annotations seem to be ignored.
Doe...
Inharmonic asked 26/4, 2019 at 16:55
1
Solved
I just upgrade my Android Studio to 3.3.2 and installed the Lombok plugin.
I need to re-activate my annotation processor, but the option doesn't appear to be there anymore.
So where is it?
Zerlina asked 6/4, 2019 at 14:41
2
I was setting the value of recordId from the child classes using the default constructor and was not using lombok @Builder initially. Eventually i decided to use the Builder here, but the problem n...
Burnham asked 26/11, 2018 at 6:14
1
Recently started using IntelliJ IDE. I'm trying to open an Android project in IntelliJ which was build in Android studio IDE . But it resulted in number of issues. One of them which is not resolvin...
Busboy asked 4/10, 2018 at 11:5
3
Solved
As far as I understand, Lombok uses Java's Annotation Processors to generate additional methods.
With Maven 3.5 it works perfectly without adding any additional configuration, just add dependecy t...
Taber asked 30/8, 2018 at 9:3
1
Solved
I have a multi-project in Gradle. The build.gradle script looks like:
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
...
Twayblade asked 21/8, 2018 at 14:41
1
Solved
I am not able to use any of the lombok annotations in Intellij, it works fine in Eclipse.
So far, I have done the following things:
Added lombok dependency in eclipse
Installed the lombok plugin...
Balance asked 10/8, 2018 at 16:24
2
I am using IntelliJ IDEA 2016.3 + lombok plugin with the following structure:
Edit: this is the Module Content Root configuration:
Everything works as expected in src/main/java and src/test/...
Dissuasive asked 19/4, 2018 at 9:58
1
Solved
I am writing a simple app:
@Slf4j
public class MyApp {
public static void main(String[] argv) {
log.info("hello world!");
}
}
This code compiles just fine, and indeed, when run I see "hello w...
Caresa asked 29/3, 2018 at 4:24
4
Solved
Right now I have seen Intellij Idea update window with the notion:
Plugin incompatible with new build found: Lombok Plugin
Is there a way to solve the problem or I should wait till lombok p...
Silverplate asked 28/3, 2018 at 9:11
1
Given an example:
@Data
public VO {
private String item;
}
How to build call hierarchy for the getItem()?
I know there is a cumbersome path :open Structure, then find the method, then build h...
Homeostasis asked 12/7, 2017 at 4:5
3
Solved
I have a class with lombok annotation (either @Value or @Data) and I am looking for an easy way to find usages of the auto generated constructor.
What I can do now is to find a one use of the cons...
Malan asked 3/8, 2016 at 13:21
3
Solved
My android project builds fine with lombok 1.16.0, but once I change my dependency to target 1.16.2, I get the following error everywhere I'm using a lombok annotation:
Error:(20, 1) error: packa...
Fredel asked 11/2, 2015 at 22:16
© 2022 - 2024 — McMap. All rights reserved.