> hammett wrote: > > Use the .properties file > > Ok, but that references a file "avalon- framework.jar". In the latest > Avalon distribution I have these: > > avalon-framework-4.1.5.jar > avalon-framework-api-4.1.5.jar > avalon-framework-impl-4.1.5.jar > > So, which one is the one Fortress needs?
The first one. But I think use the following as a pair should work too :-) > What does "ibiblio" mean? Have you ever used maven? ;-) http://www.ibiblio.org/maven/ > Am I doing something wrong? This process seems broken, is th ere an > alternative? Can I make the buildfile download all the relev ant libs > automatically? Easy, easy! Yes, this process is at least not updated. But is easy to fix, just understand the small build.xml. Also, in my version of Ant, I had to put the qdox-1.1.jar directly in Ant's \lib directory. As a recipe, use the following to build fortress samples: (My directory structure) apache\avalon \avalon-framework \avalon-framework-4.1.5.jar \excalibur-fortress-1.0 (Unziped contents) \commons-collections-2.1.jar \concurrent-1.3.1.jar \excalibur-event-1.0.3.jar \logkit-1.2.2.jar \qdox-1.1.jar \xalan-2.3.1.jar \xerces-2.0.1.jar \xml-apis-2.0.0.jar And my ant.properties: # ---------------------------------------------------- # B U I L D P R O P E R T I E S # ---------------------------------------------------- basepath=. # ----- Avalon Framework, version 4.1 or later ----- avalon-framework.home=${basepath}/lib avalon-framework.lib=${avalon-framework.home} avalon-framework.jar=${avalon-framework.lib}/avalon-framework- 4.1.5.jar # ----- Excalibur Fortress, version 1.0 or later ----- excalibur-fortress.home=${basepath}/lib excalibur-fortress.lib=${excalibur-fortress.home} excalibur-fortress.jar=${excalibur-fortress.lib}/excalibur- fortress-complete-1.0.jar excalibur-fortress-tools.jar=${excalibur- fortress.lib}/excalibur-fortress-tools-1.0.jar # ----- External JARS, version 1.0 or later ----- excalibur-event.home=${basepath}/lib excalibur-event.lib=${excalibur-event.home} util.concurrent.jar=${excalibur-event.lib}/concurrent- 1.3.1.jar commons-collections.jar=${excalibur-event.lib}/commons- collections-2.1.jar # ----- Logkit ----- logkit.home=${basepath}/lib logkit.lib=${logkit.home} logkit.jar=${logkit.lib}/logkit-1.2.2.jar # ----- Misc tools ----- tools.dir=${basepath}/lib xml-apis.jar=${tools.dir}/xml-apis.jar xalan.jar=${tools.dir}/xalan-2.3.1.jar xerces.jar=${tools.dir}/xerces-2.0.1.jar qdox.jar=${tools.dir}/qdox-1.1.jar # -------------------------------------------------- Hope this works! regards, hammett --- Acabe com aquelas janelinhas que pulam na sua tela. AntiPop-up UOL - � gr�tis! http://antipopup.uol.com.br --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
