I am a newbie so please excuse me of anything silly with this.  
I using this eclipse plugin
http://axis.apache.org/axis2/java/core/tools/maven-plugins/maven-wsdl2code-plugin.html
 
to generate java code.  The output directory is always
target/generated-sources/axis2/wsdl2code/src  even though I specify
outputDirectory  as target/generated-sources.  Is there anyway to force it
to just target/generated-sources.  This is very critical for my project. 

This is what I have in my pom

                  <plugin>
                        <groupId>org.apache.axis2</groupId>

                       
<artifactId>axis2-wsdl2code-maven-plugin</artifactId>
                        <version>1.4</version>
                        <executions>
                              <execution>
                                    <id>MyService</id>
                                    <goals>
                                          <goal>wsdl2code</goal>
                                    </goals>
                                    <configuration>
                                         
<outputDir>{project.build.directory}/generated-sources</outputDir>
                                         
<packageName>com.myservice</packageName>
                                         
<wsdlFile>${basedir}/src/main/resources/wsdl/myservice.wsdl</wsdlFile>          
                           
                                    </configuration>
                              </execution>                  
                        </executions>
                  </plugin>

-- 
View this message in context: 
http://old.nabble.com/Maven2-WSDL2Code-Plug-in-tp34137481p34137481.html
Sent from the Axis - User mailing list archive at Nabble.com.


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