Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <plugin>
  2.                 <groupId>org.apache.cxf</groupId>
  3.                 <artifactId>cxf-codegen-plugin</artifactId>
  4.                 <version>${cxf.version}</version>
  5.                 <executions>
  6.                     <execution>
  7.                         <phase>generate-sources</phase>
  8.                         <configuration>
  9.                             <sourceRoot>
  10.                                 ${basedir}/target/generated
  11.                         </sourceRoot>
  12.                             <wsdlOptions>
  13.                                 <wsdlOption>
  14.                                     <wsdl>
  15.                                         ${basedir}/src/main/resources/lbpbel.wsdl
  16.                                 </wsdl>
  17.                                 </wsdlOption>
  18.                             </wsdlOptions>
  19.                         </configuration>
  20.                         <goals>
  21.                             <goal>wsdl2java</goal>
  22.                         </goals>
  23.                     </execution>
  24.                 </executions>
  25.             </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement