You should be able to use the Axis2 based WS binding with the Tuscany
plugin instead of the JAXWS RI based one by adding the dependencies as
follows:
<plugin>
<groupId>org.apache.tuscany.maven.plugins</groupId>
<artifactId>maven-tuscany-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.19</version>
</dependency>
</dependencies>
</plugin>
We need to decide if we want to keep maintaining the JAXWS RI based WS
binding or drop it and just use the Axis2 based one, its not getting
updated much these days so is getting out of date, i guess thats a
discussion for the dev list.
It would be interesting to hear a bit more about how you use the
Tuscany plugin, you say you use it in Eclipse, could you tell us a bit
more about what you do?
...ant