You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Kishanthan Thangarajah (JIRA)" <ji...@apache.org> on 2013/04/23 21:33:15 UTC

[jira] [Updated] (AXIS2-5478) documantation has wrong config example

     [ https://issues.apache.org/jira/browse/AXIS2-5478?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kishanthan Thangarajah updated AXIS2-5478:
------------------------------------------

    Attachment: AXIS2-5478.patch
    
> documantation has wrong config example
> --------------------------------------
>
>                 Key: AXIS2-5478
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5478
>             Project: Axis2
>          Issue Type: Bug
>          Components: documentation
>    Affects Versions: 1.6.2
>         Environment: all
>            Reporter: tibi
>            Priority: Minor
>              Labels: documentation
>         Attachments: AXIS2-5478.patch
>
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> http://axis.apache.org/axis2/java/core/tools/maven-plugins/maven-wsdl2code-plugin.html
> this example is incorrect the config part should be moved up.
> so this:
>    <build>
>         <plugins>
>             <plugin>
>                 <groupId>org.apache.axis2</groupId>
>                 <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
>                 <version>1.4</version>
>                 <executions>
>                     <execution>
>                         <goals>
>                             <goal>wsdl2code</goal>
>                         </goals>
>                         <configuration>
>                             <packageName>com.foo.myservice</packageName>
>                             <wsdlFile>src/main/wsdl/myservice.wsdl</wsdlFile>
>                             <databindingName>xmlbeans</databindingName>
>                         </configuration>
>                     </execution>
>                 </executions>
>             </plugin>
>         </plugins>
>     </build>
> should be this:
>    <build>
>         <plugins>
>             <plugin>
>                 <groupId>org.apache.axis2</groupId>
>                 <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
>                 <version>1.4</version>
>                         <configuration>
>                             <packageName>com.foo.myservice</packageName>
>                             <wsdlFile>src/main/wsdl/myservice.wsdl</wsdlFile>
>                             <databindingName>xmlbeans</databindingName>
>                         </configuration>
>                 <executions>
>                     <execution>
>                         <goals>
>                             <goal>wsdl2code</goal>
>                         </goals>
>                     </execution>
>                 </executions>
>             </plugin>
>         </plugins>
>     </build>
> and the version number could be uped ;)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org