Maven Integration and Plugin commented on by Jochen Munz (Feb 06, 2009).

Comment:

The java2ws plugin also supports a universal argline option that can be used to make use of functionality that is available in the ant task or command line version of java2ws.

To have the service schema generated to a separate file you can use this:

<configuration>
   ..
   <argline>-createxsdimports</argline>
   ..
</configuration>

If you are using the genWrapperbean option, the generated sources and class files are stored in the project base directory. Using the argline option you can have the class files along with your other compiled classes using this:

..
<argline>-classdir ${project.build.outputDirectory}</argline>
..

Reply via email to