I only tried changing interface-java-jaxws as i haven't done a full build of
the src distro, just that module and the calculator sample.

   ...ant

On Tue, Apr 8, 2008 at 7:13 PM, Luciano Resende <[EMAIL PROTECTED]>
wrote:

> Just want to check the places where you had to make changes. Did you
> only changed the modules/interface-java-jaxws/pom.xml dependency or
> you had to change the other references to it as the patch below ?
> Anyway, I'm trying a build to also check the differences on the
> distribution lib directory.
>
>
> Index: itest/databindings/interop/pom.xml
> ===================================================================
> --- itest/databindings/interop/pom.xml  (revision 645758)
> +++ itest/databindings/interop/pom.xml  (working copy)
> @@ -189,7 +189,7 @@
>                                 <artifactItem>
>                                      <groupId>javax.xml.ws</groupId>
>                                     <artifactId>jaxws-api</artifactId>
> -                                    <version>2.1</version>
> +                                    <version>2.1-1</version>
>                                     <type>jar</type>
>                                 </artifactItem>
>                                 <artifactItem>
> Index: modules/interface-java-jaxws/pom.xml
> ===================================================================
> --- modules/interface-java-jaxws/pom.xml        (revision 645758)
> +++ modules/interface-java-jaxws/pom.xml        (working copy)
> @@ -52,11 +52,22 @@
>             <scope>test</scope>
>         </dependency>
>
> -        <dependency>
> -            <groupId>javax.xml.ws</groupId>
> -            <artifactId>jaxws-api</artifactId>
> -            <version>2.1</version>
> -        </dependency>
> +       <dependency>
> +           <groupId>javax.xml.ws</groupId>
> +           <artifactId>jaxws-api</artifactId>
> +           <version>2.1-1</version>
> +           <exclusions>
> +               <exclusion>
> +                   <groupId>javax.jws</groupId>
> +                   <artifactId>jsr181</artifactId>
> +               </exclusion>
> +           </exclusions>
> +       </dependency>
> +       <dependency>
> +           <groupId>javax.jws</groupId>
> +           <artifactId>jsr181-api</artifactId>
> +           <version>1.0-MR1</version>
> +       </dependency>
>
>      </dependencies>
>
> @@ -101,7 +112,7 @@
>                                 <artifactItem>
>                                      <groupId>javax.xml.ws</groupId>
>                                     <artifactId>jaxws-api</artifactId>
> -                                    <version>2.1</version>
> +                                    <version>2.1-1</version>
>                                     <type>jar</type>
>                                 </artifactItem>
>                                 <artifactItem>
>
>
>
> On Tue, Apr 8, 2008 at 9:17 AM, ant elder <[EMAIL PROTECTED]> wrote:
> > Adding that gave me a missing artifact for javax.jws:jsr181:jar:1.0,
> adding
> >  an exclude and explicit dependency looks like it fixes it:
> >
> >
> >         <dependency>
> >             <groupId>javax.xml.ws</groupId>
> >             <artifactId>jaxws-api</artifactId>
> >             <version>2.1-1</version>
> >             <exclusions>
> >                 <exclusion>
> >                     <groupId>javax.jws</groupId>
> >                     <artifactId>jsr181</artifactId>
> >                 </exclusion>
> >             </exclusions>
> >         </dependency>
> >         <dependency>
> >             <groupId>javax.jws</groupId>
> >             <artifactId>jsr181-api</artifactId>
> >             <version>1.0-MR1</version>
> >         </dependency>
> >
> >    ...ant
> >
> >
> >
> >  On Tue, Apr 8, 2008 at 3:43 PM, Raymond Feng <[EMAIL PROTECTED]>
> wrote:
> >
> >  > Hi, Ant.
> >  >
> >  > I think you hit the problem reported at
> >  > http://jira.codehaus.org/browse/MEV-573. You could delete the
> javax/xml/ws
> >  > folder from your local maven repo and try again. If you are lucky,
> you can
> >  > get the correct version from java.net repo.
> >  >
> >  > There is a workaround: Change the pom.xml to use version 2.1-1 for
> the
> >  > jaxws-api dependencies as follow.
> >  >
> >  > <dependency>
> >  >   <groupId>javax.xml.ws</groupId>
> >  >   <artifactId>jaxws-api</artifactId>
> >  >   <version>2.1-1</version>
> >  > </dependency>
> >  >
> >  > Thanks,
> >  > Raymond
> >  >
> >  > --------------------------------------------------
> >  > From: "ant elder" <[EMAIL PROTECTED]>
> >  > Sent: Tuesday, April 08, 2008 5:35 AM
> >  > To: <tuscany-dev@ws.apache.org>
> >  > Subject: Re: [SCA 1.2] RC3a
> >  >
> >  >  I've spent all morning reviewing this and its looking pretty good
> but
> >  > > i've
> >  > > just hit this NoClassDefFoundError when running the calculator
> sample
> >  > > with
> >  > > mvn from an empty local mvn repository:
> >  > >
> >  > > Running calculator.CalculatorTestCase
> >  > > Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed:
> 0.907
> >  > > sec
> >  > > <<< FAILURE!
> >  > > testCalculator(calculator.CalculatorTestCase)  Time elapsed: 0.875
> sec
> >  > > <<<
> >  > > ERROR!
> >  > > java.lang.NoClassDefFoundError: javax/jws/WebService
> >  > >       at
> >  > >
> >  > >
> org.apache.tuscany.sca.interfacedef.java.jaxws.JAXWSJavaInterfaceProcessor.visitInterface(JAXWSJavaInterfaceProcessor.java:70)
> >  > >
> >  > >  ...ant
> >  > >
> >  > > On Tue, Apr 8, 2008 at 8:43 AM, Luciano Resende <
> [EMAIL PROTECTED]>
> >  > > wrote:
> >  > >
> >  > >  The RC3a is now available in [1]. Please give it a quick try, and
> I'll
> >  > > > call a vote in the morning.
> >  > > >
> >  > > > [1] 
> > http://people.apache.org/~lresende/tuscany/sca-1.2-RC3a/<http://people.apache.org/%7Elresende/tuscany/sca-1.2-RC3a/>
> <http://people.apache.org/%7Elresende/tuscany/sca-1.2-RC3a/>
> >  > > > <http://people.apache.org/%7Elresende/tuscany/sca-1.2-RC3a/>
> >  > > >
> >  > > > --
> >  > > > Luciano Resende
> >  > > > Apache Tuscany Committer
> >  > > > 
> > http://people.apache.org/~lresende<http://people.apache.org/%7Elresende>
> <http://people.apache.org/%7Elresende><
> >  > > > http://people.apache.org/%7Elresende>
> >  > > > http://lresende.blogspot.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]
> >  >
> >  >
> >
>
>
>
> --
> Luciano Resende
> Apache Tuscany Committer
> http://people.apache.org/~lresende <http://people.apache.org/%7Elresende>
> http://lresende.blogspot.com/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to