Evaluating this project ... #314
Replies: 1 comment 3 replies
-
Hi! (1) - Lombok helps eliminate boilerplate code that's mostly noise, which leaves fewer coupled code sections that could go out of sync. For example, this makes it impossible to forget to update (or regenerate) (2) and (3) - We support all LTS releases of Java, which still includes Java 8, so we cannot use features that require newer Java versions at runtime. We recently added an (4) - I've tried toward that occasionally and made some progress, but it hasn't as of yet been a priority. The main thing that remains is a couple of calls to (5) - Note that HttpClient is not used to make HTTP requests, it is only used in the Does that answer your questions? |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I am evaluating this library and have a few questions:
One can use Java records instead of
@Value
classes, Interfaces with static methods for utility classes, Java Checker Framework for null checks, and a few hand-written builders.I am willing to help with any of the above.
For a library like this, it is very important to bring in minimal dependencies, be very portable (including compilation with Graal)
Beta Was this translation helpful? Give feedback.
All reactions