i am trying to upgrade my application from JEE 8 to Jakarta EE.
When I am starting the application, it is throwing this exception
with Jackson-Module-Jaxb-Annotations-2.17.1 trying to use the old javax.xml.bind classes rather than the jakarta.xml.bind classes that the application now has (I am using jakarta.xml.bind-api-4.0.2)
I would expect the most recent version of the jars to be using the jakarta version of the bind classes
When I look at the maven repository for Jackson-Module-Jaxb-Annotations 2.17.1 it lists 3.0.1 as the appropriate version of jakarta.xml.bind-api but that doesn’t have javax.xml.bind classes in it either so I am wondering what I am doing wrong here and how I can get around this problem.
Happy to provide additional information if required