How to generate several versions of Java classes generated by JAXB ?
- by mica16
Hello,
I recently generate two versions of Java classes generated by JAXB. So I get two packages :
V1_0 and V2_0
I notice that I have only one ObjectFactory generated. The problem is that this ObjectFactory is specific to a version (here it's specific to my version v1_0).
So the question is : Could I configure JAXB to allow to make one ObjectFactory for each version ?
Thanks a lot.