我通过以下参考链接解决了此问题。
https://github.com/davidmoten/jax-maven-
plugin
根据上面的教程参考,我已经如下修改了我的插件,并且我能够解决此问题。
<plugin> <groupId>com.github.davidmoten</groupId> <artifactId>jax-maven-plugin</artifactId> <version>VERSION_HERE</version> <executions> <execution> <id>xjc-schema1</id> <goals> <goal>xjc</goal> </goals> <configuration> <target>2.2</target> <schemaFiles>SubmitPaymentBatch/SubmitPaymentRequest.xsd</schemaFiles> <packageName>app.test.services.submitpayment.request</packageName> <clearOutputDir>false</clearOutputDir> </configuration> </execution> </executions></plugin>



