I don't use this plugin myself, so I'm just shooting in the dark, but
have you tried <debug>true</debug><verbose>true</verbose> in the
axistools configuration to hopefully get more information out of the
plugin while its executing? There are other configuration items you
can use listed on this page:
http://mojo.codehaus.org/axistools-maven-plugin/wsdl2java-mojo.html
And/or have you tried mvn -X to see more information out of M2?
It seems like there's simply a problem during the execution of this
plugin. You might need to pull the plugin sources and add some more
debugging to see what exactly is going on, if you can't resolve this
using the debug and verbose parameters.
Wayne
On 5/31/07, xiaojie han <[EMAIL PROTECTED]> wrote:
the top pom.xml is as follows:
<project>
.....
<dependencies>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
....
<modules>
<module>ejb</module>
<module>web</module>
<module>streamer</module>
<module>wsappclient</module>
<module>ear</module>
</modules>
<profiles>
<profile>
<id>functional-test</id>
<activation>
<property>
<name>enableCiProfile</name>
<value>true</value>
</property>
</activation>
<modules>
<module>functional-tests</module>
</modules>
</profile>
</profiles>
</project>
the module wsappclient is dealing with wsdl. its pom.xml is as follows:
<project>
....
<dependencies>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee_1.4_spec</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis-jaxrpc</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<class-path>daytrader-ejb-${version}.jar</class-path>
</manifestEntries>
<manifest>
<main-class>
org.apache.geronimo.samples.daytrader.client.ws.ClientApp
</main-class>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<configuration>
<sourceDirectory>
src/main/resources/META-INF/wsdl
</sourceDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
the TradeServices.wsdl is as follows:
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]