Skip to content

Instantly share code, notes, and snippets.

@sachin-handiekar
Created August 26, 2013 15:11
Show Gist options
  • Save sachin-handiekar/6342510 to your computer and use it in GitHub Desktop.
Save sachin-handiekar/6342510 to your computer and use it in GitHub Desktop.
CXF Codegen plugin - WSDL2Java
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/Person.wsdl</wsdl>
<wsdlLocation>classpath:wsdl/Person.wsdl</wsdlLocation>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment