my complexType has lots of elements. During build it fails on this error: .java:[1063,12] too many parameters
I have in pom.xml this:
<arguments>
<argument>-Xannotate</argument>
<argument>-Xfluent-api</argument>
<argument>-Xvalue-constructor</argument>
</arguments>
That is reason why the jaxb generate constructor with parameters. Problem is that I need constructor for other classes.
Question: Is possible to generate constructor only for specific complexType?