I want to remove comments inside generated files through maven-jaxb2-plugin.
I tried:
<noFileHeader>true</noFileHeader>
and
<configuration>
<args>
<arg>-no-header</arg>
</args>
</configuration>
It boths works for java classes, but doesn't work for sun-jaxb.episode which keeps the comment with the timestamp.
Thank you, RoD