I'd like to use jackson-databind with the new Java module system, so I can build a minimal jlink image. Jackson components do specify Automatic Module Names, but these are insufficient for building a jlink image.
So, I figured that I could simply clone databind, core, and annotations, remove the automatic module name descriptors, add a module-info.java, and then change the maven source/target values. I see that jackson-base (in jackson-bom) is the parent pom and should specify the java version, but I have no clue where the java source/target is specified. I've tried setting ``` <requireJavaVersion> <version>[11,)</version> </requireJavaVersion> ``` in the maven-enforcer configuration, but this doesn't work. Any advice would be appreciated. -- You received this message because you are subscribed to the Google Groups "jackson-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/d/optout.
