Dose any body know who is author of this plugin and of this site 
http://axis.apache.org/axis2/java/core/tools/maven-plugins/maven-wsdl2code-plugin.html

It is very interesting that in pom they put dependency for xmlbeans and adb, 
but NO dependency for jibx.

So one solution would be, to put this in pom of this plugin OR update this site 
with some small notification.

If you use jibx whit this plugin you MUST override dependency when calling this 
plugin for goal wsdl2code:


<plugin>
        <groupId>org.apache.axis2</groupId>
        <artifactId>axis2-wsdl2code-maven-plugin</artifactId>
        <version>1.5.4</version>
        <executions>
                <execution>
                        <goals>
                                <goal>wsdl2code</goal>
                        </goals>
                        <configuration>
                                
<packageName>si.arnes.ozwizardlu.service.jibx</packageName>
                                
<wsdlFile>${axis2.dir}/OZWIZARD_LU.wsdl</wsdlFile>
                                <generateServerSide>true</generateServerSide>
                                <generateServicesXml>true</generateServicesXml>
                                
<generateServerSideInterface>true</generateServerSideInterface>
                                <unwrap>true</unwrap>
                                <serviceName>ozwizardlu</serviceName>
                                <databindingName>jibx</databindingName>
                                <overWrite>true</overWrite>
                                
<targetSourceFolderLocation>../../../../src/main/java/</targetSourceFolderLocation>
                        <options>
                        <property>
                                                <name>bindingfile</name>        
                                                                                
                                                                                
        <value>${jibx.dir}/binding.xml</value>
                        </property>
                        </options>

                </configuration>
        </execution>
        </executions>
        <dependencies>
                <dependency>
                        <groupId>org.apache.axis2</groupId>
                        <artifactId>axis2-jibx</artifactId>
                        <version>1.5.1</version>                                
                        
                </dependency>
        </dependencies>                                                         
                                
</plugin>

Regards, Tomaz

<<attachment: tomaz_majerhold.vcf>>

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@axis.apache.org
For additional commands, e-mail: java-user-h...@axis.apache.org

Reply via email to