I've excluded some xml types from jaxb2 generation, due the corresponding classes already exists in Java. Generation is perfectly working and classes are founded.
When I'm trying to include the types by this tutorial, jsonix searches classes only in the package with generated jaxb2 classes. So it looks generated.entity.Position instead of entity.Position class.
...
<jaxb:bindings node="//xs:complexType[@name='PositionType']">
<jaxb:class ref="entity.Position"/>
</jaxb:bindings>
<jaxb:bindings node="//xs:complexType[@name='MoveType']">
<jaxb:class ref="entity.Move"/>
</jaxb:bindings>
<jsonix:mapping package="entity">
<jsonix:includes>
<jsonix:type name="Position"/>
</jsonix:includes>
</jsonix:mapping>
...