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 "Deepal Jayasinghe (JIRA)" <ji...@apache.org> on 2007/11/12 19:15:52 UTC

[jira] Assigned: (AXIS2-3257) fix documentation on the axis2 website

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

Deepal Jayasinghe reassigned AXIS2-3257:
----------------------------------------

    Assignee: Charitha Kankanamge

> fix documentation on the axis2 website
> --------------------------------------
>
>                 Key: AXIS2-3257
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3257
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Task
>          Components: documentation, samples, build,site
>    Affects Versions: 1.3, 1.2, 1.1.1, 1.1
>         Environment: Axis2 website
>            Reporter: Hellmut Adolphs
>            Assignee: Charitha Kankanamge
>             Fix For: 1.4
>
>
> The right configuration inside the POM should be for example something like this:
>  <plugin>
>             <groupId>org.apache.axis2</groupId>
>             <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
>             <version>1.3</version>
>             <executions>
>               <execution>
>                 <goals>
>                   <goal>wsdl2code</goal>
>                 </goals>
>               <configuration>
>                  <packageName>com.your.package</packageName>
>                <wsdlFile>src/main/wsdl/yourfile.wsdl</wsdlFile>
>                <databindingName>xmlbeans</databindingName> <!-- or whatever you need -->
>              </configuration>
>               </execution>
>             </executions>
>     </plugin> 
> NOT this:
>     <build>
>         <plugins>
>            <plugin>
>               <groupId>org.apache.axis2.maven2</groupId>
>               <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
>               <executions>
>                   <execution>
>                       <goals>
>                           <goal>wsdl2code</goal>
>                       </goals>
>                </execution>
>               <configuration>
>                   <packageName>com.foo.myservice</packageName>
>               </configuration>
>              </executions>
>           </plugin>
>         </plugins>
>     </build>
> In particular configuration belongs inside execution not executions.  This is causing a lot of confusion for some people out there...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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