You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
Currently I run a setup where Jackson transforms JSON requests into request models with a builder annotation. Before Java 21 this worked fine with the internal Java compiler since it would use lombok.anyConstructor.addConstructorProperties=true which was located in the lombok.config on the root of the multi pom project. But ever since to changing my target to Java 21, it has refused to use lombok.config. Instead I need to compile the entire project with Maven every time I want to run a single test just to make sure the configs are used.
I use Corretto-21 & Lombok 1.18.34
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently I run a setup where Jackson transforms JSON requests into request models with a builder annotation. Before Java 21 this worked fine with the internal Java compiler since it would use
lombok.anyConstructor.addConstructorProperties=true
which was located in the lombok.config on the root of the multi pom project. But ever since to changing my target to Java 21, it has refused to use lombok.config. Instead I need to compile the entire project with Maven every time I want to run a single test just to make sure the configs are used.I use Corretto-21 & Lombok 1.18.34
The text was updated successfully, but these errors were encountered: