Hi, 

I´m using the jaxws-maven-plugin.

                        <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jaxws-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>server-bindings</id> 
            <goals> 
              <goal>wsimport</goal> 
            </goals>
          </execution>
        </executions>
        <configuration> 
 <bindingDirectory>${basedir}/src/main/config</bindingDirectory>
                        <bindingFiles>
 <bindingFile>jaxws-ts-server-bindings.xml</bindingFile>
                        </bindingFiles>
 <destDir>${project.build.directory}/classes</destDir>
                        <keep>true</keep>
 <staleFile>${project.build.directory}/staleFlag</staleFile> 
                  <wsdlDirectory>${basedir}/src/main/wsdl/</wsdlDirectory>
            <wsdlFiles>
                <wsdlFile>TelematikTransport.wsdl</wsdlFile>
            </wsdlFiles>
            <wsdlLocation></wsdlLocation>
        </configuration> 
                        </plugin>

In the generated sourcecode, the method order changes, each time I execute 
the build.
The source is correct, but the random behaviour makes it difficult to 
compare jars from different builds.

Has anyone an idea of the base problem? I guess it´s not in the plugin, 
but in the underlaying stuff (XJC, JAXB .....)

Thanx, 

Torsten

Reply via email to