Hello, I have some project containing dependencies: com.sun.xml.bind:jaxb-core:3.0.0, com.sun.xml.bind:jaxb-impl;3.0.0,camel-quarkus-fop to generate some xml to be consumed by pdf engine.
After upgrading from quarkus 1.13.2 to 2.0.0 or later the code doesn't compile anymore: 'package com.sun.xml.bind.marshaller does not exist' Does anyone know how to resolve the missing dependency? The code sets NamespacePrefixMapper: jaxbMarshaller.setProperty("com.sun.xml.bind.namespacePrefixMapper", new MyNamespacePrefixMapper()); to be able to set custom prefix in xml Thank you!