You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2016/02/12 23:54:51 UTC

svn commit: r1730139 - /axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/src/site/markdown/usage.md

Author: veithen
Date: Fri Feb 12 22:54:51 2016
New Revision: 1730139

URL: http://svn.apache.org/viewvc?rev=1730139&view=rev
Log:
Fix documentation issues.

Modified:
    axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/src/site/markdown/usage.md

Modified: axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/src/site/markdown/usage.md
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/src/site/markdown/usage.md?rev=1730139&r1=1730138&r2=1730139&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/src/site/markdown/usage.md (original)
+++ axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/src/site/markdown/usage.md Fri Feb 12 22:54:51 2016
@@ -31,19 +31,19 @@ To run the plugin, add the following sec
     <build>
       <plugins>
         <plugin>
-          <groupId>org.apache.axis2.maven2</groupId>
+          <groupId>org.apache.axis2</groupId>
           <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
           <executions>
             <execution>
               <goals>
                 <goal>generate-sources</goal>
               </goals>
+              <configuration>
+                <packageName>com.foo.myservice</packageName>
+                <wsdlFile>src/main/wsdl/myservice.wsdl</wsdlFile>
+                <databindingName>xmlbeans</databindingName>
+              </configuration>
             </execution>
-            <configuration>
-              <packageName>com.foo.myservice</packageName>
-              <wsdlFile>src/main/wsdl/myservice.wsdl</wsdlFile>
-              <databindingName>xmlbeans</databindingName>
-            </configuration>
           </executions>
         </plugin>
       </plugins>