Peter Johansen
Peter Johansen
Any update on this? I'd be happy to take a look if there is anything else that's needed. @NeilFraser @brsanthu
I had `org.immutables.value.internal.$processor$.meta.$AnnotationInjections.AnnotationInjection` imported because I was missing the `org.immutables:annotate` artifact and I was skeptical about using it since it seemed to be for internal use. Using the one you...
I have a minimal Maven project demonstrating this. Not sure where to upload it, though.
Just discovered that I'm able to construct an empty `Foobar` without the default stuff. Guessing this is because of `@JsonAnyGetter`. Specifying a non-empty default doesn't work though: ```java @Value.Default @JsonAnyGetter...
@elucash, is there any progress/update on this? Latest Spring Boot versions use Jakarta so Immutables with validation (`ValidationMethod.VALIDATION_API`) doesn't work out of the box with Spring Boot anymore, which is...
@elucash, I've been using 2.10.0-rc0 and 2.10.0-rc1 a lot since they came out without any issues.
I couldn't find any information about this, so at least future readers can find this issue now. Perhaps it could be mentioned in the README.
It's not possible to exclude a dependency from a plugin as far as I know. How do you mean? jOOQ solves this with their own plugin using different group IDs:...
I tried a bunch of hacks without any luck. In the end I ended up reverting to the official jooq-codegen-maven plugin and starting the database and invoking code generation manually.