have a look at the vi-api module in the vcc thirdparty folder at 
https://vcc.dev.java.net

that has a working jaxws which builds completely from central (as vcc.dev.java.net is deploying to central all its dependencies must be on central)

Sent from my [rhymes with myPod] ;-)

On 7 Aug 2009, at 18:39, monkeyden <[email protected]> wrote:


Does anyone have working example of the jaxws-maven-plugin? I have seen many posts on the web and all seem to have problems with it. They all seem to relate to a version problem with the jaxws-api dependency and the repository in which it is found. The central repo apparently has an incorrect version.
It seems we have to cobble this thing together to get it to work.

I think just the plugin declaration and the repositories used should be
enough.  Here is what I have so far....


<repositories>
       <!-- needed to retrieve a working jaxws-api-2.1.pom -->
       <repository>
           <id>java.net - Dev</id>
           <url>https://maven-repository.dev.java.net/repository</url>
           <layout>legacy</layout>
       </repository>
       <!-- needed for the jaxws-maven-plugin -->
       <repository>
           <id>java.net - Maven2</id>
           <url>http://download.java.net/maven/2</url>
           <layout>legacy</layout>
       </repository>
   </repositories>


<plugin>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>jaxws-maven-plugin</artifactId>
   <version>1.7</version>
   <executions>
       <execution>
           <goals>
               <goal>wsgen</goal>
           </goals>
           <configuration>
               <sei>com.symcare.intouch.test.HelloWorld</sei>
               <genWsdl>true</genWsdl>
               <verbose>true</verbose>
           </configuration>
       </execution>
   </executions>
</plugin>
--
View this message in context: 
http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24869071.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to