Description
Using the java2ws-plugin, when you want to generate a WSDL, you currently need to use the argline option to specify a portname.
It would be easier if this was a seperate configuration parameter
current configuration
<plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-java2ws-plugin</artifactId> <version>${cxf.version}</version> ... <executions> <execution> ... <configuration> ... <argline>-portname MyPort</argline> </configuration> ... </execution> </executions> </plugin>
desired configuration
<plugin> <groupId>org.apache.cxf</groupId> <artifactId>cxf-java2ws-plugin</artifactId> <version>${cxf.version}</version> ... <executions> <execution> ... <configuration> ... <portName>MyPort</portName> </configuration> ... </execution> </executions> </plugin>
Attachments
Issue Links
- links to