Re: ClassNotFoundException with maven and axis2 plugin

2007-09-28 Thread Kyle.Bober
Did you happen to resolve this issue??? I just started using htis plugin and ran into the same issue... here is my POM.xml WebSend-Application com.heartlab.ws 0.0.1 4.0.0 com.heartlab.ws WebSend-Axis2-Server-WebServices WebSend-Axis2-Server-WebServices 1.0-SNAPSHOT

Parent POM clean issue

2007-09-21 Thread Kyle.Bober
I have a parent pom that contains several children modules. In one of the child modules I have the following maven-clean-plugin configured: maven-clean-plugin Delete JAX-WS Generated Client Sources

Re: jaxws-maven-plugin Multiple SEI (Service Endpoint Implementations)

2007-09-20 Thread Kyle.Bober
s(DefaultLifecycleExecutor.java:539) ... 16 more Any ideas would be much appreciated! Thanks, Kyle Dan Tran wrote: > > use multiple s > > > > On 9/19/07, Kyle.Bober <[EMAIL PROTECTED]> wrote: >> >> Is there a way to execute the generation of mult

jaxws-maven-plugin Multiple SEI (Service Endpoint Implementations)

2007-09-19 Thread Kyle.Bober
Is there a way to execute the generation of multiple WSDL files using multiple jaxws-maven-plugin configurations via the jaxws-maven-plugin... I have yet to figure this out... Anyone out there have any success with this? -- View this message in context: http://www.nabble.com/jaxws-maven-plugin-

RE: jaxws-maven-plugin jaxws:wsgen - Could not find class file

2007-09-19 Thread Kyle.Bober
It seems the issue was that I had the following dependencies set to provided instead of compile... Here is what it should have been... javax.xml.bind jaxb-api 2.1.5 compile javax.jws jsr18

Re: jaxws-maven-plugin jaxws:wsgen - Could not find class file

2007-09-19 Thread Kyle.Bober
The fully qualified package name and class filename are 100% correct. I am wondering if it may have to do with the JAX-WS 2.1.1 version I am trying to use... This is really annoying... I even tried creating a new SimpleService with a single echo method that just returns a string and still no luck.

jaxws-maven-plugin jaxws:wsgen - Could not find class file

2007-09-18 Thread Kyle.Bober
I had the jaxws-maven-plugin working fine with a simple Java WebService... It worked fin up until an hour or so ago and I am not sure what I changed that caused the issue... Has anyone else seen this error before... It must be a something stupid simple that I am missing... The WebService runs fine

Re: annotations are not supported in -source 1.3

2007-09-17 Thread Kyle.Bober
On Thu, September 13, 2007 3:24 pm, Kyle.Bober wrote: > >> I have been using Maven for quite sometime and this is the first JDK6 >> project >> POM I have created. I am running into a compilation issue using the >> compiler:compile goal... This is what I get >> >>

Re: annotations are not supported in -source 1.3

2007-09-13 Thread Kyle.Bober
Thanks for all the help guys! In actuality all I needed to do was add the following: maven-compiler-plugin 1.6 1.6 Everything compiled fine after that... Lesson learned... -- View this message in context: http://www.na

annotations are not supported in -source 1.3

2007-09-13 Thread Kyle.Bober
I have been using Maven for quite sometime and this is the first JDK6 project POM I have created. I am running into a compilation issue using the compiler:compile goal... This is what I get annotations are not supported in -source 1.3 (use -source 5 or higher to enable annotations) @WebService I