<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<goals>
<goal>generate-sources</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaDirectory>src/main/resources/xsd</schemaDirectory>
<generatePackage>com.example.model</generatePackage>
<targetPackage>com.example.model.generated</targetPackage>
</configuration>
</plugin>