Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing lombok compiler in pom.xml build section #285

Open
hum2u opened this issue Nov 12, 2024 · 4 comments
Open

Missing lombok compiler in pom.xml build section #285

hum2u opened this issue Nov 12, 2024 · 4 comments
Labels

Comments

@hum2u
Copy link

hum2u commented Nov 12, 2024

compilation of submodules with lombok based getter/setter/no arg constructor annotations failed./setter method compilation failures on eclipse 2024-09

the issue was fixed when the following was added to the pm.xml files of such modules

<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.34</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build>

@AnkushThakur27
Copy link
Contributor

@hum2u Can you tell me on which submodules you are getting this error ? I will start working on it asap.

@hum2u
Copy link
Author

hum2u commented Nov 14, 2024 via email

@arey arey changed the title missins lombok compiler in pom.xml build section Missing lombok compiler in pom.xml build section Nov 14, 2024
@arey arey added the question label Nov 14, 2024
@arey
Copy link
Member

arey commented Nov 14, 2024

Hi @hum2u did you setup Lombok into Eclipse as explained in this article: https://www.baeldung.com/lombok-ide ?

For information, we have an issue to get ride of Lombok: #251

@hum2u
Copy link
Author

hum2u commented Nov 14, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants