I have multiple WSDL/XSD files and using JAXB I'm generating it's clients. But there are some common classes among them all, that I have in a separate project.
I'm able to customize the whole generation, informing custom names to client classes as needed. But for those common classes, I would like just to inform their names for reference, but not generate them, using the ones provided in another project, and included in the classpath.
Is that possible using JAXB customizations?
Thanks in advance!