wsdl2java does not respect the order of wsdlFiles specified in the POM 
configuration
------------------------------------------------------------------------------------

                 Key: MAXISTOOLS-47
                 URL: http://jira.codehaus.org/browse/MAXISTOOLS-47
             Project: Maven 2.x Axis Tools Plugin
          Issue Type: Bug
          Components: wsdl2java
    Affects Versions: 1.3
            Reporter: Dennis Lundberg


Given the configuration below, the wsdlFiles are processed in a seemingly 
random order instead of the order they are specified in. We have a use case 
where we need the wsdlFiles to be processed in a certain order, due to problems 
with the WSDL files themselves, which unfortunately are beyond our control.

{code:xml}
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>axistools-maven-plugin</artifactId>
        <version>1.3</version>
        <configuration>
          <noImports>true</noImports>
          <sourceDirectory>wsdl-files</sourceDirectory>
          <typeMappingVersion>1.2</typeMappingVersion>
          <useEmitter>true</useEmitter>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>wsdl2java</goal>
            </goals>
            <configuration>
              <wsdlFiles>
                <wsdlFile>AnonTentamenFetcher.wsdl</wsdlFile>
                <wsdlFile>CertAdminFetcher.wsdl</wsdlFile>
                <wsdlFile>ChangeAddressFetcher.wsdl</wsdlFile>
                ...
              </wsdlFiles>
            </configuration>
          </execution>
        </executions>
      </plugin>
{code}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to