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 "Hellmut Adolphs (JIRA)" <ji...@apache.org> on 2007/10/09 01:15:50 UTC

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

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: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


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

Posted by "Hellmut Adolphs (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12533225 ] 

Hellmut Adolphs commented on AXIS2-3257:
----------------------------------------

You should also mention that is possible to set up multiple executions with different configuration parameters...

> 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
>             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


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

Posted by "Charitha Kankanamge (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3257?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Charitha Kankanamge resolved AXIS2-3257.
----------------------------------------

    Resolution: Fixed

Fixed in Axis2 trunk revision 594441

> 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


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

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ 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


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

Posted by "Anders Hammar (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3257?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12538423 ] 

Anders Hammar commented on AXIS2-3257:
--------------------------------------

The stated command line command is incorrect as well. It should be "mvn axis2-wsdl2code:wsdl2code". Please update this as well!

> 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
>             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