Is there a way to easily add comments (like the apache license header (
http://www.apache.org/legal/src-headers.html for example) at the top of all
wsdl2java generated classes? I could write a script to do this, but it
would be better if there was a way to do this as part of the Maven plugin.
I looked through the documentation and didn't see anything specifically for
this, so I thought I would ask the question here. If it's not possible, no
worries as I'll just write a script, but please let me know.
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<executions>
<execution>
<id>generate-sources</id>
<configuration>
<sourceRoot>${basedir}/target/generated</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/service.wsdl</wsdl>
<extraargs>
<extraarg>-p</extraarg>
<extraarg>org.company.product</extraarg>
<extraarg>-wsdlLocation</extraarg>
<extraarg>service.wsdl</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
Regards,
Bobby