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.1, 1.1.1, 1.2, 1.3 Environment: Axis2 website Reporter: Hellmut Adolphs 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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]