如果已经存在相同的文件,maven-jaxb2-plugin 不会生成文件

maven-jaxb2-plugin don't generate files if already equal one exist

我正在使用 maven-jaxb2-plugin 从第 3 方提供的 dld 文件生成文件。

如何防止每次都重新生成相同的文件,即使没有进行任何更改?

知道了。

根本原因是在文件开头生成的免责声明将 随机性 因素添加到文件中。

This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63- 
See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
Any modifications to this file will be lost upon recompilation of the source schema. 
Generated on: XXX XXX XXX 

在插件的 pom 配置中添加 <args><arg>-no-header</arg></args> 解决了问题。