You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by Glen Mazza <gl...@gmail.com> on 2008/01/24 18:08:27 UTC

Re: svn commit: r614092 - in /servicemix/smx3/trunk: common/servicemix-soap2/pom.xml deployables/serviceengines/servicemix-cxf-se/pom.xml pom.xml

Something seems wrong here. For XmlSchema.jar, sometimes you're adding this
groupId below:

<groupId>org.apache.ws.commons.schema</groupId>

and other times:

<groupId>org.apache.ws.commons</groupId>

I think the former is correct, no?

Regards,
Glen



bsnyder-2 wrote:
> 
> Author: bsnyder
> Date: Mon Jan 21 18:01:07 2008
> New Revision: 614092
> 
> URL: http://svn.apache.org/viewvc?rev=614092&view=rev
> Log:
> SM-1196 - XmlSchema version upgrade required for CXF components
> 
> Modified:
>     servicemix/smx3/trunk/common/servicemix-soap2/pom.xml
>    
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
>     servicemix/smx3/trunk/pom.xml
> 
> Modified: servicemix/smx3/trunk/common/servicemix-soap2/pom.xml
> URL:
> http://svn.apache.org/viewvc/servicemix/smx3/trunk/common/servicemix-soap2/pom.xml?rev=614092&r1=614091&r2=614092&view=diff
> ==============================================================================
> --- servicemix/smx3/trunk/common/servicemix-soap2/pom.xml (original)
> +++ servicemix/smx3/trunk/common/servicemix-soap2/pom.xml Mon Jan 21
> 18:01:07 2008
> @@ -69,9 +69,8 @@
>        <artifactId>xmlsec</artifactId>
>      </dependency>
>      <dependency>
> -                <groupId>org.apache.ws.commons.schema</groupId>
> -                <artifactId>XmlSchema</artifactId>
> -                <version>1.3.2</version>
> +      <groupId>org.apache.ws.commons.schema</groupId>
> +      <artifactId>XmlSchema</artifactId>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.woden</groupId>
> 
> Modified:
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> URL:
> http://svn.apache.org/viewvc/servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml?rev=614092&r1=614091&r2=614092&view=diff
> ==============================================================================
> ---
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> (original)
> +++
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> Mon Jan 21 18:01:07 2008
> @@ -49,7 +49,13 @@
>  		<dependency>
>  		    <groupId>org.apache.servicemix</groupId>
>  		    <artifactId>servicemix-shared</artifactId>
> -		</dependency>
> +            <exclusions>
> +              <exclusion>
> +                <groupId>org.apache.ws.commons</groupId>
> +                <artifactId>XmlSchema</artifactId>
> +              </exclusion>
> +            </exclusions>
> +        </dependency>
>                  <dependency>
>                      <groupId>wsdl4j</groupId>
>                      <artifactId>wsdl4j</artifactId>
> 
> Modified: servicemix/smx3/trunk/pom.xml
> URL:
> http://svn.apache.org/viewvc/servicemix/smx3/trunk/pom.xml?rev=614092&r1=614091&r2=614092&view=diff
> ==============================================================================
> --- servicemix/smx3/trunk/pom.xml (original)
> +++ servicemix/smx3/trunk/pom.xml Mon Jan 21 18:01:07 2008
> @@ -1930,6 +1930,10 @@
>                          <groupId>org.apache.ws.commons.axiom</groupId>
>                          <artifactId>axiom-impl</artifactId>
>                      </exclusion>
> +                    <exclusion>
> +                        <groupId>org.apache.ws.commons</groupId>
> +                        <artifactId>XmlSchema</artifactId>
> +                    </exclusion>
>                  </exclusions>
>              </dependency>
>          </dependencies>
> 
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/svn-commit%3A-r614092---in--servicemix-smx3-trunk%3A-common-servicemix-soap2-pom.xml-deployables-serviceengines-servicemix-cxf-se-pom.xml-pom.xml-tp15011105s12049p15069822.html
Sent from the ServiceMix - Dev mailing list archive at Nabble.com.


Re: svn commit: r614092 - in /servicemix/smx3/trunk: common/servicemix-soap2/pom.xml deployables/serviceengines/servicemix-cxf-se/pom.xml pom.xml

Posted by Guillaume Nodet <gn...@gmail.com>.
Yeah, you're right.

On Jan 24, 2008 6:08 PM, Glen Mazza <gl...@gmail.com> wrote:

>
> Something seems wrong here. For XmlSchema.jar, sometimes you're adding
> this
> groupId below:
>
> <groupId>org.apache.ws.commons.schema</groupId>
>
> and other times:
>
> <groupId>org.apache.ws.commons</groupId>
>
> I think the former is correct, no?
>
> Regards,
> Glen
>
>
>
> bsnyder-2 wrote:
> >
> > Author: bsnyder
> > Date: Mon Jan 21 18:01:07 2008
> > New Revision: 614092
> >
> > URL: http://svn.apache.org/viewvc?rev=614092&view=rev
> > Log:
> > SM-1196 - XmlSchema version upgrade required for CXF components
> >
> > Modified:
> >     servicemix/smx3/trunk/common/servicemix-soap2/pom.xml
> >
> >
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> >     servicemix/smx3/trunk/pom.xml
> >
> > Modified: servicemix/smx3/trunk/common/servicemix-soap2/pom.xml
> > URL:
> >
> http://svn.apache.org/viewvc/servicemix/smx3/trunk/common/servicemix-soap2/pom.xml?rev=614092&r1=614091&r2=614092&view=diff
> >
> ==============================================================================
> > --- servicemix/smx3/trunk/common/servicemix-soap2/pom.xml (original)
> > +++ servicemix/smx3/trunk/common/servicemix-soap2/pom.xml Mon Jan 21
> > 18:01:07 2008
> > @@ -69,9 +69,8 @@
> >        <artifactId>xmlsec</artifactId>
> >      </dependency>
> >      <dependency>
> > -                <groupId>org.apache.ws.commons.schema</groupId>
> > -                <artifactId>XmlSchema</artifactId>
> > -                <version>1.3.2</version>
> > +      <groupId>org.apache.ws.commons.schema</groupId>
> > +      <artifactId>XmlSchema</artifactId>
> >      </dependency>
> >      <dependency>
> >        <groupId>org.apache.woden</groupId>
> >
> > Modified:
> >
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> > URL:
> >
> http://svn.apache.org/viewvc/servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml?rev=614092&r1=614091&r2=614092&view=diff
> >
> ==============================================================================
> > ---
> >
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> > (original)
> > +++
> >
> servicemix/smx3/trunk/deployables/serviceengines/servicemix-cxf-se/pom.xml
> > Mon Jan 21 18:01:07 2008
> > @@ -49,7 +49,13 @@
> >               <dependency>
> >                   <groupId>org.apache.servicemix</groupId>
> >                   <artifactId>servicemix-shared</artifactId>
> > -             </dependency>
> > +            <exclusions>
> > +              <exclusion>
> > +                <groupId>org.apache.ws.commons</groupId>
> > +                <artifactId>XmlSchema</artifactId>
> > +              </exclusion>
> > +            </exclusions>
> > +        </dependency>
> >                  <dependency>
> >                      <groupId>wsdl4j</groupId>
> >                      <artifactId>wsdl4j</artifactId>
> >
> > Modified: servicemix/smx3/trunk/pom.xml
> > URL:
> >
> http://svn.apache.org/viewvc/servicemix/smx3/trunk/pom.xml?rev=614092&r1=614091&r2=614092&view=diff
> >
> ==============================================================================
> > --- servicemix/smx3/trunk/pom.xml (original)
> > +++ servicemix/smx3/trunk/pom.xml Mon Jan 21 18:01:07 2008
> > @@ -1930,6 +1930,10 @@
> >                          <groupId>org.apache.ws.commons.axiom</groupId>
> >                          <artifactId>axiom-impl</artifactId>
> >                      </exclusion>
> > +                    <exclusion>
> > +                        <groupId>org.apache.ws.commons</groupId>
> > +                        <artifactId>XmlSchema</artifactId>
> > +                    </exclusion>
> >                  </exclusions>
> >              </dependency>
> >          </dependencies>
> >
> >
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/svn-commit%3A-r614092---in--servicemix-smx3-trunk%3A-common-servicemix-soap2-pom.xml-deployables-serviceengines-servicemix-cxf-se-pom.xml-pom.xml-tp15011105s12049p15069822.html
> Sent from the ServiceMix - Dev mailing list archive at Nabble.com.
>
>


-- 
Cheers,
Guillaume Nodet
------------------------
Blog: http://gnodet.blogspot.com/

Re: svn commit: r614092 - in /servicemix/smx3/trunk: common/servicemix-soap2/pom.xml deployables/serviceengines/servicemix-cxf-se/pom.xml pom.xml

Posted by Bruce Snyder <br...@gmail.com>.
On Jan 24, 2008 10:08 AM, Glen Mazza <gl...@gmail.com> wrote:
>
> Something seems wrong here. For XmlSchema.jar, sometimes you're adding this
> groupId below:
>
> <groupId>org.apache.ws.commons.schema</groupId>
>
> and other times:
>
> <groupId>org.apache.ws.commons</groupId>

With the upgrades from CXF, we're changing to the latest version of
XmlSchema which is now org.apache.ws.commons.schema.

Bruce
-- 
perl -e 'print unpack("u30","D0G)U8V4\@4VYY9&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

Apache ActiveMQ - http://activemq.org/
Apache Camel - http://activemq.org/camel/
Apache ServiceMix - http://servicemix.org/
Apache Geronimo - http://geronimo.apache.org/

Blog: http://bruceblog.org/