You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cxf.apache.org by mjparme <mj...@west.com> on 2010/12/07 17:18:28 UTC

IVY and CXF

I am developing a webservice client, through a little bit of trial and error
I discovered I only need three jars to successfully hit the service (server
side was also developed using CXF).

I only need:

cxf-2.2.10.jar
wsdl4j-1.6.2.jar
XmlSchema-1.4.5.jar

Is there a way to just get the cxf-2.2.10.jar via Ivy? (I can get the other
two by themselves already). This is a desktop application deployed via Java
Web Start so I don't want to have my users download any unneeded jars.



-- 
View this message in context: http://cxf.547215.n5.nabble.com/IVY-and-CXF-tp3296025p3296025.html
Sent from the cxf-user mailing list archive at Nabble.com.

RE: IVY and CXF

Posted by Gary Gregory <GG...@seagullsoftware.com>.
Why not use the current version of CXF, 2.3.x?

Gary 

> -----Original Message-----
> From: mjparme [mailto:mjparmeley@west.com]
> Sent: Tuesday, December 07, 2010 11:33
> To: users@cxf.apache.org
> Subject: Re: IVY and CXF
> 
> 
> Of course, I figured it out on my own after asking for help, this gives me
> what I need:
> 
> <dependency org="org.apache.cxf" name="cxf-bundle-minimal" rev="2.2.10"
> transitive="false"/>
> <dependency org="wsdl4j" name="wsdl4j" rev="1.6.2" transitive="false"/>
> <dependency org="org.apache.ws.commons.schema" name="XmlSchema" rev="1.4.5"
> transitive="false"/>
> --
> View this message in context: http://cxf.547215.n5.nabble.com/IVY-and-CXF-
> tp3296025p3296045.html
> Sent from the cxf-user mailing list archive at Nabble.com.

Re: IVY and CXF

Posted by mjparme <mj...@west.com>.
Of course, I figured it out on my own after asking for help, this gives me
what I need:

<dependency org="org.apache.cxf" name="cxf-bundle-minimal" rev="2.2.10"
transitive="false"/>
<dependency org="wsdl4j" name="wsdl4j" rev="1.6.2" transitive="false"/>
<dependency org="org.apache.ws.commons.schema" name="XmlSchema" rev="1.4.5"
transitive="false"/>
-- 
View this message in context: http://cxf.547215.n5.nabble.com/IVY-and-CXF-tp3296025p3296045.html
Sent from the cxf-user mailing list archive at Nabble.com.