Re: Using IVY programatically

2010-10-30 Thread shacoshe
who can i tell ivy what artifacts are currently install , and how to get dependencies by the new now can u provide an example please? -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3243439.html Sent from the Ant - Dev mailing list archive

Re: Using IVY programatically

2010-10-26 Thread shacoshe
why so complicated , is there some examples of this -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3237587.html Sent from the Ant - Dev mailing list archive at Nabble.com

Re: Using IVY programatically

2010-10-26 Thread Maarten Coene
You could use the Ivy ant tasks as an example. Maarten - Original Message From: shacoshe shay...@gmail.com To: dev@ant.apache.org Sent: Tue, October 26, 2010 8:37:15 PM Subject: Re: Using IVY programatically why so complicated , is there some examples of this -- View this message

Re: Using IVY programatically

2010-10-26 Thread shacoshe
ok ,what example where ? :) task with no xml ? -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3237836.html Sent from the Ant - Dev mailing list archive at Nabble.com

Re: Using IVY programatically

2010-10-26 Thread Maarten Coene
Sorry, I probably don't understand your question, but if you are looking for some example code for using Ivy programatically, you could take a look at how the Ivy Ant tasks are implemented. If that was not your question, please forgive me :-) Maarten - Original Message From

Re: Using IVY programatically

2010-10-26 Thread shacoshe
yes i want to use Ivy programatically can u direct me to where should i look. and why cant i do this with the provided example -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3237848.html Sent from the Ant - Dev mailing list archive

Re: Using IVY programatically

2010-10-25 Thread shacoshe
) - also before(using new IvySettings()) the resolve did not throw any exception but the retrive did throw same exception thank you -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3235878.html Sent from the Ant - Dev mailing list

Re: Using IVY programatically

2010-10-24 Thread Maarten Coene
not exists 'D:\programming\eclipse_projects\ivyTest\repo\cache\org.jtpc-movies-default.xml' thank you -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3233660.html Sent from the Ant - Dev mailing list archive at Nabble.com

Re: Using IVY programatically

2010-10-23 Thread shacoshe
why IVY is so complicated to use problematically , and way do you force me to use XML , why there is a lake of API for that , i can see why nobody helps / can help me -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3233346.html Sent from

Re: Using IVY programatically

2010-10-23 Thread Nicolas Lalevée
Le 23 oct. 2010 à 13:07, shacoshe a écrit : why IVY is so complicated to use problematically , nice slip-up ;) and way do you force me to use XML , why there is a lake of API for that , i can see why nobody helps / can help me Ivy is mainly designed to be used in Ant tasks, yes.

Re: Using IVY programatically

2010-10-23 Thread shacoshe
is looking for a file that dose not exists 'D:\programming\eclipse_projects\ivyTest\repo\cache\org.jtpc-movies-default.xml' thank you -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3233660.html Sent from the Ant - Dev mailing list archive

Re: Using IVY programatically

2010-10-21 Thread shacoshe
()); ivy.retrieve(md.getModuleRevisionId(), lib/[conf]/[artifact].[ext], retriveOptions); -- View this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3229246.html Sent from the Ant - Dev mailing list archive at Nabble.com

Re: Using IVY programatically

2010-10-19 Thread shacoshe
this message in context: http://ant.1045680.n5.nabble.com/Using-IVY-programatically-tp3204508p3218360.html Sent from the Ant - Dev mailing list archive at Nabble.com. - To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For additional

Using IVY programatically

2010-10-08 Thread shay te
to IVY ,and i notice only XML configuration tutorial am i at the right direction? can IVY help me completing my task? thank you -- View this message in context: http://old.nabble.com/Using-IVY-programatically-tp29914705p29914705.html Sent from the ivy-dev mailing list archive at Nabble.com

Re: Using IVY programatically

2010-10-08 Thread Antoine Levy-Lambert
Hello Shay, yes, ivy can be used programmatically. I think nearly all classes have public interfaces. here a snippet of a piece of code written on my project using ivy 2.1.x APIs (not sure if there is any change in 2.2.x) import org.apache.ivy.Ivy; import org.apache.ivy.Ivy.IvyCallback;

Re: Using IVY programatically

2010-10-08 Thread Maarten Coene
Levy-Lambert anto...@gmx.de To: Ant Developers List dev@ant.apache.org Sent: Fri, October 8, 2010 2:33:12 PM Subject: Re: Using IVY programatically Hello Shay, yes, ivy can be used programmatically. I think nearly all classes have public interfaces. here a snippet of a piece of code written on my