From: Nick C. <ni...@ch...> - 2004-12-08 06:52:37
|
Mark Lundquist wrote: > > > On Dec 7, 2004, at 3:32 PM, Nick Chalko wrote: > > I do understand your issue. > > Perhaps I will take one of my old projects, and convert it to use > antlet+depot as an example > > > Thanks! > > Maybe this would help...: > > Q1 — Why doesn't the example build.xml you sent me download any jars? > That is what I use to bootstrap the updater It creates build-get-depot-update-jars.xml which uses normal ant to get the files. It is referenced from build.xml That is not the preferred way though > Q2 — What would I need to change to get a build.xml that would > download some jars? You need to use the "cached set" it is lazy loaded. Try adding this <target name="copy"> <copy todir="mytemp"> <fileset refid="depot-update.dependent.jars.fileset" /> </copy> </target> However there is a bug so it is failing and depot is closed so I have to move everything to Krysalis first. :-( R, Nick |