Re: jaxws-maven-plugin issues

2009-08-07 Thread Wes Wannemacher
gt;>> get
>>>> it to work.
>>>>
>>>> I think just the plugin declaration and the repositories used should be
>>>> enough.  Here is what I have so far
>>>>
>>>>
>>>> 
>>>>         
>>>>         
>>>>             java.net - Dev
>>>>             https://maven-repository.dev.java.net/repository
>>>>             legacy
>>>>         
>>>>         
>>>>         
>>>>             java.net - Maven2
>>>>             http://download.java.net/maven/2
>>>>             legacy
>>>>         
>>>>     
>>>>
>>>>
>>>> 
>>>>     org.codehaus.mojo
>>>>     jaxws-maven-plugin
>>>>     1.7
>>>>     
>>>>         
>>>>             
>>>>                 wsgen
>>>>             
>>>>             
>>>>                 com.symcare.intouch.test.HelloWorld
>>>>                 true
>>>>                 true
>>>>             
>>>>         
>>>>     
>>>> 
>>>>
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24869452.html
>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>>> For additional commands, e-mail: users-h...@maven.apache.org
>>>
>>>
>>
>>
>>
>> --
>> Wes Wannemacher
>>
>> Head Engineer, WanTii, Inc.
>> Need Training? Struts, Spring, Maven, Tomcat...
>> Ask me for a quote!
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> For additional commands, e-mail: users-h...@maven.apache.org
>>
>>
>>
>
> --
> View this message in context: 
> http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24870509.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>



-- 
Wes Wannemacher

Head Engineer, WanTii, Inc.
Need Training? Struts, Spring, Maven, Tomcat...
Ask me for a quote!

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: jaxws-maven-plugin issues

2009-08-07 Thread monkeyden
          legacy
>>>         
>>>     
>>>
>>>
>>> 
>>>     org.codehaus.mojo
>>>     jaxws-maven-plugin
>>>     1.7
>>>     
>>>         
>>>             
>>>                 wsgen
>>>             
>>>             
>>>                 com.symcare.intouch.test.HelloWorld
>>>                 true
>>>                 true
>>>             
>>>         
>>>     
>>> 
>>>
>>
>> --
>> View this message in context:
>> http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24869452.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
>> For additional commands, e-mail: users-h...@maven.apache.org
>>
>>
> 
> 
> 
> -- 
> Wes Wannemacher
> 
> Head Engineer, WanTii, Inc.
> Need Training? Struts, Spring, Maven, Tomcat...
> Ask me for a quote!
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24870509.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: jaxws-maven-plugin issues

2009-08-07 Thread Stephen Connolly

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



   
   
   java.net - Dev
   https://maven-repository.dev.java.net/repository
   legacy
   
   
   
   java.net - Maven2
   http://download.java.net/maven/2
   legacy
   
   



   org.codehaus.mojo
   jaxws-maven-plugin
   1.7
   
   
   
   wsgen
   
   
   com.symcare.intouch.test.HelloWorld
   true
   true
   
   
   

--
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: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: jaxws-maven-plugin issues

2009-08-07 Thread Wes Wannemacher
Try attaching it to a phase that happens after compile, maybe process-classes -


 org.codehaus.mojo
 jaxws-maven-plugin
 1.7
 
 
 
 wsgen
 
 process-classes
 
 com.symcare.intouch.test.HelloWorld
 true
 true
 
 
 
 



On Fri, Aug 7, 2009 at 2:02 PM, monkeyden wrote:
>
> So now I'm getting this error, which I think is fixable.
>
> [INFO] [jaxws:wsgen {execution: default}]
> Class not found: "com.mycompany.intouch.test.HelloWorld"
>
> How do I go about running the compiler in a phase prior to the jaxws-plugin
> running, so the class is available for WS wiring?
>
>
> monkeyden 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
>>
>>
>> 
>>         
>>         
>>             java.net - Dev
>>             https://maven-repository.dev.java.net/repository
>>             legacy
>>         
>>         
>>         
>>             java.net - Maven2
>>             http://download.java.net/maven/2
>>             legacy
>>         
>>     
>>
>>
>> 
>>     org.codehaus.mojo
>>     jaxws-maven-plugin
>>     1.7
>>     
>>         
>>             
>>                 wsgen
>>             
>>             
>>                 com.symcare.intouch.test.HelloWorld
>>                 true
>>                 true
>>             
>>         
>>     
>> 
>>
>
> --
> View this message in context: 
> http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24869452.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
> For additional commands, e-mail: users-h...@maven.apache.org
>
>



-- 
Wes Wannemacher

Head Engineer, WanTii, Inc.
Need Training? Struts, Spring, Maven, Tomcat...
Ask me for a quote!

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: jaxws-maven-plugin issues

2009-08-07 Thread monkeyden

So now I'm getting this error, which I think is fixable.  

[INFO] [jaxws:wsgen {execution: default}]
Class not found: "com.mycompany.intouch.test.HelloWorld"

How do I go about running the compiler in a phase prior to the jaxws-plugin
running, so the class is available for WS wiring?


monkeyden 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
> 
> 
> 
> 
> 
> java.net - Dev
> https://maven-repository.dev.java.net/repository
> legacy
> 
> 
> 
> java.net - Maven2
> http://download.java.net/maven/2
> legacy
> 
> 
> 
> 
> 
> org.codehaus.mojo
> jaxws-maven-plugin
> 1.7
> 
> 
> 
> wsgen
> 
> 
> com.symcare.intouch.test.HelloWorld
>     true
>     true
> 
> 
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jaxws-maven-plugin-issues-tp24869071p24869452.html
Sent from the Maven - Users mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



jaxws-maven-plugin issues

2009-08-07 Thread monkeyden

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





java.net - Dev
https://maven-repository.dev.java.net/repository
legacy



java.net - Maven2
http://download.java.net/maven/2
legacy





org.codehaus.mojo
jaxws-maven-plugin
1.7



wsgen


com.symcare.intouch.test.HelloWorld
true
true




-- 
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: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org