You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 210 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Ant</title>
  5. </head>
  6. <body>
  7. <h1>Ant User Manual</h1>
  8. <p>by</p>
  9. <!-- Names are in alphabetical order, on last name -->
  10. <ul>
  11. <li>Jacques Bergeron (<a href="mailto:jacques.bergeron@dogico.com">jacques.bergeron@dogico.com</a>)</li>
  12. <li>Stefan Bodewig (<a href="mailto:stefan.bodewig@epost.de">stefan.bodewig@epost.de</a>)</li>
  13. <li>Patrick Chanezon (<a href="mailto:chanezon@netscape.com">chanezon@netscape.com</a>)</li>
  14. <li>James Duncan Davison (<a href="mailto:duncan@x180.com">duncan@x180.com</a>)</li>
  15. <li>Tom Dimock (<a href="mailto:tad1@cornell.edu">tad1@cornell.edu</a>)</li>
  16. <li>Bill Kelly (<a href="mailto:bill.kelly@softwired-inc.com">bill.kelly@softwired-inc.com</a>)</li>
  17. <li>Arnout J. Kuiper (<a href="mailto:ajkuiper@wxs.nl">ajkuiper@wxs.nl</a>)</li>
  18. <li>Conor MacNeill (<a href="mailto:conor@cortexebusiness.com.au">conor@cortexebusiness.com.au</a>)</li>
  19. <li>Stefano Mazzocchi (<a href="mailto:stefano@apache.org">stefano@apache.org</a>)</li>
  20. <li>Sam Ruby (<a href="mailto:rubys@us.ibm.com">rubys@us.ibm.com</a>)</li>
  21. <li>Nico Seessle (<a href="mailto:nico@seessle.de">nico@seessle.de</a>)</li>
  22. <li>Roger Vaughn (<a href="mailto:rvaughn@seaconinc.com">rvaughn@seaconinc.com</a>)</li>
  23. <li>Dave Walend (<a href="mailto:dwalend@cs.tufts.edu">dwalend@cs.tufts.edu</a>)</li>
  24. </ul>
  25. <p>Version 1.2 - 2000/09/27</p>
  26. <hr>
  27. <h2>Table of Contents</h2>
  28. <ul>
  29. <li><a href="#introduction">Introduction</a></li>
  30. <li><a href="#getting">Getting Ant</a></li>
  31. <li><a href="#sysrequirements">System Requirements</a></li>
  32. <li><a href="#buildingant">Building Ant</a></li>
  33. <li><a href="#installing">Installing Ant</a></li>
  34. <li><a href="#running">Running Ant</a></li>
  35. <li><a href="#buildfile">Writing a simple buildfile</a>
  36. <li><a href="#directorybasedtasks">Directory based tasks</a></li>
  37. <li><a href="#tasks">Built in Tasks</a>
  38. <li><a href="#optionaltasks">Optional Tasks</a>
  39. <li><a href="#buildevents">Build Events</a>
  40. <li><a href="#writingowntask">Writing your own task</a></li>
  41. <li><a href="#faq">FAQ, DTD, external resources</a>
  42. <li><a href="../LICENSE">License</a></li>
  43. <li><a href="#feedback">Feedback</a></li>
  44. </ul>
  45. <hr>
  46. <h2><a name="introduction">Introduction</a></h2>
  47. <p>Ant is a Java based build tool. In theory it is kind of like make without
  48. make's wrinkles.</p>
  49. <h3>Why?</h3>
  50. <p>Why another build tool when there is already make, gnumake, nmake, jam, and
  51. others? Because all of those tools have limitations that its original author
  52. couldn't live with when developing software across multiple platforms. Make like
  53. tools are inherently shell based. They evaluate a set of dependencies and then
  54. execute commands not unlike what you would issue on a shell. This means that you
  55. can easily extend these tools by using or writing any program for the OS that
  56. you are working on. However, this also means that you limit yourself to the OS,
  57. or at least the OS type such as Unix, that you are working on.</p>
  58. <p>Makefiles are inherently evil as well. Anybody who has worked on them for any
  59. time has run into the dreaded tab problem. &quot;Is my command not executing
  60. because I have a space in front of my tab!!!&quot; said the original author of
  61. Ant way too many times. Tools like Jam took care of this to a great degree, but
  62. still use yet another format to use and remember.</p>
  63. <p>Ant is different. Instead a model where it is extended with shell based
  64. commands, it is extended using Java classes. Instead of writing shell commands,
  65. the configuration files are XML based calling out a target tree where various
  66. tasks get executed. Each task is run by an object which implements a particular
  67. Task interface.</p>
  68. <p>Granted, this removes some of the expressive power that is inherent by being
  69. able to construct a shell command such as `find . -name foo -exec rm {}` but it
  70. gives you the ability to be cross platform. To work anywhere and everywhere. And
  71. hey, if you really need to execute a shell command, Ant has an exec rule that
  72. allows different commands to be executed based on the OS that it is executing
  73. on.</p>
  74. <hr>
  75. <h2><a name="getting">Getting Ant</a></h2>
  76. <h3>Binary edition</h3>
  77. <p>The latest stable version of Ant can be downloaded from <a
  78. href="http://jakarta.apache.org/builds/ant/release/v1.1/bin/">
  79. http://jakarta.apache.org/builds/ant/release/v1.1/bin/</a>.
  80. If you like living on the edge, you can download the latest version from <a
  81. href="http://jakarta.apache.org/builds/ant/nightly/">http://jakarta.apache.org/builds/ant/nightly/</a>.</p>
  82. <h3>Source edition</h3>
  83. <p>If you prefer the source edition, you can download Ant from <a
  84. href="http://jakarta.apache.org/builds/ant/release/v1.1/src/">
  85. http://jakarta.apache.org/builds/ant/release/v1.1/src/</a>
  86. (latest stable) or from <a
  87. href="http://jakarta.apache.org/from-cvs/jakarta-tools/">http://jakarta.apache.org/from-cvs/jakarta-ant/</a>
  88. (current). See the section <a href="#buildingant">Building Ant</a> on how to
  89. build Ant from the source code.</p>
  90. <hr>
  91. <h2><a name="sysrequirements">System Requirements</a></h2>
  92. <p>
  93. To build and use ant you must have a JAXP compliant XML parser installed and available on your classpath.
  94. <p>
  95. If you do not have a JAXP compliant XML parse installed, you may use the reference implementation
  96. available from Sun. It is available from <a href="http://java.sun.com/xml">http://java.sun.com/xml</a>.
  97. Once installed make sure the &quot;jaxp.jar&quot; and &quot;parser.jar&quot; files are in your classpath.
  98. <p>
  99. You will also need the JDK installed on your system, version 1.1 or later.
  100. <hr>
  101. <h2><a name="buildingant">Building Ant</a></h2>
  102. <p>Go to the directory <code>jakarta-ant</code>.</p>
  103. <p>Make sure the JDK is in you path.</p>
  104. <p>Set the JAVA_HOME environment variable. This should be set to the
  105. directory where the JDK is installed. See <a href="#installing">Installing Ant</a>
  106. for examples on how to do this for your operating system.</p>
  107. <p>Run <code>bootstrap.bat</code> (Windows) or <code>bootstrap.sh</code> (UNIX)
  108. to build a bootstrap version of Ant.</p>
  109. <p>When finished, use</p>
  110. <blockquote>
  111. <p><code>build.bat -Dant.dist.dir=&lt;directory to install Ant&gt; dist</code></p>
  112. </blockquote>
  113. <p>for Windows, and</p>
  114. <blockquote>
  115. <p><code>build.sh -Dant.dist.dir=&lt;directory to install Ant&gt; dist</code></p>
  116. </blockquote>
  117. <p>for UNIX, to create a binary distribution of Ant. This distribution can be
  118. found in the directory you specified.</p>
  119. <hr>
  120. <h2><a name="installing">Installing Ant</a></h2>
  121. <p>The binary distribution of Ant consists of three directories: <code>bin</code>,
  122. <code>docs</code> and <code>lib</code>. Only the <code>bin</code> and <code>lib</code>
  123. directory are crucial for running Ant. To run Ant, the following must be done:</p>
  124. <ul>
  125. <li>Add the <code>bin</code> directory to your path.</li>
  126. <li>Set the ANT_HOME environment variable. This should be set to the directory
  127. which contains the <code>bin</code> and <code>lib</code> directory.</li>
  128. <li>Set the JAVA_HOME environment variable. This should be set to the
  129. directory where the JDK is installed.</li>
  130. </ul>
  131. <h3>Windows</h3>
  132. <p>Assume Ant is installed in <code>c:\ant\</code>. The following sets up the
  133. environment:</p>
  134. <pre>set ANT_HOME=c:\ant
  135. set JAVA_HOME=c:\jdk1.2.2
  136. set PATH=%PATH%;%ANT_HOME%\bin</pre>
  137. <h3>Unix (bash)</h3>
  138. <p>Assume Ant is installed in <code>/usr/local/ant</code>. The following sets up
  139. the environment:</p>
  140. <pre>export ANT_HOME=/usr/local/ant
  141. export JAVA_HOME=/usr/local/jdk-1.2.2
  142. export PATH=${PATH}:${ANT_HOME}/bin</pre>
  143. <h3>Advanced</h3>
  144. <p>There are lots of variants that can be used to run Ant. What you need is at
  145. least the following:</p>
  146. <p>The classpath for Ant must contain <code>ant.jar</code> and any jars/classes
  147. needed for your chosen JAXP compliant XML parser.</p>
  148. <p>When you need JDK functionality (like a <a href="#javac">javac</a> task, or a
  149. <a href="#rmic">rmic</a> task), then for JDK 1.1, the <code>classes.zip</code>
  150. file of the JDK must be added to the classpath; for JDK 1.2 or JDK 1.3, <code>tools.jar</code>
  151. must be added. The scripts supplied with ant, in the bin directory, will add
  152. <code>tools.jar</code> automatically if the JAVA_HOME environment variable is set.</p>
  153. <p>When you are executing platform specific applications (like the <a
  154. href="#exec">exec</a> task, or the <a href="#cvs">cvs</a> task), the property <code>ant.home</code>
  155. must be set to the directory containing a bin directory, which contains the <code>antRun</code>
  156. shell script necessary to run execs on Unix.</p>
  157. <hr>
  158. <h2><a name="running">Running Ant</a></h2>
  159. <p>Running Ant is simple, when you installed it as described in the previous
  160. section. Just type <code>ant</code>.</p>
  161. <p>When nothing is specified, Ant looks for a <code>build.xml</code>
  162. file in the current directory. When found, it uses that file as a
  163. buildfile, otherwise it searches in the parent directory and so on
  164. until the root of the filesystem has been reached. To make Ant use
  165. another buildfile, use the commandline option <i>-buildfile
  166. &lt;file&gt;</i>, where <i>&lt;file&gt;</i> is the buildfile you want
  167. to use.</p>
  168. <p>You can also set properties which override properties specified in the
  169. buildfile (see the <a href="#property">property task</a>).
  170. This can be done with the <i>-D&lt;property&gt;=&lt;value&gt;</i>
  171. option, where <i>&lt;property&gt;</i> is the name of the property and <i>&lt;value&gt;</i>
  172. the value. This can also be used (and is the only way since Java can not access them)
  173. to have access to your environment variables, just pass -DMYVAR=%MYVAR% (Windows) or
  174. -DMYVAR=$MYVAR (Unix) to Ant, you can then access these variables inside your build-file
  175. as ${MYVAR}.</p>
  176. <p>Two more options are <i>-quiet</i> which instructs Ant to print less
  177. information on the console when running. The option <i>-verbose</i> on the other
  178. hand makes Ant print more information on the console.</p>
  179. <p>It is also possible to specify one or more targets that should be executed. When omitted the target that is mentioned in the <i>default</i> attribute of the project is
  180. used.</p>
  181. <p>The <i>-projecthelp</i> option gives a list of this projects targets. First those with a description and then those without one.</p>
  182. <p>Commandline option summary:</p>
  183. <pre>ant [options] [target [target2 [target3] ...]]
  184. Options:
  185. -help print this message
  186. -projecthelp print project help information
  187. -version print the version information and exit
  188. -quiet be extra quiet
  189. -verbose be extra verbose
  190. -debug print debugging information
  191. -emacs produce logging information without adornments
  192. -logfile &lt;file&gt; use given file for log
  193. -logger &lt;classname&gt; the class which is to perform logging
  194. -listener &lt;classname&gt; add an instance of class as a project listener
  195. -buildfile &lt;file&gt; use given buildfile
  196. -D&lt;property&gt;=&lt;value&gt; use value for given property</pre>
  197. <h3>Examples</h3>
  198. <blockquote>
  199. <pre>ant</pre>
  200. </blockquote>
  201. <p>runs Ant using the <code>build.xml</code> file in the current directory, on
  202. the default target.</p>
  203. <blockquote>
  204. <pre>ant -buildfile test.xml</pre>
  205. </blockquote>
  206. <p>runs Ant using the <code>test.xml</code> file in the current directory, on
  207. the default target.</p>
  208. <blockquote>
  209. <pre>ant -buildfile test.xml dist</pre>
  210. </blockquote>
  211. <p>runs Ant using the <code>test.xml</code> file in the current directory, on a
  212. target called <code>dist</code>.</p>
  213. <blockquote>
  214. <pre>ant -buildfile test.xml -Dbuild=build/classes dist</pre>
  215. </blockquote>
  216. <p>runs Ant using the <code>test.xml</code> file in the current directory, on a
  217. target called <code>dist</code>. It also sets the <i>build</i> property to the
  218. value <i>build/classes</i>.</p>
  219. <h3>Running Ant by hand</h3>
  220. <p>When you have installed Ant in the do-it-yourself way, Ant can be started
  221. with:</p>
  222. <blockquote>
  223. <pre>java -Dant.home=c:\ant org.apache.tools.ant.Main [options] [target]</pre>
  224. </blockquote>
  225. <p>These instructions actually do exactly the same as the <code>ant</code>
  226. command. The options and target are the same as when running Ant with the <code>ant</code>
  227. command. This example assumes you have set up your classpath to include
  228. <ul>
  229. <li>ant.jar
  230. <li>jars/classes for your XML parser
  231. <li>the JDK's tools.jar
  232. </ul>
  233. <hr>
  234. <h2><a name="buildfile">Writing a simple buildfile</a></h2>
  235. <p>The buildfile is written in XML. Each buildfile contains one project.</p>
  236. <p>Each element of the buildfile can have an <code>id</code> attribute and
  237. can later be referred to by the value supplied to this. The value has
  238. to be unique.</p>
  239. <h3>Projects</h3>
  240. <p>A project has three attributes:</p>
  241. <table border="1" cellpadding="2" cellspacing="0">
  242. <tr>
  243. <td valign="top"><b>Attribute</b></td>
  244. <td valign="top"><b>Description</b></td>
  245. <td align="center" valign="top"><b>Required</b></td>
  246. </tr>
  247. <tr>
  248. <td valign="top">name</td>
  249. <td valign="top">the name of the target.</td>
  250. <td align="center" valign="top">Yes</td>
  251. </tr>
  252. <tr>
  253. <td valign="top">default</td>
  254. <td valign="top">the default target to use when no target is supplied.</td>
  255. <td align="center" valign="top">Yes</td>
  256. </tr>
  257. <tr>
  258. <td valign="top">basedir</td>
  259. <td valign="top">the base directory from which all path calculations are
  260. done. This attribute might be overridden by setting the &quot;basedir&quot;
  261. property on forehand. When this is done, it might be omitted in the
  262. project tag.</td>
  263. <td align="center" valign="top">Yes</td>
  264. </tr>
  265. </table>
  266. <p>Each project defines one or more targets. A target is a set of tasks you want
  267. to be executed. When starting Ant, you can select which target you want to have
  268. executed. When no target is given, the project's default is used.</p>
  269. <h3>Targets</h3>
  270. <p>A target can depend on other targets. You might have a target for compiling,
  271. for instance, and a target for creating a distributable. You can only build a
  272. distributable when you have compiled first, so the distribute target depends on
  273. the compile target. Ant resolves all these dependencies.</p>
  274. <p>Ant tries to execute the targets in the <i>depends</i> attribute in the order
  275. they appear (from left to right). Keep in mind that it is possible that a target
  276. can get executed earlier when an earlier target depends on it:</p>
  277. <blockquote>
  278. <pre>&lt;target name=&quot;A&quot;/&gt;
  279. &lt;target name=&quot;B&quot; depends=&quot;A&quot;/&gt;
  280. &lt;target name=&quot;C&quot; depends=&quot;B&quot;/&gt;
  281. &lt;target name=&quot;D&quot; depends=&quot;C,B,A&quot;/&gt;</pre>
  282. </blockquote>
  283. <p>Suppose we want to execute target D. From its <i>depends</i> attribute, you
  284. might think that first target C, then B and then A is executed. Wrong! C depends
  285. on B, and B depends on A, so first A is executed, then B, then C, and finally D.</p>
  286. <p>A target gets executed only once. Even when more targets depend on it (see
  287. the previous example).</p>
  288. <p>A target has also the ability to perform its execution if (or
  289. unless) a property has been set. This allows, for example, better
  290. control on the building process depending on the state of the system
  291. (java version, OS, command line properties, etc...). To make target
  292. <i>sense</i> this property you should add the <i>if</i> (or
  293. <i>unless</i>) attribute with the name of the property that the target
  294. should react to, for example</p>
  295. <blockquote>
  296. <pre>&lt;target name=&quot;build-module-A&quot; if=&quot;module-A-present&quot;/&gt;</pre>
  297. <pre>&lt;target name=&quot;build-own-fake-module-A&quot; unless=&quot;module-A-present&quot;/&gt;</pre>
  298. </blockquote>
  299. <p>If no <i>if</i> and no <i>unless</i> attribute is present, the target will
  300. always be executed.</p>
  301. <p>It is a good practice to place your <a
  302. href="#tstamp">tstamp</a> tasks in a so called initialization target, on which
  303. all other targets depend. Make sure that target is always the first one in
  304. the depends list of the other targets. In this manual, most initialization targets
  305. have the name &quot;init&quot;.</p>
  306. <p>The optional <i>description</i> attribute can be used to provide a one line description of this target that is printed by the <i>-projecthelp</i> commandline option.</p>
  307. <p>A target has the following attributes:</p>
  308. <table border="1" cellpadding="2" cellspacing="0">
  309. <tr>
  310. <td valign="top"><b>Attribute</b></td>
  311. <td valign="top"><b>Description</b></td>
  312. <td align="center" valign="top"><b>Required</b></td>
  313. </tr>
  314. <tr>
  315. <td valign="top">name</td>
  316. <td valign="top">the name of the target.</td>
  317. <td align="center" valign="top">Yes</td>
  318. </tr>
  319. <tr>
  320. <td valign="top">depends</td>
  321. <td valign="top">a comma separated list of names of targets on which this
  322. target depends.</td>
  323. <td align="center" valign="top">No</td>
  324. </tr>
  325. <tr>
  326. <td valign="top">if</td>
  327. <td valign="top">the name of the property that must be set in order for this
  328. target to execute.</td>
  329. <td align="center" valign="top">No</td>
  330. </tr>
  331. <tr>
  332. <td valign="top">unless</td>
  333. <td valign="top">the name of the property that must not be set in order
  334. for this target to execute.</td>
  335. <td align="center" valign="top">No</td>
  336. </tr>
  337. <tr>
  338. <td valign="top">description</td>
  339. <td valign="top">a short description of this targets function.</td>
  340. <td align="center" valign="top">No</td>
  341. </tr>
  342. </table>
  343. <h3>Tasks</h3>
  344. <p>A task is a piece of code that can be executed.</p>
  345. <p>A task can have multiple attributes (or arguments if you prefer). The value
  346. of an attribute might contain references to a property. These references will be
  347. resolved before the task is executed.</p>
  348. <p>Tasks have a common structure:</p>
  349. <blockquote>
  350. <pre>&lt;name attribute1=&quot;value1&quot; attribute2=&quot;value2&quot; ... /&gt;</pre>
  351. </blockquote>
  352. <p>where name is the name of the task, attribute-x the attribute name, and
  353. value-x the value of this attribute.</p>
  354. <p>There is a set of <a href="#tasks">built in tasks</a>, but it is also very
  355. easy to <a href="#writingowntask">write your own</a>.</p>
  356. <p>All tasks share a <code>taskname</code> attribute. The value of
  357. this attribute will be used in the logging messages generated by
  358. Ant.</p>
  359. <h3>Properties</h3>
  360. <p>A project can have a set of properties. These might be set in the buildfile
  361. by the <a href="#property">property task</a>, or might be set outside Ant. A
  362. property has a name and a value. Properties might be used in in the value of
  363. task attributes. This is done by placing the property name between
  364. &quot;${&quot; and &quot;}&quot; in the attribute value.</p>
  365. <p>If there is a property called &quot;builddir&quot; with the value
  366. &quot;build&quot;, then this could be used in an attribute like this: &quot;${builddir}/classes&quot;.
  367. This is resolved as &quot;build/classes&quot;.</p>
  368. <h3>Example</h3>
  369. <blockquote>
  370. <pre>
  371. &lt;project name=&quot;MyProject&quot; default=&quot;dist&quot; basedir=&quot;.&quot;&gt;
  372. &lt;!-- set global properties for this build --&gt;
  373. &lt;property name=&quot;src&quot; value=&quot;.&quot; /&gt;
  374. &lt;property name=&quot;build&quot; value=&quot;build&quot; /&gt;
  375. &lt;property name=&quot;dist&quot; value=&quot;dist&quot; /&gt;
  376. &lt;target name=&quot;prepare&quot;&gt;
  377. &lt;!-- Create the time stamp --&gt;
  378. &lt;tstamp/&gt;
  379. &lt;!-- Create the build directory structure used by compile --&gt;
  380. &lt;mkdir dir=&quot;${build}&quot; /&gt;
  381. &lt;/target&gt;
  382. &lt;target name=&quot;compile&quot; depends=&quot;prepare&quot;&gt;
  383. &lt;!-- Compile the java code from ${src} into ${build} --&gt;
  384. &lt;javac srcdir=&quot;${src}&quot; destdir=&quot;${build}&quot; /&gt;
  385. &lt;/target&gt;
  386. &lt;target name=&quot;dist&quot; depends=&quot;compile&quot;&gt;
  387. &lt;!-- Create the ${dist}/lib directory --&gt;
  388. &lt;mkdir dir=&quot;${dist}/lib&quot; /&gt;
  389. &lt;!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file --&gt;
  390. &lt;jar jarfile=&quot;${dist}/lib/MyProject-${DSTAMP}.jar&quot; basedir=&quot;${build}&quot; /&gt;
  391. &lt;/target&gt;
  392. &lt;target name=&quot;clean&quot;&gt;
  393. &lt;!-- Delete the ${build} and ${dist} directory trees --&gt;
  394. &lt;deltree dir=&quot;${build}&quot; /&gt;
  395. &lt;deltree dir=&quot;${dist}&quot; /&gt;
  396. &lt;/target&gt;
  397. &lt;/project&gt;
  398. </pre>
  399. </blockquote>
  400. <h3>Token Filters</h3>
  401. <p>A project can have a set of tokens that might be automatically expanded if
  402. found when a file is copied, when the filtering-copy behavior is selected in the
  403. tasks that support this. These might be set in the buildfile
  404. by the <a href="#filter">filter task</a>.&nbsp;</p>
  405. <p>Since this can be a very harmful behavior, the tokens in the files <b>must</b>
  406. be of the form<i> @token@</i> where <i>token</i> is the token name that is set
  407. in the filter task. This token syntax matches the syntax of other build systems
  408. that perform such filtering and remains sufficiently orthogonal to most
  409. programming and scripting languages, as well with documentation systems.</p>
  410. <p>Note: in case a token with the format @token@ is found in a file but no
  411. filter is associated with that token, no changes take place. So, no escaping
  412. method is present, but as long as you choose appropriate names for your tokens,
  413. this should not cause problems.</p>
  414. <h3><a name="path">PATH like structures</a></h3>
  415. <p>You can specify PATH and CLASSPATH variables using both
  416. &quot;:&quot; and &quot;;&quot; as separator characters, Ant will
  417. convert it to the correct character of the current operating
  418. system.</p>
  419. <p>Wherever PATH like values need to be specified a nested element can
  420. be used. This takes the general form of</p>
  421. <pre>
  422. &lt;classpath&gt;
  423. &lt;pathelement path=&quot;${classpath}&quot; /&gt;
  424. &lt;pathelement location=&quot;lib/helper.jar&quot; /&gt;
  425. &lt;/classpath&gt;
  426. </pre>
  427. <p>The <code>location</code> attribute specifies a single file or
  428. directory relative to the project's base directory (or an absolute
  429. filename), while the <code>path</code> attribute accepts &quot;:&quot;
  430. or &quot;;&quot; separated lists of locations. The <code>path</code>
  431. attribute is intended to be used with predefined paths - in any other
  432. case multiple elements with <code>location</code> attributes should be
  433. preferred.</p>
  434. <p>As a shortcut the surrounding PATH element supports path and
  435. location attributes of its own, so</p>
  436. <pre>
  437. &lt;classpath&gt;
  438. &lt;pathelement path=&quot;${classpath}&quot; /&gt;
  439. &lt;/classpath&gt;
  440. </pre>
  441. <p>can be abreviated to</p>
  442. <pre>
  443. &lt;classpath path=&quot;${classpath}&quot; /&gt;
  444. </pre>
  445. <p>In addition, <a href="#fileset">FileSet</a>s can be specified via
  446. nested <code>&lt;fileset&gt;</code> elements. The order in which the files
  447. building up FileSet are added to the PATH like structure is not
  448. defined.</p>
  449. <pre>
  450. &lt;classpath&gt;
  451. &lt;pathelement path=&quot;${classpath}&quot; /&gt;
  452. &lt;fileset dir=&quot;lib&quot;&gt;
  453. &lt;include name=&quot;**/*.jar&quot; /&gt;
  454. &lt;/fileset;&gt;
  455. &lt;pathelement location=&quot;classes&quot; /&gt;
  456. &lt;/classpath&gt;
  457. </pre>
  458. <p>Builds a PATH which holds the value of <code>${classpath}</code>
  459. followed by all JAR files in the <code>lib</code> directory, followed
  460. by the <code>classes</code> directory.</p>
  461. <p>If you want to use the same PATH like structure for several tasks,
  462. you can define them with a <code>&lt;path&gt;</code> element at the
  463. same level as <em>target</em>s and reference them via their
  464. <em>id</em> attribute - see <a href="#references">References</a> for an
  465. example.</p>
  466. <p>A PATH like structure can include a reference to another PATH like
  467. structure via a nested <code>&lt;path&gt;</code> elements.</p>
  468. <pre>
  469. &lt;path id=&quot;base.path&quot;&gt;
  470. &lt;pathelement path=&quot;${classpath}&quot; /&gt;
  471. &lt;fileset dir=&quot;lib&quot;&gt;
  472. &lt;include name=&quot;**/*.jar&quot; /&gt;
  473. &lt;/fileset;&gt;
  474. &lt;pathelement location=&quot;classes&quot; /&gt;
  475. &lt;/path&gt;
  476. &lt;path id=&quot;tests.path&quot;&gt;
  477. &lt;path refid=&quot;base.path&quot; /&gt;
  478. &lt;pathelement location=&quot;testclasses&quot; /&gt;
  479. &lt;/path&gt;
  480. </pre>
  481. <h3><a name="arg">Command line arguments</a></h3>
  482. <p>Several tasks take arguments that shall be passed to another
  483. process on the command line. To make it easier to specify arguments
  484. that contain space characters, nested elements can be used.</p>
  485. <table border="1" cellpadding="2" cellspacing="0">
  486. <tr>
  487. <td width="12%" valign="top"><b>Attribute</b></td>
  488. <td width="78%" valign="top"><b>Description</b></td>
  489. <td width="10%" valign="top"><b>Required</b></td>
  490. </tr>
  491. <tr>
  492. <td valign="top">value</td>
  493. <td valign="top">a single command line argument, can contain space
  494. characters.</td>
  495. <td align="center" rowspan="4">Exactly one of these.</td>
  496. </tr>
  497. <tr>
  498. <td valign="top">line</td>
  499. <td valign="top">a space delimited list of command line arguments.</td>
  500. </tr>
  501. <tr>
  502. <td valign="top">file</td>
  503. <td valign="top">The name of a file as a single command line
  504. argument. Will be replaced with the absolute filename of the file
  505. by Ant.</td>
  506. </tr>
  507. <tr>
  508. <td valign="top">path</td>
  509. <td valign="top">A string that shall be treated as a PATH like
  510. string as a single command line argument. You can use ; or : as
  511. path separators and Ant will convert it to the platform's local
  512. conventions.</td>
  513. </tr>
  514. </table>
  515. <h4>Examples</h4>
  516. <blockquote><pre>
  517. &lt;arg value=&quot;-l -a&quot; /&gt;
  518. </pre></blockquote>
  519. <p>is a single command line argument containing a space character.</p>
  520. <blockquote><pre>
  521. &lt;arg line=&quot;-l -a&quot; /&gt;
  522. </pre></blockquote>
  523. <p>stands for two separate command line arguments.</p>
  524. <blockquote><pre>
  525. &lt;arg path=&quot;/dir;/dir2:\dir3&quot; /&gt;
  526. </pre></blockquote>
  527. <p>is a single command line argument with value
  528. <code>\dir;\dir2;\dir3</code> on DOS based systems and
  529. <code>/dir:/dir2:/dir3</code> on Unix like systems.</p>
  530. <h3><a name="references">References</a></h3>
  531. <p>The <code>id</code> attribute of the buildfile's elements can be
  532. used to refer to them. This can useful if you are going to replicate
  533. the same snippet of XML over and over again - using a
  534. <code>&lt;classpath&gt;</code> structure more than once for
  535. example.</p>
  536. <p>The following example</p>
  537. <blockquote><pre>
  538. &lt;project ... &gt;
  539. &lt;target ... &gt;
  540. &lt;rmic ...&gt;
  541. &lt;classpath&gt;
  542. &lt;pathelement location=&quot;lib/&quot; /&gt;
  543. &lt;pathelement path=&quot;${java.class.path}/&quot; /&gt;
  544. &lt;pathelement path=&quot;${additional.path}&quot; /&gt;
  545. &lt;/classpath&gt;
  546. &lt;/rmic&gt;
  547. &lt;/target&gt;
  548. &lt;target ... &gt;
  549. &lt;javac ...&gt;
  550. &lt;classpath&gt;
  551. &lt;pathelement location=&quot;lib/&quot; /&gt;
  552. &lt;pathelement path=&quot;${java.class.path}/&quot; /&gt;
  553. &lt;pathelement path=&quot;${additional.path}&quot; /&gt;
  554. &lt;/classpath&gt;
  555. &lt;/javac&gt;
  556. &lt;/target&gt;
  557. &lt;/project&gt;
  558. </pre></blockquote>
  559. <p>could be rewritten as</p>
  560. <blockquote><pre>
  561. &lt;project ... &gt;
  562. &lt;path id=&quot;project.class.path&quot;&gt;
  563. &lt;pathelement location=&quot;lib/&quot; /&gt;
  564. &lt;pathelement path=&quot;${java.class.path}/&quot; /&gt;
  565. &lt;pathelement path=&quot;${additional.path}&quot; /&gt;
  566. &lt;/path&gt;
  567. &lt;target ... &gt;
  568. &lt;rmic ...&gt;
  569. &lt;classpath refid=&quot;project.class.path&quot; /&gt;
  570. &lt;/rmic&gt;
  571. &lt;/target&gt;
  572. &lt;target ... &gt;
  573. &lt;javac ...&gt;
  574. &lt;classpath refid=&quot;project.class.path&quot; /&gt;
  575. &lt;/javac&gt;
  576. &lt;/target&gt;
  577. &lt;/project&gt;
  578. </pre></blockquote>
  579. <p>All tasks that use nested elements for <a
  580. href="#patternset">PatternSet</a>s, <a href="#fileset">FileSet</a>s or
  581. <a href="#path">PATH like structures</a> accept references to these
  582. structures as well.</p>
  583. <hr>
  584. <h2><a name="directorybasedtasks">Directory based tasks</a></h2>
  585. <p>Some tasks use directory trees for the task they perform. For instance, the <a
  586. href="#javac">Javac task</a> which works upon a directory tree with .java files.
  587. Sometimes it can be very useful to work on a subset of that directory tree. This
  588. section describes how you can select a subset of such a directory tree.</p>
  589. <p>Ant gives you two ways to create a subset, both of which can be used at the same
  590. time:</p>
  591. <ul>
  592. <li>Only include files/directories that match at least one pattern of a set of
  593. patterns</li>
  594. <li>Exclude files/directories that match at least one pattern a set of
  595. patterns</li>
  596. </ul>
  597. <p>When both inclusion and exclusion are used, only files/directories that match
  598. the include patterns, and don't match the exclude patterns are used.</p>
  599. <p>Patterns can be specified inside the buildfile via task attributes or
  600. nested elements and via external files. Each line of the external file
  601. is taken as pattern that is added to the list of include or exclude
  602. patterns.</p>
  603. <h3>Patterns</h3>
  604. <p>As described earlier, patterns are used for the inclusion and exclusion.
  605. These patterns look very much like the patterns used in DOS and UNIX:</p>
  606. <p>'*' matches zero or more characters, '?' matches one character.</p>
  607. <p>Examples:</p>
  608. <p>'*.java' matches '.java', 'x.java' and 'FooBar.java', but not 'FooBar.xml'
  609. (does not end with '.java').</p>
  610. <p>'?.java' matches 'x.java', 'A.java', but not '.java' or 'xyz.java' (both
  611. don't have one character before '.java').</p>
  612. <p>Combinations of '*'s and '?'s are allowed.</p>
  613. <p>Matching is done per-directory. This means that first the first directory in
  614. the pattern is matched against the first directory in the path to match. Then
  615. the second directories are matched, and so on. E.g. when we have the pattern '/?abc/*/*.java'
  616. and the path '/xabc/foobar/test.java', then first '?abc' is matched with 'xabc',
  617. then '*' is matched with 'foobar' and finally '*.java' is matched with 'test.java'.
  618. They all match so the path matches the pattern.</p>
  619. <p>Too make things a bit more flexible, we add one extra feature, which makes it
  620. possible to match multiple directory levels. This can be used to match a
  621. complete directory tree, or a file anywhere in the directory tree. To do this, '**'
  622. must be used as the name of a directory. When '**' is used as the name of a
  623. directory in the pattern, it matches zero or more directories. For instance:
  624. '/test/**' matches all files/directories under '/test/', such as '/test/x.java',
  625. or '/test/foo/bar/xyz.html', but not '/xyz.xml'.</p>
  626. <p>There is one &quot;shorthand&quot;, if a pattern ends with '/' or '\', then '**'
  627. is appended. E.g. &quot;mypackage/test/&quot; is interpreted as were it &quot;mypackage/test/**&quot;.</p>
  628. <p>Examples:</p>
  629. <table border="1" cellpadding="2" cellspacing="0">
  630. <tr>
  631. <td valign="top">**/CVS/*</td>
  632. <td valign="top">Matches all files in CVS directories, that can be located
  633. anywhere in the directory tree.
  634. <p>Matches:</p>
  635. <p>CVS/Repository<br>
  636. org/apache/CVS/Entries<br>
  637. org/apache/jakarta/tools/ant/CVS/Entries</p>
  638. <p>But not:</p>
  639. <p>org/apache/CVS/foo/bar/Entries ('foo/bar/' part does not match)</td>
  640. </tr>
  641. <tr>
  642. <td valign="top">org/apache/jakarta/**</td>
  643. <td valign="top">Matches all files in the org/apache/jakarta directory tree.
  644. <p>Matches:</p>
  645. <p>org/apache/jakarta/tools/ant/docs/index.html<br>
  646. org/apache/jakarta/test.xml</p>
  647. <p>But not:</p>
  648. <p>org/apache/xyz.java ('jakarta'/' part is missing)</td>
  649. </tr>
  650. <tr>
  651. <td valign="top">org/apache/**/CVS/*</td>
  652. <td valign="top">Matches all files in CVS directories, that are located
  653. anywhere in the directory tree under org/apache.
  654. <p>Matches:</p>
  655. <p>org/apache/CVS/Entries<br>
  656. org/apache/jakarta/tools/ant/CVS/Entries</p>
  657. <p>But not:</p>
  658. <p>org/apache/CVS/foo/bar/Entries ('foo/bar/' part does not match)</td>
  659. </tr>
  660. <tr>
  661. <td valign="top">**/test/**</td>
  662. <td valign="top">Matches all files which have a directory 'test' in their
  663. path, including 'test' as a filename.</td>
  664. </tr>
  665. </table>
  666. <p>When these patterns are used in inclusion and exclusion, you have a powerful
  667. way to select just the files you want.</p>
  668. <h3>Examples</h3>
  669. <pre> &lt;copydir src=&quot;${src}&quot;
  670. dest=&quot;${dist}&quot;
  671. includes=&quot;**/images/*&quot;
  672. excludes=&quot;**/*.gif&quot; /&gt;</pre>
  673. <p>This copies all files in directories called &quot;images&quot;, that are
  674. located in the directory tree &quot;${src}&quot; to the destination &quot;${dist}&quot;,
  675. but excludes all &quot;*.gif&quot; files from the copy.</p>
  676. <p> This example can also be expressed using nested elements as
  677. <pre> &lt;copydir src=&quot;${src}&quot;
  678. dest=&quot;${dist}&quot;&gt;
  679. &lt;include name=&quot;**/images/*&quot;/&gt;
  680. &lt;exclude name=&quot;**/*.gif&quot; /&gt;
  681. &lt;/copydir&gt;
  682. </pre>
  683. <h3>Default Excludes</h3>
  684. <p>There are a set of definitions which are excluded by default from all directory based tasks.
  685. They are:
  686. <pre> &quot;**/*~&quot;,
  687. &quot;**/#*#&quot;,
  688. &quot;**/%*%&quot;,
  689. &quot;**/CVS&quot;,
  690. &quot;**/CVS/*&quot;,
  691. &quot;**/.cvsignore&quot;
  692. </pre>
  693. If you do not want these default excludes applied, you may disable them with the
  694. <code>defaultexcludes=&quot;no&quot;</code> attribute.</p>
  695. <h3><a name="patternset">PatternSets</a></h3>
  696. <p>Patterns can be grouped to sets and later be referenced by their id
  697. attribute. They are defined via a <code>patternset</code> element -
  698. which can appear nested into a <a href="#fileset">FileSet</a> or a
  699. directory based task that constitutes an implicit FileSet. In addition
  700. <code>patternset</code>s can be defined at the same level as
  701. <code>target</code> - i.e. as children of <code>project</code></p>
  702. <p>Patterns can be specified by nested <code>&lt;include&gt;</code> or
  703. <code>&lt;exclude&gt;</code> elements or the following attributes.</p>
  704. <table border="1" cellpadding="2" cellspacing="0">
  705. <tr>
  706. <td valign="top"><b>Attribute</b></td>
  707. <td valign="top"><b>Description</b></td>
  708. </tr>
  709. <tr>
  710. <td valign="top">includes</td>
  711. <td valign="top">comma separated list of patterns of files that must be
  712. included. All files are included when omitted.</td>
  713. </tr>
  714. <tr>
  715. <td valign="top">includesfile</td>
  716. <td valign="top">the name of a file. Each line of this file is
  717. taken to be an include pattern</td>
  718. </tr>
  719. <tr>
  720. <td valign="top">excludes</td>
  721. <td valign="top">comma separated list of patterns of files that must be
  722. excluded. No files (except default excludes) are excluded when omitted.</td>
  723. </tr>
  724. <tr>
  725. <td valign="top">excludesfile</td>
  726. <td valign="top">the name of a file. Each line of this file is
  727. taken to be an exclude pattern</td>
  728. </tr>
  729. </table>
  730. <h4>Examples</h4>
  731. <blockquote><pre>
  732. &lt;patternset id=&quot;non.test.sources&quot; &gt;
  733. &lt;include name=&quot;**/*.java&quot; /&gt;
  734. &lt;exclude name=&quot;**/*Test*&quot; /&gt;
  735. &lt;/patternset&gt;
  736. </pre></blockquote>
  737. <p>Builds a set of patterns, that matches all <code>.java</code> files
  738. that do not contain the text <code>Test</code> in their name. This set
  739. can be <a href="#references">referred</a> to via
  740. <code>&lt;patternset refid=&quot;non.test.sources&quot;
  741. /&gt;</code> by tasks that support this feature or by FileSets.</p>
  742. <h3><a name="fileset">FileSets</a></h3>
  743. <p>FileSets are groups of files. These files can be found in a
  744. directory tree starting in a base directory and are matched by
  745. patterns taken from a number of <a
  746. href="#patternset">PatternSets</a>. FileSets can appear inside task
  747. that support this feature or at the same level as <code>target</code>
  748. - i.e. as children of <code>project</code>.</p>
  749. <p>PatternSets can be specified as nested
  750. <code>&lt;patternset&gt;</code>
  751. elements. In addition FileSet holds an implicit PatternSet and
  752. supports the nested <code>&lt;include&gt;</code> and
  753. <code>&lt;exclude&gt;</code> elements of PatternSet directly as well
  754. as PatternSet's attributes.</p>
  755. <table border="1" cellpadding="2" cellspacing="0">
  756. <tr>
  757. <td valign="top"><b>Attribute</b></td>
  758. <td valign="top"><b>Description</b></td>
  759. <td align="center" valign="top"><b>Required</b></td>
  760. </tr>
  761. <tr>
  762. <td valign="top">dir</td>
  763. <td valign="top">The root of the directory tree of this FileSet.</td>
  764. <td valign="top" align="center">Yes</td>
  765. </tr>
  766. <tr>
  767. <td valign="top">defaultexcludes</td>
  768. <td valign="top">indicates whether default excludes should be used or not
  769. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  770. <td valign="top" align="center">No</td>
  771. </tr>
  772. <tr>
  773. <td valign="top">includes</td>
  774. <td valign="top">comma separated list of patterns of files that must be
  775. included. All files are included when omitted.</td>
  776. <td valign="top" align="center">No</td>
  777. </tr>
  778. <tr>
  779. <td valign="top">includesfile</td>
  780. <td valign="top">the name of a file. Each line of this file is
  781. taken to be an include pattern</td>
  782. <td valign="top" align="center">No</td>
  783. </tr>
  784. <tr>
  785. <td valign="top">excludes</td>
  786. <td valign="top">comma separated list of patterns of files that must be
  787. excluded. No files (except default excludes) are excluded when omitted.</td>
  788. <td valign="top" align="center">No</td>
  789. </tr>
  790. <tr>
  791. <td valign="top">excludesfile</td>
  792. <td valign="top">the name of a file. Each line of this file is
  793. taken to be an exclude pattern</td>
  794. <td valign="top" align="center">No</td>
  795. </tr>
  796. </table>
  797. <h4>Examples</h4>
  798. <blockquote><pre>
  799. &lt;fileset dir=&quot;${server.src}&quot; &gt;
  800. &lt;patternset id=&quot;non.test.sources&quot; &gt;
  801. &lt;include name=&quot;**/*.java&quot; /&gt;
  802. &lt;exclude name=&quot;**/*Test*&quot; /&gt;
  803. &lt;/patternset&gt;
  804. &lt;/fileset&gt;
  805. </pre></blockquote>
  806. <p>Groups all files in directory <code>${server.src}</code> that are Java
  807. source files and don't have the text <code>Test</code> in their
  808. name.</p>
  809. <blockquote><pre>
  810. &lt;fileset dir=&quot;${client.src}&quot; &gt;
  811. &lt;patternset refid=&quot;non.test.sources&quot; /&gt;
  812. &lt;/fileset&gt;
  813. </pre></blockquote>
  814. <p>Groups all files in directory <code>${client.src}</code> using the
  815. same patterns as the example before.</p>
  816. <hr>
  817. <h2><a name="tasks">Built in tasks</a></h2>
  818. <ul>
  819. <li><a href="#ant">Ant</a></li>
  820. <li><a href="#antcall">AntCall</a></li>
  821. <li><a href="#antstructure">AntStructure</a></li>
  822. <li><a href="#available">Available</a></li>
  823. <li><a href="#chmod">Chmod</a></li>
  824. <li><a href="#copydir">Copydir</a></li>
  825. <li><a href="#copyfile">Copyfile</a></li>
  826. <li><a href="#cvs">Cvs</a></li>
  827. <li><a href="#delete">Delete</a></li>
  828. <li><a href="#deltree">Deltree</a></li>
  829. <li><a href="#echo">Echo</a></li>
  830. <li><a href="#exec">Exec</a></li>
  831. <li><a href="#execon">ExecOn</a></li>
  832. <li><a href="#fail">Fail</a></li>
  833. <li><a href="#filter">Filter</a></li>
  834. <li><a href="#fixcrlf">FixCRLF</a></li>
  835. <li><a href="#genkey">GenKey</a></li>
  836. <li><a href="#get">Get</a></li>
  837. <li><a href="#gunzip">GUnzip</a></li>
  838. <li><a href="#gzip">GZip</a></li>
  839. <li><a href="#jar">Jar</a></li>
  840. <li><a href="#java">Java</a></li>
  841. <li><a href="#javac">Javac</a></li>
  842. <li><a href="#javadoc">Javadoc/Javadoc2</a></li>
  843. <li><a href="#mail">Mail</a></li>
  844. <li><a href="#mkdir">Mkdir</a></li>
  845. <li><a href="#patch">Patch</a></li>
  846. <li><a href="#property">Property</a></li>
  847. <li><a href="#rename">Rename</a></li>
  848. <li><a href="#replace">Replace</a></li>
  849. <li><a href="#rmic">Rmic</a></li>
  850. <li><a href="#signjar">SignJar</a></li>
  851. <li><a href="sql.html">Sql</a></li>
  852. <li><a href="#style">Style</a></li>
  853. <li><a href="#tar">Tar</a></li>
  854. <li><a href="#taskdef">Taskdef</a></li>
  855. <li><a href="#touch">Touch</a></li>
  856. <li><a href="#tstamp">Tstamp</a></li>
  857. <li><a href="#unzip">Unjar</a></li>
  858. <li><a href="#untar">Untar</a></li>
  859. <li><a href="#unzip">Unwar</a></li>
  860. <li><a href="#unzip">Unzip</a></li>
  861. <li><a href="#uptodate">Uptodate</a></li>
  862. <li><a href="#war">War</a></li>
  863. <li><a href="#zip">Zip</a></li>
  864. </ul>
  865. <hr>
  866. <h2><a name="ant">Ant</a></h2>
  867. <h3>Description</h3>
  868. <p>Runs Ant on a supplied buildfile. This can be used to build subprojects.</p>
  869. <p>When the <i>antfile</i> attribute is omitted, the file &quot;build.xml&quot;
  870. in the supplied directory (<i>dir</i> attribute) is used.</p>
  871. <p>If no target attribute is supplied, the default target of the new project is
  872. used.</p>
  873. <p>The properties of the current project will be available in the new project.
  874. These properties will override the properties that are set in the new project.
  875. (See also the <a href="#property">properties task</a>). You can set properties
  876. in the new project from the old project by using nested property tags. This
  877. allows you to parameterize your subprojects.</p>
  878. <h3>Parameters</h3>
  879. <table border="1" cellpadding="2" cellspacing="0">
  880. <tr>
  881. <td valign="top"><b>Attribute</b></td>
  882. <td valign="top"><b>Description</b></td>
  883. <td align="center" valign="top"><b>Required</b></td>
  884. </tr>
  885. <tr>
  886. <td valign="top">antfile</td>
  887. <td valign="top">the buildfile to use. Defaults to &quot;build.xml&quot;.</td>
  888. <td valign="top" align="center">No</td>
  889. </tr>
  890. <tr>
  891. <td valign="top">dir</td>
  892. <td valign="top">the directory to use as a basedir for the new Ant project.
  893. Defaults to the current directory.</td>
  894. <td valign="top" align="center">No</td>
  895. </tr>
  896. <tr>
  897. <td valign="top">target</td>
  898. <td valign="top">the target of the new Ant project that should be executed.</td>
  899. <td valign="top" align="center">No</td>
  900. </tr>
  901. <tr>
  902. <td valign="top">output</td>
  903. <td valign="top">Filename to write the ant output to.
  904. </td>
  905. <td align="center" valign="top">No</td>
  906. </tr>
  907. </table>
  908. <h3>Examples</h3>
  909. <pre>
  910. &lt;ant antfile=&quot;subproject/subbuild.xml&quot; dir=&quot;subproject&quot; target=&quot;compile&quot; /&gt;
  911. &lt;ant dir=&quot;subproject&quot; /&gt;
  912. &lt;ant antfile=&quot;subproject/property_based_subbuild.xml&quot;&gt;
  913. &lt;property name=&quot;param1&quot; value=&quot;version 1.x&quot; /&gt;
  914. &lt;property file=&quot;config/subproject/default.properties&quot; /&gt;
  915. &lt;/ant&gt;
  916. </pre>
  917. <hr>
  918. <h2><a name="antcall">AntCall</a></h2>
  919. <h3>Description</h3>
  920. <p>Call another target within the same build-file optionally specifying some
  921. properties (param's in this context)</p>
  922. <h3>Parameters</h3>
  923. <table border="1" cellpadding="2" cellspacing="0">
  924. <tr>
  925. <td valign="top"><b>Attribute</b></td>
  926. <td valign="top"><b>Description</b></td>
  927. <td align="center" valign="top"><b>Required</b></td>
  928. </tr>
  929. <tr>
  930. <td valign="top">target</td>
  931. <td valign="top">The target to execute.</td>
  932. <td valign="top" align="center">Yes</td>
  933. </tr>
  934. </table>
  935. <h3>Parameters specified as nested elements</h3>
  936. <h4>param</h4>
  937. <p>Specifies the properties to set before running the specified target. See <a
  938. href="#property">property</a> for usage guidelines.</p>
  939. <p>This will only set the specified properties if the property is not already
  940. set in the current project!</p>
  941. <h3>Examples</h3>
  942. <pre>
  943. &lt;target name=&quot;default&quot;&gt;
  944. &lt;calltarget target=&quot;doSomethingElse&quot;&gt;
  945. &lt;param name=&quot;param1&quot; value=&quot;value&quot;/&gt;
  946. &lt;/calltarget&gt;
  947. &lt;/target&gt;
  948. &lt;target name=&quot;doSomethingElse&quot;&gt;
  949. &lt;echo message=&quot;param1=${param1}&quot;/&gt;
  950. &lt;/target&gt;
  951. </pre>
  952. <p>Will run the target 'doSomethingElse' and echo 'param1=value'.</p>
  953. <hr>
  954. <h2><a name="antstructure">AntStructure</a></h2>
  955. <h3>Description</h3>
  956. <p>Generates a DTD for Ant build files which contains information
  957. about all tasks currently known to Ant.</p>
  958. <p>Note that the DTD generated by this task is incomplete, you can
  959. always add XML entities using <a
  960. href="#taskdef"><code>&lt;taskdef&gt;</code></a>. See <a
  961. href="http://www.sdv.fr/pages/casa/html/ant-dtd.en.html">here</a> for
  962. a way to get around this problem.</p>
  963. <p>This task doesn't know about required attributes, all will be
  964. listed as <code>#IMPLIED</code>.</p>
  965. <h3>Parameters</h3>
  966. <table border="1" cellpadding="2" cellspacing="0">
  967. <tr>
  968. <td valign="top"><b>Attribute</b></td>
  969. <td valign="top"><b>Description</b></td>
  970. <td align="center" valign="top"><b>Required</b></td>
  971. </tr>
  972. <tr>
  973. <td valign="top">output</td>
  974. <td valign="top">file to write the DTD to.</td>
  975. <td valign="top" align="center">Yes</td>
  976. </tr>
  977. </table>
  978. <h3>Examples</h3>
  979. <blockquote><pre>
  980. &lt;antstructure output=&quot;project.dtd&quot; /&gt;
  981. </pre></blockquote>
  982. <hr>
  983. <h2><a name="available">Available</a></h2>
  984. <h3>Description</h3>
  985. <p>Sets a property if a resource is available at runtime. This resource can be a
  986. file resource, a class in classpath or a JVM system resource.</p>
  987. <p>If the resource is present, the property value is set to true by
  988. default, otherwise the property is not set. You can set the value to
  989. something specific by using the value attribute.</p>
  990. <p>Normally, this task is used to set properties that are useful to avoid target
  991. execution depending on system parameters.</p>
  992. <h3>Parameters</h3>
  993. <table border="1" cellpadding="2" cellspacing="0">
  994. <tr>
  995. <td valign="top"><b>Attribute</b></td>
  996. <td valign="top"><b>Description</b></td>
  997. <td align="center" valign="top"><b>Required</b></td>
  998. </tr>
  999. <tr>
  1000. <td valign="top">property</td>
  1001. <td valign="top">the name of the property to set.</td>
  1002. <td valign="top" align="center">Yes</td>
  1003. </tr>
  1004. <tr>
  1005. <td valign="top">value</td>
  1006. <td valign="top">the value to set the property to. Defaults to &quot;true&quot;.</td>
  1007. <td valign="top" align="center">No</td>
  1008. </tr>
  1009. <tr>
  1010. <td valign="top">classname</td>
  1011. <td valign="top">the class to look for in classpath.</td>
  1012. <td valign="middle" align="center" rowspan="3">Yes</td>
  1013. </tr>
  1014. <tr>
  1015. <td valign="top">resource</td>
  1016. <td valign="top">the resource to look for in the JVM</td>
  1017. </tr>
  1018. <tr>
  1019. <td valign="top">file</td>
  1020. <td valign="top">the file to look for.</td>
  1021. </tr>
  1022. <tr>
  1023. <td valign="top">classpath</td> <td valign="top">the classpath to
  1024. use when looking up <code>classname</code>.</td> <td
  1025. align="center" valign="top">No</td>
  1026. </tr>
  1027. </table>
  1028. <h3>Parameters specified as nested elements</h3>
  1029. <h4>classpath</h4>
  1030. <p><code>Available</code>'s <em>classpath</em> attribute is a <a
  1031. href="#path">PATH like structure</a> and can also be set via a nested
  1032. <em>classpath</em> element.</p>
  1033. <h3>Examples</h3>
  1034. <pre> &lt;available classname=&quot;org.whatever.Myclass&quot; property=&quot;Myclass.present&quot; /&gt;</pre>
  1035. <p>sets the property <code><i>Myclass.present</i></code> to the value &quot;true&quot;
  1036. if the <i>org.whatever.Myclass</i> is found in Ant's classpath.</p>
  1037. <hr>
  1038. <h2><a name="chmod">Chmod</a></h2>
  1039. <h3>Description</h3>
  1040. <p>Changes the permissions of a file or all files inside specified directories. Right now it has effect only under Unix.
  1041. The permissions are also UNIX style, like the argument for the chmod command.</p>
  1042. <p>See the section on <a href="#directorybasedtasks">directory based
  1043. tasks</a>, on how the inclusion/exclusion of files works, and how to
  1044. write patterns.</p>
  1045. <p>This task holds an implicit <a href="#fileset">FileSet</a> and
  1046. supports all of FileSet's attributes and nested elements
  1047. directly. More FileSets can be specified using nested
  1048. <code>&lt;fileset&gt;</code> elements.</p>
  1049. <h3>Parameters</h3>
  1050. <table border="1" cellpadding="2" cellspacing="0">
  1051. <tr>
  1052. <td valign="top"><b>Attribute</b></td>
  1053. <td valign="top"><b>Description</b></td>
  1054. <td align="center" valign="top"><b>Required</b></td>
  1055. </tr>
  1056. <tr>
  1057. <td valign="top">file</td>
  1058. <td valign="top">the file or single directory of which the permissions
  1059. must be changed.</td>
  1060. <td valign="top" valign="middle" rowspan="2">exactly one of the two or nested <code>&lt;fileset&gt;</code> elements.</td>
  1061. </tr>
  1062. <tr>
  1063. <td valign="top">dir</td>
  1064. <td valign="top">the directory which holds the files whose permissions
  1065. must be changed.</td>
  1066. </tr>
  1067. <tr>
  1068. <td valign="top">perm</td>
  1069. <td valign="top">the new permissions.</td>
  1070. <td valign="top" align="center">Yes</td>
  1071. </tr>
  1072. <tr>
  1073. <td valign="top">includes</td>
  1074. <td valign="top">comma separated list of patterns of files that must be
  1075. included. All files are included when omitted.</td>
  1076. <td valign="top" align="center">No</td>
  1077. </tr>
  1078. <tr>
  1079. <td valign="top">includesfile</td>
  1080. <td valign="top">the name of a file. Each line of this file is
  1081. taken to be an include pattern</td>
  1082. <td valign="top" align="center">No</td>
  1083. </tr>
  1084. <tr>
  1085. <td valign="top">excludes</td>
  1086. <td valign="top">comma separated list of patterns of files that must be
  1087. excluded. No files (except default excludes) are excluded when omitted.</td>
  1088. <td valign="top" align="center">No</td>
  1089. </tr>
  1090. <tr>
  1091. <td valign="top">excludesfile</td>
  1092. <td valign="top">the name of a file. Each line of this file is
  1093. taken to be an exclude pattern</td>
  1094. <td valign="top" align="center">No</td>
  1095. </tr>
  1096. <tr>
  1097. <td valign="top">defaultexcludes</td>
  1098. <td valign="top">indicates whether default excludes should be used or not
  1099. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  1100. <td valign="top" align="center">No</td>
  1101. </tr>
  1102. <tr>
  1103. <td valign="top">parallel</td>
  1104. <td valign="top">process all specified files using a single
  1105. <code>chmod</code> command. Defaults to true.</td>
  1106. <td valign="top" align="center">No</td>
  1107. </tr>
  1108. <tr>
  1109. <td valign="top">type</td>
  1110. <td valign="top">One of <em>file</em>, <em>dir</em> or
  1111. <em>both</em>. If set to <em>file</em>, only the permissions of
  1112. plain files are going to be changed. If set to <em>dir</em>, only
  1113. the directories are considered.</td>
  1114. <td align="center" valign="top">No, default is <em>file</em></td>
  1115. </tr>
  1116. </table>
  1117. <h3>Examples</h3>
  1118. <blockquote>
  1119. <p><code>&lt;chmod file=&quot;${dist}/start.sh&quot; perm=&quot;ugo+rx&quot;
  1120. /&gt;</code></p>
  1121. </blockquote>
  1122. <p>makes the &quot;start.sh&quot; file readable and executable for anyone on a
  1123. UNIX system.</p>
  1124. <blockquote>
  1125. <pre>
  1126. &lt;chmod dir=&quot;${dist}/bin&quot; perm=&quot;ugo+rx&quot; includes=&quot;**/*.sh&quot; /&gt;
  1127. </pre>
  1128. </blockquote>
  1129. <p>makes all &quot;.sh&quot; files below <code>${dist}/bin</code>
  1130. readable and executable for anyone on a UNIX system.</p>
  1131. <blockquote>
  1132. <pre>
  1133. &lt;chmod perm=&quot;g+w&quot; /&gt;
  1134. &lt;fileset dir=&quot;shared/sources1&quot; &gt;
  1135. &lt;exclude name=&quot;**/trial/**&quot; /&gt;
  1136. &lt;/fileset&gt;
  1137. &lt;fileset refid=&quot;other.shared.sources&quot; /&gt;
  1138. &lt;/chmod&gt;
  1139. </pre>
  1140. </blockquote>
  1141. <p>makes all files below <code>shared/sources1</code> (except those
  1142. below any directory named trial) writable for members of the same
  1143. group on a UNIX system. In addition all files belonging to a FileSet
  1144. with <code>id</code> <code>other.shared.sources</code> get the same
  1145. permissions.</p>
  1146. <hr>
  1147. <h2><a name="copydir">Copydir</a></h2>
  1148. <h3>Description</h3>
  1149. <p>Copies a directory tree from the source to the destination.</p>
  1150. <p>It is possible to refine the set of files that are being copied. This can be
  1151. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  1152. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  1153. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  1154. the files you want to have excluded. This is also done with patterns. And
  1155. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  1156. want to use default exclusions or not. See the section on <a
  1157. href="#directorybasedtasks">directory based tasks</a>, on how the
  1158. inclusion/exclusion of files works, and how to write patterns.</p>
  1159. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  1160. supports all attributes of <code>&lt;fileset&gt;</code>
  1161. (<code>dir</code> becomes <code>src</code>) as well as the nested
  1162. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  1163. <code>&lt;patternset&gt;</code> elements.</p>
  1164. <h3>Parameters</h3>
  1165. <table border="1" cellpadding="2" cellspacing="0">
  1166. <tr>
  1167. <td valign="top"><b>Attribute</b></td>
  1168. <td valign="top"><b>Description</b></td>
  1169. <td align="center" valign="top"><b>Required</b></td>
  1170. </tr>
  1171. <tr>
  1172. <td valign="top">src</td>
  1173. <td valign="top">the directory to copy.</td>
  1174. <td valign="top" align="center">Yes</td>
  1175. </tr>
  1176. <tr>
  1177. <td valign="top">dest</td>
  1178. <td valign="top">the directory to copy to.</td>
  1179. <td valign="top" align="center">Yes</td>
  1180. </tr>
  1181. <tr>
  1182. <td valign="top">includes</td>
  1183. <td valign="top">comma separated list of patterns of files that must be
  1184. included. All files are included when omitted.</td>
  1185. <td valign="top" align="center">No</td>
  1186. </tr>
  1187. <tr>
  1188. <td valign="top">includesfile</td>
  1189. <td valign="top">the name of a file. Each line of this file is
  1190. taken to be an include pattern</td>
  1191. <td valign="top" align="center">No</td>
  1192. </tr>
  1193. <tr>
  1194. <td valign="top">excludes</td>
  1195. <td valign="top">comma separated list of patterns of files that must be
  1196. excluded. No files (except default excludes) are excluded when omitted.</td>
  1197. <td valign="top" align="center">No</td>
  1198. </tr>
  1199. <tr>
  1200. <td valign="top">excludesfile</td>
  1201. <td valign="top">the name of a file. Each line of this file is
  1202. taken to be an exclude pattern</td>
  1203. <td valign="top" align="center">No</td>
  1204. </tr>
  1205. <tr>
  1206. <td valign="top">defaultexcludes</td>
  1207. <td valign="top">indicates whether default excludes should be used or not
  1208. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  1209. <td valign="top" align="center">No</td>
  1210. </tr>
  1211. <tr>
  1212. <td valign="top">filtering</td>
  1213. <td valign="top">indicates whether token filtering should take place during
  1214. the copy</td>
  1215. <td valign="top" align="center">No</td>
  1216. </tr>
  1217. <tr>
  1218. <td valign="top">flatten</td>
  1219. <td valign="top">ignore directory structure of source directory,
  1220. copy all files into a single directory - specified by the dest
  1221. attribute (default is false).</td>
  1222. <td valign="top" align="center">No</td>
  1223. </tr>
  1224. <tr>
  1225. <td valign="top">forceoverwrite</td>
  1226. <td valign="top">overwrite existing files even if the destination
  1227. files are newer (default is false).</td>
  1228. <td valign="top" align="center">No</td>
  1229. </tr>
  1230. </table>
  1231. <h3>Examples</h3>
  1232. <pre> &lt;copydir src=&quot;${src}/resources&quot;
  1233. dest=&quot;${dist}&quot;
  1234. /&gt;</pre>
  1235. <p>copies the directory <code>${src}/resources</code> to <code>${dist}</code>.</p>
  1236. <pre> &lt;copydir src=&quot;${src}/resources&quot;
  1237. dest=&quot;${dist}&quot;
  1238. includes=&quot;**/*.java&quot;
  1239. excludes=&quot;**/Test.java&quot;
  1240. /&gt;</pre>
  1241. <p>copies the directory <code>${src}/resources</code> to <code>${dist}</code>
  1242. recursively. All java files are copied, except for files with the name <code>Test.java</code>.</p>
  1243. <pre> &lt;copydir src=&quot;${src}/resources&quot;
  1244. dest=&quot;${dist}&quot;
  1245. includes=&quot;**/*.java&quot;
  1246. excludes=&quot;mypackage/test/**&quot; /&gt;</pre>
  1247. <p>copies the directory <code>${src}/resources</code> to <code>${dist}</code>
  1248. recursively. All java files are copied, except for the files under the <code>mypackage/test</code>
  1249. directory.</p>
  1250. <hr>
  1251. <h2><a name="copyfile">Copyfile</a></h2>
  1252. <h3>Description</h3>
  1253. <p>Copies a file from the source to the destination. The file is only copied if
  1254. the source file is newer than the destination file, or when the destination file
  1255. does not exist.</p>
  1256. <h3>Parameters</h3>
  1257. <table border="1" cellpadding="2" cellspacing="0">
  1258. <tr>
  1259. <td valign="top"><b>Attribute</b></td>
  1260. <td valign="top"><b>Description</b></td>
  1261. <td align="center" valign="top"><b>Required</b></td>
  1262. </tr>
  1263. <tr>
  1264. <td valign="top">src</td>
  1265. <td valign="top">the filename of the file to copy.</td>
  1266. <td valign="top" align="center">Yes</td>
  1267. </tr>
  1268. <tr>
  1269. <td valign="top">dest</td>
  1270. <td valign="top">the filename of the file where to copy to.</td>
  1271. <td valign="top" align="center">Yes</td>
  1272. </tr>
  1273. <tr>
  1274. <td valign="top">filtering</td>
  1275. <td valign="top">indicates whether token filtering should take place during
  1276. the copy</td>
  1277. <td valign="top" align="center">No</td>
  1278. </tr>
  1279. <tr>
  1280. <td valign="top">forceoverwrite</td>
  1281. <td valign="top">overwrite existing files even if the destination
  1282. files are newer (default is false).</td>
  1283. <td valign="top" align="center">No</td>
  1284. </tr>
  1285. </table>
  1286. <h3>Examples</h3>
  1287. <blockquote>
  1288. <p><code>&lt;copyfile src=&quot;test.java&quot; dest=&quot;subdir/test.java&quot;
  1289. /&gt;</code></p>
  1290. <p><code>&lt;copyfile src=&quot;${src}/index.html&quot; dest=&quot;${dist}/help/index.html&quot;
  1291. /&gt;</code></p>
  1292. </blockquote>
  1293. <hr>
  1294. <h2><a name="cvs">Cvs</a></h2>
  1295. <h3>Description</h3>
  1296. <p>Handles packages/modules retrieved from a
  1297. <a href="http://www.cyclic.com/">CVS</a> repository.</p>
  1298. <p>When doing automated builds, the <a href="#get">get task</a> should be
  1299. preferred over the <i>checkout</i> command, because of speed.</p>
  1300. <h3>Parameters</h3>
  1301. <table border="1" cellpadding="2" cellspacing="0">
  1302. <tr>
  1303. <td valign="top"><b>Attribute</b></td>
  1304. <td valign="top"><b>Description</b></td>
  1305. <td align="center" valign="top"><b>Required</b></td>
  1306. </tr>
  1307. <tr>
  1308. <td valign="top">command</td>
  1309. <td valign="top">the CVS command to execute.</td>
  1310. <td align="center" valign="top">No, default &quot;checkout&quot;</td>
  1311. </tr>
  1312. <tr>
  1313. <td valign="top">cvsRoot</td>
  1314. <td valign="top">the CVSROOT variable.</td>
  1315. <td align="center" valign="top">No</td>
  1316. </tr>
  1317. <tr>
  1318. <td valign="top">dest</td>
  1319. <td valign="top">the directory where the checked out files should be placed.</td>
  1320. <td align="center" valign="top">No, default is project's basedir.</td>
  1321. </tr>
  1322. <tr>
  1323. <td valign="top">package</td>
  1324. <td valign="top">the package/module to check out.</td>
  1325. <td align="center" valign="top">No</td>
  1326. </tr>
  1327. <tr>
  1328. <td valign="top">tag</td>
  1329. <td valign="top">the tag of the package/module to check out.</td>
  1330. <td align="center" valign="top">No</td>
  1331. </tr>
  1332. <tr>
  1333. <td valign="top">date</td>
  1334. <td valign="top">Use the most recent revision no later than the given date</td>
  1335. <td align="center" valign="top">No</td>
  1336. </tr>
  1337. <tr>
  1338. <td valign="top">quiet</td>
  1339. <td valign="top">suppress informational messages.</td>
  1340. <td align="center" valign="top">No, default &quot;false&quot;</td>
  1341. </tr>
  1342. <tr>
  1343. <td valign="top">noexec</td>
  1344. <td valign="top">report only, don't change any files.</td>
  1345. <td align="center" valign="top">No, default &quot;false&quot;</td>
  1346. </tr>
  1347. <tr>
  1348. <td valign="top">output</td>
  1349. <td valign="top">the file to direct standard output from the command.</td>
  1350. <td align="center" valign="top">No, default output to ANT Log as MSG_INFO.</td>
  1351. </tr>
  1352. <tr>
  1353. <td valign="top">error</td>
  1354. <td valign="top">the file to direct standard error from the command.</td>
  1355. <td align="center" valign="top">No, default error to ANT Log as MSG_WARN.</td>
  1356. </tr>
  1357. </table>
  1358. <h3>Examples</h3>
  1359. <pre> &lt;cvs cvsRoot=&quot;:pserver:anoncvs@jakarta.apache.org:/home/cvspublic&quot;
  1360. package=&quot;jakarta-tools&quot;
  1361. dest=&quot;${ws.dir}&quot;
  1362. /&gt;</pre>
  1363. <p>checks out the package/module &quot;jakarta-tools&quot; from the CVS
  1364. repository pointed to by the cvsRoot attribute, and stores the files in &quot;${ws.dir}&quot;.</p>
  1365. <pre> &lt;cvs dest=&quot;${ws.dir}&quot; command=&quot;update&quot; /&gt;</pre>
  1366. <p>updates the package/module that has previously been checked out into
  1367. &quot;${ws.dir}&quot;.</p>
  1368. <hr>
  1369. <h2><a name="delete">Delete</a></h2>
  1370. <h3>Description</h3>
  1371. <p>Deletes either a single file or
  1372. all files in a specified directory and its sub-directories.</p>
  1373. <p>It is possible to refine the set of files that are being deleted. This can be
  1374. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  1375. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  1376. have included in the deletion process by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  1377. the files you want to have excluded from the deletion process. This is also done with patterns. And
  1378. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  1379. want to use default exclusions or not. See the section on <a
  1380. href="#directorybasedtasks">directory based tasks</a>, on how the
  1381. inclusion/exclusion of files works, and how to write patterns.</p>
  1382. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  1383. supports all attributes of <code>&lt;fileset&gt;</code> as well as the
  1384. nested <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  1385. <code>&lt;patternset&gt;</code> elements.</p>
  1386. <h3>Parameters</h3>
  1387. <table border="1" cellpadding="2" cellspacing="0">
  1388. <tr>
  1389. <td valign="top"><b>Attribute</b></td>
  1390. <td valign="top"><b>Description</b></td>
  1391. <td align="center" valign="top"><b>Required</b></td>
  1392. </tr>
  1393. <tr>
  1394. <td valign="top">file</td>
  1395. <td valign="top">The file to delete.</td>
  1396. <td align="center" valign="middle" rowspan="2">at least one of the two</td>
  1397. </tr>
  1398. <tr>
  1399. <td valign="top">dir</td>
  1400. <td valign="top">The directory to delete files from.</td>
  1401. </tr>
  1402. <tr>
  1403. <td valign="top">includes</td>
  1404. <td valign="top">Comma separated list of patterns of files that must be
  1405. deleted. All files are in the current directory
  1406. and any sub-directories are deleted when omitted.</td>
  1407. <td valign="top" align="center">No</td>
  1408. </tr>
  1409. <tr>
  1410. <td valign="top">includesfile</td>
  1411. <td valign="top">the name of a file. Each line of this file is
  1412. taken to be an include pattern</td>
  1413. <td valign="top" align="center">No</td>
  1414. </tr>
  1415. <tr>
  1416. <td valign="top">excludes</td>
  1417. <td valign="top">Comma separated list of patterns of files that must be
  1418. excluded from the deletion list. No files (except default excludes) are excluded when omitted.</td>
  1419. <td valign="top" align="center">No</td>
  1420. </tr>
  1421. <tr>
  1422. <td valign="top">excludesfile</td>
  1423. <td valign="top">the name of a file. Each line of this file is
  1424. taken to be an exclude pattern</td>
  1425. <td valign="top" align="center">No</td>
  1426. </tr>
  1427. <tr>
  1428. <td valign="top">defaultexcludes</td>
  1429. <td valign="top">Indicates whether default excludes should be used or not
  1430. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  1431. <td valign="top" align="center">No</td>
  1432. </tr>
  1433. <tr>
  1434. <td valign="top">verbose</td>
  1435. <td valign="top">Show name of each deleted file (&quot;true&quot;/&quot;false&quot;).
  1436. Default is &quot;false&quot; when omitted.</td>
  1437. <td align="center" valign="top">No</td>
  1438. </tr>
  1439. </table>
  1440. <h3>Examples</h3>
  1441. <pre> &lt;delete file=&quot;/lib/ant.jar&quot; /&gt;</pre>
  1442. <p>deletes the file <code>/lib/ant.jar</code>.</p>
  1443. <pre> &lt;delete dir=&quot;lib&quot; /&gt;</pre>
  1444. <p>deletes all files in the <code>/lib</code> directory.</p>
  1445. <pre> &lt;delete dir=&quot;.&quot;
  1446. includes=&quot;**/*.bak&quot;
  1447. /&gt;
  1448. </pre>
  1449. <p>deletes all files with the extension &quot;<code>.bak</code>&quot from the current directory
  1450. and any sub-directories.</p>
  1451. <hr>
  1452. <h2><a name="deltree">Deltree</a></h2>
  1453. <h3>Description</h3>
  1454. <p>Deletes a directory with all its files and subdirectories.</p>
  1455. <h3>Parameters</h3>
  1456. <table border="1" cellpadding="2" cellspacing="0">
  1457. <tr>
  1458. <td valign="top"><b>Attribute</b></td>
  1459. <td valign="top"><b>Description</b></td>
  1460. <td align="center" valign="top"><b>Required</b></td>
  1461. </tr>
  1462. <tr>
  1463. <td valign="top">dir</td>
  1464. <td valign="top">the directory to delete.</td>
  1465. <td valign="top" align="center">Yes</td>
  1466. </tr>
  1467. </table>
  1468. <h3>Examples</h3>
  1469. <pre> &lt;deltree dir=&quot;dist&quot; /&gt;</pre>
  1470. <p>deletes the directory <code>dist</code>, including its files and
  1471. subdirectories.</p>
  1472. <pre> &lt;deltree dir=&quot;${dist}&quot; /&gt;</pre>
  1473. <p>deletes the directory <code>${dist}</code>, including its files and
  1474. subdirectories.</p>
  1475. <hr>
  1476. <h2><a name="echo">Echo</a></h2>
  1477. <h3>Description</h3>
  1478. <p>Echoes a message to System.out or a file.</p>
  1479. <h3>Parameters</h3>
  1480. <table border="1" cellpadding="2" cellspacing="0">
  1481. <tr>
  1482. <td valign="top"><b>Attribute</b></td>
  1483. <td valign="top"><b>Description</b></td>
  1484. <td align="center" valign="top"><b>Required</b></td>
  1485. </tr>
  1486. <tr>
  1487. <td valign="top">message</td>
  1488. <td valign="top">the message to echo.</td>
  1489. <td valign="top" align="center">Yes, unless data is included in a
  1490. character section within this element.</td>
  1491. </tr>
  1492. <tr>
  1493. <td valign="top">file</td>
  1494. <td valign="top">the file to write the message to.</td>
  1495. <td valign="top" align="center">No</td>
  1496. </tr>
  1497. <tr>
  1498. <td valign="top">append</td>
  1499. <td valign="top">Append to an existing file?</td>
  1500. <td valign="top" align="center">No - default is false.</td>
  1501. </tr>
  1502. </table>
  1503. <h3>Examples</h3>
  1504. <pre> &lt;echo message=&quot;Hello world&quot; /&gt;</pre>
  1505. <pre>
  1506. &lt;echo&gt;
  1507. This is a longer message stretching over
  1508. two lines.
  1509. &lt;/echo&gt;
  1510. </pre>
  1511. <hr>
  1512. <h2><a name="exec">Exec</a></h2>
  1513. <h3>Description</h3>
  1514. <p>Executes a system command. When the <i>os</i> attribute is specified, then
  1515. the command is only executed when Ant is run on one of the specified operating
  1516. systems.</p>
  1517. <h3>Parameters</h3>
  1518. <table border="1" cellpadding="2" cellspacing="0">
  1519. <tr>
  1520. <td valign="top"><b>Attribute</b></td>
  1521. <td valign="top"><b>Description</b></td>
  1522. <td align="center" valign="top"><b>Required</b></td>
  1523. </tr>
  1524. <tr>
  1525. <td valign="top">command</td>
  1526. <td valign="top">the command to execute with all command line
  1527. arguments. <b>deprecated, use executable and nested
  1528. <code>&lt;arg&gt;</code> elements instead</b>.</td>
  1529. <td align="center" rowspan="2">Exactly one of the two.</td>
  1530. </tr>
  1531. <tr>
  1532. <td valign="top">executable</td>
  1533. <td valign="top">the command to execute without any command line
  1534. arguments.</td>
  1535. </tr>
  1536. <tr>
  1537. <td valign="top">dir</td>
  1538. <td valign="top">the directory in which the command should be executed.</td>
  1539. <td align="center" valign="top">No</td>
  1540. </tr>
  1541. <tr>
  1542. <td valign="top">os</td>
  1543. <td valign="top">list of Operating Systems on which the command may be
  1544. executed.</td>
  1545. <td align="center" valign="top">No</td>
  1546. </tr>
  1547. <tr>
  1548. <td valign="top">output</td>
  1549. <td valign="top">the file to which the output of the command should be
  1550. redirected.</td>
  1551. <td align="center" valign="top">No</td>
  1552. </tr>
  1553. <tr>
  1554. <td valign="top">timeout</td>
  1555. <td valign="top">Stop the command if it doesn't finish within the
  1556. specified time (given in milliseconds).</td>
  1557. <td align="center" valign="top">No</td>
  1558. </tr>
  1559. <tr>
  1560. <td valign="top">failonerror</td>
  1561. <td valign="top">Stop the buildprocess if the command exits with a
  1562. returncode other than 0.</td>
  1563. <td align="center" valign="top">No</td>
  1564. </tr>
  1565. </table>
  1566. <h3>Examples</h3>
  1567. <blockquote>
  1568. <p><code>&lt;exec dir=&quot;${src}&quot; executable=&quot;dir&quot; os=&quot;windows&quot;
  1569. output=&quot;dir.txt&quot; /&gt;</code></p>
  1570. </blockquote>
  1571. <h3>Parameters specified as nested elements</h3>
  1572. <h4>arg</h4>
  1573. <p>Command line arguments should be specified as nested
  1574. <code>&lt;arg&gt;</code> elements. See <a
  1575. href="index.html#arg">Command line arguments</a>.</p>
  1576. <h4><a name="env">env</a></h4>
  1577. <p>It is possible to specify environment variables to pass to the
  1578. system command via nested <code>&lt;env&gt;</code> elements.</p>
  1579. <p>Please note that the environment of the current Ant process is
  1580. <b>not</b> passed to the system command if you specify variables using
  1581. <code>&lt;env&gt;</code>.</p>
  1582. <table border="1" cellpadding="2" cellspacing="0">
  1583. <tr>
  1584. <td valign="top"><b>Attribute</b></td>
  1585. <td valign="top"><b>Description</b></td>
  1586. <td align="center" valign="top"><b>Required</b></td>
  1587. </tr>
  1588. <tr>
  1589. <td valign="top">key</td>
  1590. <td valign="top">The name of the environment variable.</td>
  1591. <td align="center" valign="top">Yes</td>
  1592. </tr>
  1593. <tr>
  1594. <td valign="top">value</td>
  1595. <td valign="top">The literal value for the environment variable.</td>
  1596. <td align="center" rowspan="3">Exactly one of these.</td>
  1597. </tr>
  1598. <tr>
  1599. <td valign="top">path</td>
  1600. <td valign="top">The value for a PATH like environment
  1601. variable. You can use ; or : as path separators and Ant will
  1602. convert it to the platform's local conventions.</td>
  1603. </tr>
  1604. <tr>
  1605. <td valign="top">file</td>
  1606. <td valign="top">The value for the environment variable. Will be
  1607. replaced by the absolute filename of the file by Ant.</td>
  1608. </tr>
  1609. </table>
  1610. <h5>Examples</h5>
  1611. <blockquote><pre>
  1612. &lt;exec executable=&quot;emacs&quot; &gt;
  1613. &lt;env key=&quot;DISPLAY&quot; value=&quot;:1.0&quot; /&gt;
  1614. &lt;/exec&gt;
  1615. </pre></blockquote>
  1616. <p>starts <code>emacs</code> on display 1 of the X Window System.</p>
  1617. <blockquote><pre>
  1618. &lt;exec ... &gt;
  1619. &lt;env key=&quot;PATH&quot; path=&quot;${java.library.path}:${basedir}/bin&quot; /&gt;
  1620. &lt;/exec&gt;
  1621. </pre></blockquote>
  1622. <p>adds <code>${basedir}/bin</code> to the <code>PATH</code> of the
  1623. system command.</p>
  1624. <p><b>Note:</b> Although it may work for you to specify arguments using
  1625. a simple arg-element and seperate them by spaces it may fail if you switch to
  1626. a newer version of the JDK. JDK &lt; 1.2 will pass these as separate arguments
  1627. to the program you are calling, JDK &gt;= 1.2 will pass them as a single
  1628. argument and cause most calls to fail.</p>
  1629. <p><b>Note2:</b> If you are using Ant on Windows and a new DOS-Window pops up
  1630. for every command which is excuted this may be a problem of the JDK you are using.
  1631. This problem may occur with all JDK's &lt; 1.2.</p>
  1632. <hr>
  1633. <h2><a name="execon">ExecOn</a></h2>
  1634. <h3>Description</h3>
  1635. <p>Executes a system command. When the <i>os</i> attribute is specified, then
  1636. the command is only executed when Ant is run on one of the specified operating
  1637. systems.</p>
  1638. <p>The files and/or directories of a number of <a
  1639. href="#fileset">FileSet</a>s are passed as arguments to the system
  1640. command. At least one nested <code>&lt;fileset&gt;</code> is required.</p>
  1641. <h3>Parameters</h3>
  1642. <table border="1" cellpadding="2" cellspacing="0">
  1643. <tr>
  1644. <td valign="top"><b>Attribute</b></td>
  1645. <td valign="top"><b>Description</b></td>
  1646. <td align="center" valign="top"><b>Required</b></td>
  1647. </tr>
  1648. <tr>
  1649. <td valign="top">executable</td>
  1650. <td valign="top">the command to execute without any command line
  1651. arguments.</td>
  1652. <td align="center" valign="top">Yes</td>
  1653. </tr>
  1654. <tr>
  1655. <td valign="top">dir</td>
  1656. <td valign="top">the directory in which the command should be executed.</td>
  1657. <td align="center" valign="top">No</td>
  1658. </tr>
  1659. <tr>
  1660. <td valign="top">os</td>
  1661. <td valign="top">list of Operating Systems on which the command may be
  1662. executed.</td>
  1663. <td align="center" valign="top">No</td>
  1664. </tr>
  1665. <tr>
  1666. <td valign="top">output</td>
  1667. <td valign="top">the file to which the output of the command should be
  1668. redirected.</td>
  1669. <td align="center" valign="top">No</td>
  1670. </tr>
  1671. <tr>
  1672. <td valign="top">timeout</td>
  1673. <td valign="top">Stop the command if it doesn't finish within the
  1674. specified time (given in milliseconds).</td>
  1675. <td align="center" valign="top">No</td>
  1676. </tr>
  1677. <tr>
  1678. <td valign="top">failonerror</td>
  1679. <td valign="top">Stop the buildprocess if the command exits with a
  1680. returncode other than 0.</td>
  1681. <td align="center" valign="top">No</td>
  1682. </tr>
  1683. <tr>
  1684. <td valign="top">parallel</td>
  1685. <td valign="top">Run the command only once, appending all files as
  1686. arguments. Defaults to true. If false, command will be executed
  1687. once for every file.</td>
  1688. <td align="center" valign="top">No</td>
  1689. </tr>
  1690. <tr>
  1691. <td valign="top">type</td>
  1692. <td valign="top">One of <em>file</em>, <em>dir</em> or
  1693. <em>both</em>. If set to <em>file</em>, only the names of plain
  1694. files will be sent to the command. If set to <em>dir</em>, only
  1695. the names of directories are considered.</td>
  1696. <td align="center" valign="top">No, default is <em>file</em></td>
  1697. </tr>
  1698. </table>
  1699. <h3>Parameters specified as nested elements</h3>
  1700. <h4>fileset</h4>
  1701. <p>You can use any number of nested <code>&lt;fileset&gt;</code>
  1702. elements to define the files for this task and refer to
  1703. <code>&lt;fileset&gt;</code>s defined elsewhere.</p>
  1704. <h4>arg</h4>
  1705. <p>Command line arguments should be specified as nested
  1706. <code>&lt;arg&gt;</code> elements. See <a
  1707. href="index.html#arg">Command line arguments</a>.</p>
  1708. <h4>env</h4>
  1709. <p>It is possible to specify environment variables to pass to the
  1710. system command via nested <code>&lt;env&gt;</code> elements. See the
  1711. description in the section about <a href="#env">exec</a></p>
  1712. <p>Please note that the environment of the current Ant process is
  1713. <b>not</b> passed to the system command if you specify variables using
  1714. <code>&lt;env&gt;</code>.</p>
  1715. <h3>Examples</h3>
  1716. <blockquote><pre>
  1717. &lt;execon executable=&quot;ls&quot; &gt;
  1718. &lt;arg value=&quot;-l&quot; /&gt;
  1719. &lt;fileset dir=&quot;/tmp&quot;&gt;
  1720. &lt;patternset&gt;
  1721. &lt;exclude name=&quot;**/*.txt&quot; /&gt;
  1722. &lt;/patternset&gt;
  1723. &lt;/fileset&gt;
  1724. &lt;fileset refid=&quot;other.files&quot; /&gt;
  1725. &lt;/execon&gt;
  1726. </pre></blockquote>
  1727. <p>invokes <code>ls -l</code>, adding the absolute filenames of all
  1728. files below <code>/tmp</code> not ending in <code>.txt</code> and all
  1729. files of the FileSet with <code>id</code> <code>other.files</code> to
  1730. the command line.</p>
  1731. <hr>
  1732. <h2><a name="fail">Fail</a></h2>
  1733. <h3>Description</h3>
  1734. <p>Exits the current build (just throwing a BuildException), optionally printing additional information.</p>
  1735. <h3>Parameters</h3>
  1736. <table border="1" cellpadding="2" cellspacing="0">
  1737. <tr>
  1738. <td valign="top"><b>Attribute</b></td>
  1739. <td valign="top"><b>Description</b></td>
  1740. <td align="center" valign="top"><b>Required</b></td>
  1741. </tr>
  1742. <tr>
  1743. <td valign="top">message</td>
  1744. <td valign="top">A message giving further information on why the build exited</td>
  1745. <td align="center" valign="top">No</td>
  1746. </tr>
  1747. </table>
  1748. <h3>Examples</h3>
  1749. <pre> &lt;fail/&gt;</pre>
  1750. <p>will exit the current build with no further information given.
  1751. <pre>
  1752. BUILD FAILED
  1753. build.xml:4: No message
  1754. </pre>
  1755. </p>
  1756. <pre> &lt;fail message=&quot;Something wrong here.&quot;/&gt;</pre>
  1757. <p>will exit the current build and print something like the following to whereever
  1758. your output goes:
  1759. <pre>
  1760. BUILD FAILED
  1761. build.xml:4: Something wrong here.
  1762. </pre>
  1763. </p>
  1764. <hr>
  1765. <h2><a name="filter">Filter</a></h2>
  1766. <h3>Description</h3>
  1767. <p>Sets a token filter for this project. Token filters are used by all tasks
  1768. that perform file copying operations through the Project commodity methods.</p>
  1769. <p>Note: the token string must not contain the separators chars (@).</p>
  1770. <h3>Parameters</h3>
  1771. <table border="1" cellpadding="2" cellspacing="0">
  1772. <tr>
  1773. <td valign="top"><b>Attribute</b></td>
  1774. <td valign="top"><b>Description</b></td>
  1775. <td align="center" valign="top"><b>Required</b></td>
  1776. </tr>
  1777. <tr>
  1778. <td valign="top">token</td>
  1779. <td valign="top">the token string without @</td>
  1780. <td align="center" valign="top">Yes</td>
  1781. </tr>
  1782. <tr>
  1783. <td valign="top">value</td>
  1784. <td valign="top">the string that should be put to replace the token when the
  1785. file is copied</td>
  1786. <td align="center" valign="top">Yes</td>
  1787. </tr>
  1788. </table>
  1789. <h3>Examples</h3>
  1790. <pre> &lt;filter token=&quot;year&quot; value=&quot;2000&quot; /&gt;
  1791. &lt;copydir src=&quot;${src.dir}&quot; dest=&quot;${dest.dir}&quot;/&gt;</pre>
  1792. <p>will copy recursively all the files from the <i>src.dir</i> directory into
  1793. the <i>dest.dir</i> directory replacing all the occurencies of the string <i>@year@</i>
  1794. with <i>2000.</i></p>
  1795. <hr>
  1796. <h2><a name="fixcrlf">FixCRLF</a></h2>
  1797. <h3>Description</h3>
  1798. <p>Adjusts a text file to local.</p>
  1799. <p>It is possible to refine the set of files that are being adjusted. This can be
  1800. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  1801. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  1802. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  1803. the files you want to have excluded. This is also done with patterns. And
  1804. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  1805. want to use default exclusions or not. See the section on <a
  1806. href="#directorybasedtasks">directory based tasks</a>, on how the
  1807. inclusion/exclusion of files works, and how to write patterns.</p>
  1808. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  1809. supports all attributes of <code>&lt;fileset&gt;</code>
  1810. (<code>dir</code> becomes <code>srcdir</code>) as well as the nested
  1811. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  1812. <code>&lt;patternset&gt;</code> elements.</p>
  1813. <h3>Parameters</h3>
  1814. <table border="1" cellpadding="2" cellspacing="0">
  1815. <tr>
  1816. <td valign="top"><b>Attribute</b></td>
  1817. <td valign="top"><b>Description</b></td>
  1818. <td align="center" valign="top"><b>Required</b></td>
  1819. </tr>
  1820. <tr>
  1821. <td valign="top">srcDir</td>
  1822. <td valign="top">Where to find the files to be fixed up.</td>
  1823. <td valign="top" align="center">Yes</td>
  1824. </tr>
  1825. <tr>
  1826. <td valign="top">destDir</td>
  1827. <td valign="top">Where to place the corrected files. Defaults to
  1828. srcDir (replacing the original file)</td>
  1829. <td valign="top" align="center">No</td>
  1830. </tr>
  1831. <tr>
  1832. <td valign="top">includes</td>
  1833. <td valign="top">comma separated list of patterns of files that must be
  1834. included. All files are included when omitted.</td>
  1835. <td valign="top" align="center">No</td>
  1836. </tr>
  1837. <tr>
  1838. <td valign="top">includesfile</td>
  1839. <td valign="top">the name of a file. Each line of this file is
  1840. taken to be an include pattern</td>
  1841. <td valign="top" align="center">No</td>
  1842. </tr>
  1843. <tr>
  1844. <td valign="top">excludes</td>
  1845. <td valign="top">comma separated list of patterns of files that must be
  1846. excluded. No files (except default excludes) are excluded when omitted.</td>
  1847. <td valign="top" align="center">No</td>
  1848. </tr>
  1849. <tr>
  1850. <td valign="top">excludesfile</td>
  1851. <td valign="top">the name of a file. Each line of this file is
  1852. taken to be an exclude pattern</td>
  1853. <td valign="top" align="center">No</td>
  1854. </tr>
  1855. <tr>
  1856. <td valign="top">defaultexcludes</td>
  1857. <td valign="top">indicates whether default excludes should be used or not
  1858. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  1859. <td valign="top" align="center">No</td>
  1860. </tr>
  1861. <tr>
  1862. <td valign="top">cr</td>
  1863. <td valign="top">Specifies how carriage return (CR) characters are to
  1864. be handled. Valid values for this property are:
  1865. <ul>
  1866. <li>add: ensure that there is a CR before every LF
  1867. <li>asis: leave CR characters alone
  1868. <li>remove: remove all CR characters
  1869. </ul>
  1870. Default is based on the platform on which you are running this task.
  1871. For Unix platforms, the default is remove. For DOS based systems
  1872. (including Windows), the default is add.
  1873. <p>
  1874. Note: Unless this property is specified as &quot;asis&quot;, extra CR characters
  1875. which do not precede a LF will be removed.
  1876. </td>
  1877. <td valign="top" align="center">No</td>
  1878. </tr>
  1879. <tr>
  1880. <td valign="top">tab</td>
  1881. <td valign="top">Specifies how tab characters are to be handled. Valid
  1882. values for this property are:
  1883. <ul>
  1884. <li>add: convert sequences of spaces which span a tab stop to tabs
  1885. <li>asis: leave tab and space characters alone
  1886. <li>remove: convert tabs to spaces
  1887. </ul>
  1888. Default for this parameter is &quot;asis&quot;.
  1889. <p>
  1890. Note: Unless this property is specified as &quot;asis&quot;, extra spaces and
  1891. tabs after the last non-whitespace character on the line will be removed.
  1892. </td>
  1893. <td valign="top" align="center">No</td>
  1894. </tr>
  1895. <tr>
  1896. <td valign="top">tablength</td>
  1897. <td valign="top">The number of characters a TAB stop corresponds to.
  1898. Must be a positive power of 2, default for this parameter is 8.</td>
  1899. <td valign="top" align="center">No</td>
  1900. </tr>
  1901. <tr>
  1902. <td valign="top">eof</td>
  1903. <td valign="top">Specifies how DOS end of file (control-Z) characters are
  1904. to be handled. Valid values for this property are:
  1905. <ul>
  1906. <li>add: ensure that there is an EOF character at the end of the file
  1907. <li>asis: leave EOF characters alone
  1908. <li>remove: remove any EOF character found at the end
  1909. </ul>
  1910. Default is based on the platform on which you are running this task.
  1911. For Unix platforms, the default is remove. For DOS based systems
  1912. (including Windows), the default is asis.
  1913. </td>
  1914. <td valign="top" align="center">No</td>
  1915. </tr>
  1916. </table>
  1917. <h3>Examples</h3>
  1918. <pre> &lt;fixcrlf srcdir=&quot;${src}&quot;
  1919. cr=&quot;remove&quot; eof=&quot;remove&quot;
  1920. includes=&quot;**/*.sh&quot;
  1921. /&gt;</pre>
  1922. <p>Removes carriage return and eof characters from the shell scripts. Tabs and
  1923. spaces are left as is.
  1924. <pre> &lt;fixcrlf srcdir=&quot;${src}&quot;
  1925. cr=&quot;add&quot;
  1926. includes=&quot;**/*.bat&quot;
  1927. /&gt;</pre>
  1928. <p>Ensures that there are carriage return characters prior to evey line feed.
  1929. Tabs and spaces are left as is.
  1930. EOF characters are left alone if run on
  1931. DOS systems, and are removed if run on Unix systems.</p>
  1932. <pre> &lt;fixcrlf srcdir=&quot;${src}&quot;
  1933. tabs=&quot;add&quot;
  1934. includes=&quot;**/Makefile&quot;
  1935. /&gt;</pre>
  1936. <p>Adds or removes CR characters to match local OS conventions, and
  1937. converts spaces to tabs when appropriate. EOF characters are left alone if
  1938. run on DOS systems, and are removed if run on Unix systems.
  1939. Many versions of make require tabs prior to commands.</p>
  1940. <pre> &lt;fixcrlf srcdir=&quot;${src}&quot;
  1941. tabs=&quot;remove&quot;
  1942. includes=&quot;**/README*&quot;
  1943. /&gt;</pre>
  1944. <p>Adds or removes CR characters to match local OS conventions, and
  1945. converts all tabs to spaces. EOF characters are left alone if run on
  1946. DOS systems, and are removed if run on Unix systems.
  1947. You never know what editor a user will use to browse README's.</p>
  1948. <hr>
  1949. <h2><a name="genkey">GenKey</a></h2>
  1950. <h3>Description</h3>
  1951. <p>Generates a key in keystore.</p>
  1952. <h3>Parameters</h3>
  1953. <table border="1" cellpadding="2" cellspacing="0">
  1954. <tr>
  1955. <td valign="top"><b>Attribute</b></td>
  1956. <td valign="top"><b>Description</b></td>
  1957. <td align="center" valign="top"><b>Required</b></td>
  1958. </tr>
  1959. <tr>
  1960. <td valign="top">alias</td>
  1961. <td valign="top">the alias to add under</td>
  1962. <td valign="top" align="center">Yes.</td>
  1963. </tr>
  1964. <tr>
  1965. <td valign="top">storepass</td>
  1966. <td valign="top">password for keystore integrity.</td>
  1967. <td valign="top" align="center">Yes.</td>
  1968. </tr>
  1969. <tr>
  1970. <td valign="top">keystore</td>
  1971. <td valign="top">keystore location</td>
  1972. <td valign="top" align="center">No</td>
  1973. </tr>
  1974. <tr>
  1975. <td valign="top">storetype</td>
  1976. <td valign="top">keystore type</td>
  1977. <td valign="top" align="center">No</td>
  1978. </tr>
  1979. <tr>
  1980. <td valign="top">keypass</td>
  1981. <td valign="top">password for private key (if different)</td>
  1982. <td valign="top" align="center">No</td>
  1983. </tr>
  1984. <tr>
  1985. <td valign="top">sigalg</td>
  1986. <td valign="top">the algorithm to use in signing</td>
  1987. <td valign="top" align="center">No</td>
  1988. </tr>
  1989. <tr>
  1990. <td valign="top">keyalg</td>
  1991. <td valign="top">the method to use when generating name-value pair</td>
  1992. <td valign="top" align="center">No</td>
  1993. </tr>
  1994. <tr>
  1995. <td valign="top">verbose</td>
  1996. <td valign="top">(true | false) verbose output when signing</td>
  1997. <td valign="top" align="center">No</td>
  1998. </tr>
  1999. <tr>
  2000. <td valign="top">dname</td>
  2001. <td valign="top">The distinguished name for entity</td>
  2002. <td valign="top" align="center">Yes if dname element unspecified</td>
  2003. </tr>
  2004. <tr>
  2005. <td valign="top">validity</td>
  2006. <td valign="top">(integer) indicates how many days certificate is valid</td>
  2007. <td valign="top" align="center">No</td>
  2008. </tr>
  2009. <tr>
  2010. <td valign="top">keysize</td>
  2011. <td valign="top">(integer) indicates the size of key generated</td>
  2012. <td valign="top" align="center">No</td>
  2013. </tr>
  2014. </table>
  2015. <p>Alternatively you can specify the distinguished name by creating a sub-element named dname and populating it with param elements that have a name and a value. When using the subelement it is automatically encoded properly and , are replace
  2016. <p>The following two examples are identical: </p>
  2017. <h3>Examples</h3>
  2018. <blockquote>
  2019. <p><code>&lt;genkey alias=&quot;apache-group&quot; storepass=&quot;secret&quot;
  2020. dname=&quot;CN=Ant Group, OU=Jakarta Division, O=Apache.org, C=US&quot; /&gt;</code></p>
  2021. </blockquote>
  2022. <blockquote>
  2023. <pre><code>&lt;genkey alias=&quot;apache-group&quot; storepass=&quot;secret&quot; &gt;
  2024. &lt;dname&gt;
  2025. &lt;param name=&quot;CN&quot; value=&quot;Ant Group&quot;/&gt;
  2026. &lt;param name=&quot;OU&quot; value=&quot;Jakarta Division&quot;/&gt;
  2027. &lt;param name=&quot;O&quot; value=&quot;Apache.Org&quot;/&gt;
  2028. &lt;param name=&quot;C&quot; value=&quot;US&quot;/&gt;
  2029. &lt;/dname&gt;
  2030. &lt;/genkey&gt;</code></pre>
  2031. </blockquote>
  2032. <hr>
  2033. <h2><a name="get">Get</a></h2>
  2034. <h3>Description</h3>
  2035. <p>Gets a file from a URL. When the verbose option is &quot;on&quot;, this task
  2036. displays a '.' for every 100 Kb retrieved.</p>
  2037. <p>This task should be preferred above the <a href="#cvs">CVS task</a> when
  2038. doing automated builds. CVS is significantly slower than loading a compressed
  2039. archive with http/ftp.</p>
  2040. The <i>usetimestamps</i> option enables you to control downloads so that the remote file is
  2041. only fetched if newer than the local copy. If there is no local copy, the download always takes
  2042. place. When a file is downloaded, the timestamp of the downloaded file is set to the remote timestamp,
  2043. if the JVM is Java1.2 or later.
  2044. NB: This timestamp facility only works on downloads using the HTTP protocol.
  2045. <h3>Parameters</h3>
  2046. <table border="1" cellpadding="2" cellspacing="0">
  2047. <tr>
  2048. <td valign="top"><b>Attribute</b></td>
  2049. <td valign="top"><b>Description</b></td>
  2050. <td align="center" valign="top"><b>Required</b></td>
  2051. </tr>
  2052. <tr>
  2053. <td valign="top">src</td>
  2054. <td valign="top">the URL from which to retrieve a file.</td>
  2055. <td align="center" valign="top">Yes</td>
  2056. </tr>
  2057. <tr>
  2058. <td valign="top">dest</td>
  2059. <td valign="top">the file where to store the retrieved file.</td>
  2060. <td align="center" valign="top">Yes</td>
  2061. </tr>
  2062. <tr>
  2063. <td valign="top">verbose</td>
  2064. <td valign="top">show verbose progress information (&quot;on&quot;/&quot;off&quot;).</td>
  2065. <td align="center" valign="top">No</td>
  2066. </tr>
  2067. <tr>
  2068. <td valign="top">ignoreerrors</td>
  2069. <td valign="top">Log errors but don't treat as fatal.</td>
  2070. <td align="center" valign="top">No</td>
  2071. </tr>
  2072. <tr>
  2073. <td valign="top">usetimestamps</td>
  2074. <td valign="top">conditionally download a file based on the timestamp of the local copy.
  2075. HTTP only</td>
  2076. <td align="center" valign="top">No</td>
  2077. </tr>
  2078. </table>
  2079. <h3>Examples</h3>
  2080. <pre> &lt;get src=&quot;http://jakarta.apache.org/&quot; dest=&quot;help/index.html&quot; /&gt;</pre>
  2081. <p>Gets the index page of http://jakarta.apache.org/, and stores it in the file <code>help/index.html</code>.</p>
  2082. <pre> &lt;get src=&quot;http://jakarta.apache.org/builds/tomcat/nightly/ant.zip&quot;
  2083. dest=&quot;optional.jar&quot;
  2084. verbose=&quot;true&quot;
  2085. usetimestamps=&quot;true&quot;/&gt;</pre>
  2086. <p>
  2087. Gets the nightly ant build from the tomcat distribution, if the local copy
  2088. is missing or out of date. Uses the verbose option
  2089. for progress information.
  2090. </p>
  2091. <hr>
  2092. <h2><a name="gunzip">GUnzip</a></h2>
  2093. <h3>Description</h3>
  2094. <p>Expands a GZip file.</p>
  2095. <p>If <i>dest</i> is a directory the name of the destination file is
  2096. the same as <i>src</i> (with the &quot;.gz&quot; extension removed if
  2097. present). If <i>dest</i> is omitted, the parent dir of <i>src</i> is
  2098. taken. The file is only expanded if the source file is newer than the
  2099. destination file, or when the destination file does not exist.</p>
  2100. <h3>Parameters</h3>
  2101. <table border="1" cellpadding="2" cellspacing="0">
  2102. <tr>
  2103. <td valign="top"><b>Attribute</b></td>
  2104. <td valign="top"><b>Description</b></td>
  2105. <td align="center" valign="top"><b>Required</b></td>
  2106. </tr>
  2107. <tr>
  2108. <td valign="top">src</td>
  2109. <td valign="top">the file to expand.</td>
  2110. <td align="center" valign="top">Yes</td>
  2111. </tr>
  2112. <tr>
  2113. <td valign="top">dest</td>
  2114. <td valign="top">the destination file or directory.</td>
  2115. <td align="center" valign="top">No</td>
  2116. </tr>
  2117. </table>
  2118. <h3>Examples</h3>
  2119. <blockquote>
  2120. <p><code>&lt;gunzip src=&quot;test.tar.gz&quot;/&gt;</code></p>
  2121. </blockquote>
  2122. <p>expands <i>test.tar.gz</i> to <i>test.tar</i></p>
  2123. <blockquote>
  2124. <p><code>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;test2.tar&quot;/&gt;</code></p>
  2125. </blockquote>
  2126. <p>expands <i>test.tar.gz</i> to <i>test2.tar</i></p>
  2127. <blockquote>
  2128. <p><code>&lt;gunzip src=&quot;test.tar.gz&quot; dest=&quot;subdir&quot;/&gt;</code></p>
  2129. </blockquote>
  2130. <p>expands <i>test.tar.gz</i> to <i>subdir/test.tar</i> (assuming
  2131. subdir is a directory).</p>
  2132. <hr>
  2133. <h2><a name="gzip">GZip</a></h2>
  2134. <h3>Description</h3>
  2135. <p>GZips a file.</p>
  2136. <h3>Parameters</h3>
  2137. <table border="1" cellpadding="2" cellspacing="0">
  2138. <tr>
  2139. <td valign="top"><b>Attribute</b></td>
  2140. <td valign="top"><b>Description</b></td>
  2141. <td align="center" valign="top"><b>Required</b></td>
  2142. </tr>
  2143. <tr>
  2144. <td valign="top">src</td>
  2145. <td valign="top">the file to gzip.</td>
  2146. <td align="center" valign="top">Yes</td>
  2147. </tr>
  2148. <tr>
  2149. <td valign="top">zipfile</td>
  2150. <td valign="top">the destination file.</td>
  2151. <td align="center" valign="top">Yes</td>
  2152. </tr>
  2153. </table>
  2154. <h3>Examples</h3>
  2155. <blockquote>
  2156. <p><code>&lt;gzip src=&quot;test.tar&quot; zipfile=&quot;test.tar.gz&quot;
  2157. /&gt;</code></p>
  2158. </blockquote>
  2159. <hr>
  2160. <h2><a name="jar">Jar</a></h2>
  2161. <h3>Description</h3>
  2162. <p>Jars a set of files.</p>
  2163. <p>The <i>basedir</i> attribute is the reference directory from where to jar.</p>
  2164. <p>Note that file permissions will not be stored in the resulting jarfile.</p>
  2165. <p>It is possible to refine the set of files that are being jarred. This can be
  2166. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  2167. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  2168. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  2169. the files you want to have excluded. This is also done with patterns. And
  2170. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  2171. want to use default exclusions or not. See the section on <a
  2172. href="#directorybasedtasks">directory based tasks</a>, on how the
  2173. inclusion/exclusion of files works, and how to write patterns.</p>
  2174. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  2175. supports all attributes of <code>&lt;fileset&gt;</code>
  2176. (<code>dir</code> becomes <code>basedir</code>) as well as the nested
  2177. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  2178. <code>&lt;patternset&gt;</code> elements.</p>
  2179. <p>You can also use nested file sets for more flexibility, and specify
  2180. multiple ones to merge together different trees of files into one JAR.
  2181. See the <a href="#zip">Zip</a> task for more details and examples.</p>
  2182. <p>If the manifest is omitted, a simple one will be supplied by Ant.
  2183. You should not include <samp>META-INF/MANIFEST.MF</samp> in your set of files.
  2184. <p>The <code>whenempty</code> parameter controls what happens when no files match.
  2185. If <code>create</code> (the default), the JAR is created anyway with only a manifest.
  2186. If <code>skip</code>, the JAR is not created and a warning is issued.
  2187. If <code>fail</code>, the JAR is not created and the build is halted with an error.
  2188. <h3>Parameters</h3>
  2189. <table border="1" cellpadding="2" cellspacing="0">
  2190. <tr>
  2191. <td valign="top"><b>Attribute</b></td>
  2192. <td valign="top"><b>Description</b></td>
  2193. <td align="center" valign="top"><b>Required</b></td>
  2194. </tr>
  2195. <tr>
  2196. <td valign="top">jarfile</td>
  2197. <td valign="top">the jar-file to create.</td>
  2198. <td valign="top" align="center">Yes</td>
  2199. </tr>
  2200. <tr>
  2201. <td valign="top">basedir</td>
  2202. <td valign="top">the directory from which to jar the files.</td>
  2203. <td valign="top" align="center">No</td>
  2204. </tr>
  2205. <tr>
  2206. <td valign="top">compress</td>
  2207. <td valign="top">Not only store data but also compress them, defaults to true</td>
  2208. <td align="center" valign="top">No</td>
  2209. </tr>
  2210. <tr>
  2211. <td valign="top">includes</td>
  2212. <td valign="top">comma separated list of patterns of files that must be
  2213. included. All files are included when omitted.</td>
  2214. <td valign="top" align="center">No</td>
  2215. </tr>
  2216. <tr>
  2217. <td valign="top">includesfile</td>
  2218. <td valign="top">the name of a file. Each line of this file is
  2219. taken to be an include pattern</td>
  2220. <td valign="top" align="center">No</td>
  2221. </tr>
  2222. <tr>
  2223. <td valign="top">excludes</td>
  2224. <td valign="top">comma separated list of patterns of files that must be
  2225. excluded. No files (except default excludes) are excluded when omitted.</td>
  2226. <td valign="top" align="center">No</td>
  2227. </tr>
  2228. <tr>
  2229. <td valign="top">excludesfile</td>
  2230. <td valign="top">the name of a file. Each line of this file is
  2231. taken to be an exclude pattern</td>
  2232. <td valign="top" align="center">No</td>
  2233. </tr>
  2234. <tr>
  2235. <td valign="top">defaultexcludes</td>
  2236. <td valign="top">indicates whether default excludes should be used or not
  2237. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  2238. <td valign="top" align="center">No</td>
  2239. </tr>
  2240. <tr>
  2241. <td valign="top">manifest</td>
  2242. <td valign="top">the manifest file to use.</td>
  2243. <td valign="top" align="center">No</td>
  2244. </tr>
  2245. <tr>
  2246. <td valign="top">whenempty</td>
  2247. <td valign="top">Behavior to use if no files match.</td>
  2248. <td valign="top" align="center">No</td>
  2249. </tr>
  2250. </table>
  2251. <h3>Examples</h3>
  2252. <pre> &lt;jar jarfile=&quot;${dist}/lib/app.jar&quot; basedir=&quot;${build}/classes&quot; /&gt;</pre>
  2253. <p>jars all files in the <code>${build}/classes</code> directory in a file
  2254. called <code>app.jar</code> in the <code>${dist}/lib</code> directory.</p>
  2255. <pre> &lt;jar jarfile=&quot;${dist}/lib/app.jar&quot;
  2256. basedir=&quot;${build}/classes&quot;
  2257. excludes=&quot;**/Test.class&quot;
  2258. /&gt;</pre>
  2259. <p>jars all files in the <code>${build}/classes</code> directory in a file
  2260. called <code>app.jar</code> in the <code>${dist}/lib</code> directory. Files
  2261. with the name <code>Test.class</code> are excluded.</p>
  2262. <pre> &lt;jar jarfile=&quot;${dist}/lib/app.jar&quot;
  2263. basedir=&quot;${build}/classes&quot;
  2264. includes=&quot;mypackage/test/**&quot;
  2265. excludes=&quot;**/Test.class&quot;
  2266. /&gt;</pre>
  2267. <p>jars all files in the <code>${build}/classes</code> directory in a file
  2268. called <code>app.jar</code> in the <code>${dist}/lib</code> directory. Only
  2269. files under the directory <code>mypackage/test</code> are used, and files with
  2270. the name <code>Test.class</code> are excluded.</p>
  2271. <pre> &lt;jar jarfile=&quot;${dist}/lib/app.jar&quot;&gt;
  2272. &lt;fileset dir=&quot;${build}/classes&quot;
  2273. excludes=&quot;**/Test.class&quot;
  2274. /&gt;
  2275. &lt;fileset dir=&quot;${src}/resources&quot;/&gt;
  2276. &lt;/jar&gt;</pre>
  2277. <p>jars all files in the <code>${build}/classes</code> directory and also
  2278. in the <code>${src}/resources</code> directory together in a file
  2279. called <code>app.jar</code> in the <code>${dist}/lib</code> directory.
  2280. Files with the name <code>Test.class</code> are excluded.
  2281. If there are files such as <code>${build}/classes/mypackage/MyClass.class</code>
  2282. and <code>${src}/resources/mypackage/image.gif</code>, they will appear
  2283. in the same directory in the JAR (and thus be considered in the same package
  2284. by Java).</p>
  2285. <hr>
  2286. <h2><a name="java">Java</a></h2>
  2287. <h3>Description</h3>
  2288. <p>Executes a Java class within the running (Ant) VM or forks another VM if
  2289. specified.</p>
  2290. <p>Be careful that the executed class doesn't call System.exit(), because it
  2291. will terminate the VM and thus Ant. In case this happens, it's highly suggested
  2292. that you set the fork attribute so that System.exit() stops the other VM and not
  2293. the one that is currently running Ant.</p>
  2294. <h3>Parameters</h3>
  2295. <table border="1" cellpadding="2" cellspacing="0">
  2296. <tr>
  2297. <td valign="top"><b>Attribute</b></td>
  2298. <td valign="top"><b>Description</b></td>
  2299. <td align="center" valign="top"><b>Required</b></td>
  2300. </tr>
  2301. <tr>
  2302. <td valign="top">classname</td>
  2303. <td valign="top">the Java class to execute.</td>
  2304. <td align="center" valign="top">Yes</td>
  2305. </tr>
  2306. <tr>
  2307. <td valign="top">args</td>
  2308. <td valign="top">the arguments for the class that is
  2309. executed. <b>deprecated, use nested <code>&lt;arg&gt;</code>
  2310. elements instead.</b></td>
  2311. <td align="center" valign="top">No</td>
  2312. </tr>
  2313. <tr>
  2314. <td valign="top">classpath</td>
  2315. <td valign="top">the classpath to use.</td>
  2316. <td align="center" valign="top">No</td>
  2317. </tr>
  2318. <tr>
  2319. <td valign="top">classpathref</td>
  2320. <td valign="top">the classpath to use, given as <a
  2321. href="#references">reference</a> to a PATH defined elsewhere.</td>
  2322. <td align="center" valign="top">No</td>
  2323. </tr>
  2324. <tr>
  2325. <td valign="top">fork</td>
  2326. <td valign="top">if enabled triggers the class execution in another VM
  2327. (disabled by default)</td>
  2328. <td align="center" valign="top">No</td>
  2329. </tr>
  2330. <tr>
  2331. <td valign="top">jvm</td>
  2332. <td valign="top">the command used to invoke the Java Virtual Machine,
  2333. default is 'java'. The command is resolved by java.lang.Runtime.exec().
  2334. Ignored if fork is disabled.
  2335. </td>
  2336. <td align="center" valign="top">No</td>
  2337. </tr>
  2338. <tr>
  2339. <td valign="top">jvmargs</td>
  2340. <td valign="top">the arguments to pass to the forked VM (ignored
  2341. if fork is disabled). <b>deprecated, use nested
  2342. <code>&lt;jvmarg&gt;</code> elements instead.</b></td>
  2343. <td align="center" valign="top">No</td>
  2344. </tr>
  2345. <tr>
  2346. <td valign="top">maxmemory</td>
  2347. <td valign="top">Max amount of memory to allocate to the forked VM
  2348. (ignored if fork is disabled)</td>
  2349. <td align="center" valign="top">No</td>
  2350. </tr>
  2351. <tr>
  2352. <td valign="top">failonerror</td>
  2353. <td valign="top">Stop the buildprocess if the command exits with a
  2354. returncode other than 0. Only available if fork is true.</td>
  2355. <td align="center" valign="top">No</td>
  2356. </tr>
  2357. <tr>
  2358. <td valign="top">dir</td>
  2359. <td valign="top">The directory to invoke the VM in. (ignored if
  2360. fork is disabled)</td>
  2361. <td align="center" valign="top">No</td>
  2362. </tr>
  2363. </table>
  2364. <h3>Parameters specified as nested elements</h3>
  2365. <h4>arg and jvmarg</h4>
  2366. <p>Use nested <code>&lt;arg&gt;</code> and <code>&lt;jvmarg&gt;</code>
  2367. elements to specify arguments for the or the forked VM. See <a
  2368. href="index.html#arg">Command line arguments</a>.</p>
  2369. <h4>classpath</h4>
  2370. <p><code>Java</code>'s <em>classpath</em> attribute is a <a
  2371. href="#path">PATH like structure</a> and can also be set via a nested
  2372. <em>classpath</em> element.</p>
  2373. <h5>Example</h5>
  2374. <pre>
  2375. &lt;java classname=&quot;test.Main&quot; &gt;
  2376. &lt;arg value=&quot;-h&quot; /&gt;
  2377. &lt;classpath&gt;
  2378. &lt;pathelement location=&quot;\test.jar&quot; /&gt;
  2379. &lt;pathelement path=&quot;${java.class.path}&quot; /&gt;
  2380. &lt;/classpath&gt;
  2381. &lt;/java&gt;
  2382. </pre>
  2383. <h3>Examples</h3>
  2384. <pre> &lt;java classname=&quot;test.Main&quot; /&gt;</pre>
  2385. <pre> &lt;java classname=&quot;test.Main&quot;
  2386. fork=&quot;yes&quot; &gt;
  2387. &lt;arg value=&quot;-h&quot; /&gt;
  2388. &lt;jvmarg value=&quot;-Xrunhprof:cpu=samples,file=log.txt,depth=3&quot; /&gt;
  2389. &lt;/java&gt;
  2390. </pre>
  2391. <hr>
  2392. <h2><a name="javac">Javac</a></h2>
  2393. <h3>Description</h3>
  2394. <p>Compiles a source tree within the running (Ant) VM.</p>
  2395. <p>The source and destination directory will be recursively scanned for Java
  2396. source files to compile. Only Java files that have no corresponding class file
  2397. or where the class file is older than the java file will be compiled.</p>
  2398. <p>The directory structure of the source tree should follow the package
  2399. hierarchy.</p>
  2400. <p>It is possible to refine the set of files that are being compiled/copied.
  2401. This can be done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  2402. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  2403. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  2404. the files you want to have excluded. This is also done with patterns. And
  2405. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  2406. want to use default exclusions or not. See the section on <a
  2407. href="#directorybasedtasks">directory based tasks</a>, on how the
  2408. inclusion/exclusion of files works, and how to write patterns.</p>
  2409. <p>It is possible to use different compilers. This can be selected with the
  2410. &quot;build.compiler&quot; property. There are three choices:</p>
  2411. <ul>
  2412. <li>classic (the standard compiler of JDK 1.1/1.2)</li>
  2413. <li>modern (the new compiler of JDK 1.3)</li>
  2414. <li>jikes (the <a
  2415. href="http://oss.software.ibm.com/developerworks/opensource/jikes/project">Jikes</a>
  2416. compiler)</li>
  2417. <li>jvc (the Command-Line Compiler from Microsoft's SDK for Java /
  2418. Visual J++)</li>
  2419. </ul>
  2420. <p>For JDK 1.1/1.2 is classic the default. For JDK 1.3 is modern the default.</p>
  2421. <h3>Parameters</h3>
  2422. <table border="1" cellpadding="2" cellspacing="0">
  2423. <tr>
  2424. <td valign="top"><b>Attribute</b></td>
  2425. <td valign="top"><b>Description</b></td>
  2426. <td align="center" valign="top"><b>Required</b></td>
  2427. </tr>
  2428. <tr>
  2429. <td valign="top">srcdir</td>
  2430. <td valign="top">location of the java files.</td>
  2431. <td align="center" valign="top">Yes, unless nested <code>&lt;src&gt;</code> elements are present.</td>
  2432. </tr>
  2433. <tr>
  2434. <td valign="top">destdir</td>
  2435. <td valign="top">location where to store the class files.</td>
  2436. <td align="center" valign="top">Yes</td>
  2437. </tr>
  2438. <tr>
  2439. <td valign="top">includes</td>
  2440. <td valign="top">comma separated list of patterns of files that must be
  2441. included. All files are included when omitted.</td>
  2442. <td valign="top" align="center">No</td>
  2443. </tr>
  2444. <tr>
  2445. <td valign="top">includesfile</td>
  2446. <td valign="top">the name of a file. Each line of this file is
  2447. taken to be an include pattern</td>
  2448. <td valign="top" align="center">No</td>
  2449. </tr>
  2450. <tr>
  2451. <td valign="top">excludes</td>
  2452. <td valign="top">comma separated list of patterns of files that must be
  2453. excluded. No files (except default excludes) are excluded when omitted.</td>
  2454. <td valign="top" align="center">No</td>
  2455. </tr>
  2456. <tr>
  2457. <td valign="top">excludesfile</td>
  2458. <td valign="top">the name of a file. Each line of this file is
  2459. taken to be an exclude pattern</td>
  2460. <td valign="top" align="center">No</td>
  2461. </tr>
  2462. <tr>
  2463. <td valign="top">defaultexcludes</td>
  2464. <td valign="top">indicates whether default excludes should be used or not
  2465. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  2466. <td valign="top" align="center">No</td>
  2467. </tr>
  2468. <tr>
  2469. <td valign="top">classpath</td>
  2470. <td valign="top">the classpath to use.</td>
  2471. <td align="center" valign="top">No</td>
  2472. </tr>
  2473. <tr>
  2474. <td valign="top">bootclasspath</td>
  2475. <td valign="top">location of bootstrap class files.</td>
  2476. <td align="center" valign="top">No</td>
  2477. </tr>
  2478. <tr>
  2479. <td valign="top">classpathref</td>
  2480. <td valign="top">the classpath to use, given as <a
  2481. href="#references">reference</a> to a PATH defined elsewhere.</td>
  2482. <td align="center" valign="top">No</td>
  2483. </tr>
  2484. <tr>
  2485. <td valign="top">bootclasspathref</td>
  2486. <td valign="top">location of bootstrap class files, given as by <a
  2487. href="#references">reference</a> to a PATH defined elsewhere.</td>
  2488. <td align="center" valign="top">No</td>
  2489. </tr>
  2490. <tr>
  2491. <td valign="top">extdirs</td>
  2492. <td valign="top">location of installed extensions.</td>
  2493. <td align="center" valign="top">No</td>
  2494. </tr>
  2495. <tr>
  2496. <td valign="top">encoding</td>
  2497. <td valign="top">encoding of source files.</td>
  2498. <td align="center" valign="top">No</td>
  2499. </tr>
  2500. <tr>
  2501. <td valign="top">debug</td>
  2502. <td valign="top">indicates whether there should be compiled with debug
  2503. information (&quot;on&quot;).</td>
  2504. <td align="center" valign="top">No</td>
  2505. </tr>
  2506. <tr>
  2507. <td valign="top">optimize</td>
  2508. <td valign="top">indicates whether there should be compiled with
  2509. optimization (&quot;on&quot;).</td>
  2510. <td align="center" valign="top">No</td>
  2511. </tr>
  2512. <tr>
  2513. <td valign="top">deprecation</td>
  2514. <td valign="top">indicates whether there should be compiled with deprecation
  2515. information (&quot;on&quot;).</td>
  2516. <td align="center" valign="top">No</td>
  2517. </tr>
  2518. <tr>
  2519. <td valign="top">target</td>
  2520. <td valign="top">Generate class files for specific VM version, e.g.
  2521. &quot;1.1&quot; or &quot;1.2&quot;.</td>
  2522. <td align="center" valign="top">No</td>
  2523. </tr>
  2524. <tr>
  2525. <td valign="top">verbose</td>
  2526. <td valign="top">asks the compiler for verbose output.</td>
  2527. <td align="center" valign="top">No</td>
  2528. </tr>
  2529. <tr>
  2530. <td valign="top">depend</td> <td valign="top">enables dependency
  2531. tracking for compilers that support this (jikes and modern)</td>
  2532. <td align="center" valign="top">No</td>
  2533. </tr>
  2534. </table>
  2535. <h3>Parameters specified as nested elements</h3>
  2536. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  2537. supports all attributes of <code>&lt;fileset&gt;</code>
  2538. (<code>dir</code> becomes <code>srcdir</code>) as well as the nested
  2539. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  2540. <code>&lt;patternset&gt;</code> elements.</p>
  2541. <h4>src, classpath, bootclasspath and extdirs</h4>
  2542. <p><code>Javac</code>'s <em>srcdir</em>, <em>classpath</em>,
  2543. <em>bootclasspath</em> and <em>extdirs</em> attributes are <a
  2544. href="#path">PATH like structure</a> and can also be set via nested
  2545. <em>src</em>, <em>classpath</em>, <em>bootclasspath</em> and
  2546. <em>extdirs</em> elements respectively.</p>
  2547. <h3>Examples</h3>
  2548. <pre> &lt;javac srcdir=&quot;${src}&quot;
  2549. destdir=&quot;${build}&quot;
  2550. classpath=&quot;xyz.jar&quot;
  2551. debug=&quot;on&quot;
  2552. /&gt;</pre>
  2553. <p>compiles all .java files under the directory <code>${src}</code>, and stores
  2554. the .class files in the directory <code>${build}</code>.
  2555. The classpath used contains <code>xyz.jar</code>, and debug information is on.</p>
  2556. <pre> &lt;javac srcdir=&quot;${src}&quot;
  2557. destdir=&quot;${build}&quot;
  2558. includes=&quot;mypackage/p1/**,mypackage/p2/**&quot;
  2559. excludes=&quot;mypackage/p1/testpackage/**&quot;
  2560. classpath=&quot;xyz.jar&quot;
  2561. debug=&quot;on&quot;
  2562. /&gt;</pre>
  2563. <p>compiles .java files under the directory <code>${src}</code>, and stores the
  2564. .class files in the directory <code>${build}</code>.
  2565. The classpath used contains <code>xyz.jar</code>, and debug information is on.
  2566. Only files under <code>mypackage/p1</code> and <code>mypackage/p2</code> are
  2567. used. Files in the <code>mypackage/p1/testpackage</code> directory are excluded
  2568. form compilation and copy.</p>
  2569. <pre> &lt;javac srcdir=&quot;${src}:${src2}&quot;
  2570. destdir=&quot;${build}&quot;
  2571. includes=&quot;mypackage/p1/**,mypackage/p2/**&quot;
  2572. excludes=&quot;mypackage/p1/testpackage/**&quot;
  2573. classpath=&quot;xyz.jar&quot;
  2574. debug=&quot;on&quot;
  2575. /&gt;</pre>
  2576. <p>is the same as the previous example with the addition of a second source path, defined by
  2577. the propery <code>src2</code>. This can also be represented using nested elements as follows
  2578. <pre> &lt;javac destdir=&quot;${build}&quot;
  2579. classpath=&quot;xyz.jar&quot;
  2580. debug=&quot;on&quot;&gt;
  2581. &lt;src path=&quot;${src}&quot; /&gt;
  2582. &lt;src path=&quot;${src2}&quot; /&gt;
  2583. &lt;include name=&quot;mypackage/p1/**,mypackage/p2/**&quot; /&gt;
  2584. &lt;exclude name=&quot;mypackage/p1/testpackage/**&quot; /&gt;
  2585. &lt;/javac&gt;</pre>
  2586. <p><b>Note:</b> If you are using Ant on Windows and a new DOS-Window pops up
  2587. for every use of an external compiler this may be a problem of the JDK you are using.
  2588. This problem may occur with all JDK's &lt; 1.2.</p>
  2589. <hr>
  2590. <h2><a name="javadoc">Javadoc/Javadoc2</a></h2>
  2591. <h3>Description</h3>
  2592. <p>Generates code documentation using the javadoc tool.</p>
  2593. <p>The source directory will be recursively scanned for Java source files to process
  2594. but only those matching the inclusion rules will be passed to the javadoc tool. This
  2595. allows wildcards to be used to choose between package names, reducing verbosity
  2596. and management costs over time. This task, however, has no notion of
  2597. &quot;changed&quot; files, unlike the <a href="#javac">javac</a> task. This means
  2598. all packages will be processed each time this task is run. In general, however,
  2599. this task is used much less frequently.</p>
  2600. <p>This task works seamlessly between different javadoc versions (1.1 and 1.2),
  2601. with the obvious restriction that the 1.2 attributes will be ignored if run in a
  2602. 1.1 VM.</p>
  2603. <p>NOTE: since javadoc calls System.exit(), javadoc cannot be run inside the
  2604. same VM as ant without breaking functionality. For this reason, this task
  2605. always forks the VM. This overhead is not significant since javadoc is normally a heavy
  2606. application and will be called infrequently.</p>
  2607. <p>NOTE: the packagelist attribute allows you to specify the list of packages to
  2608. document outside of the Ant file. It's a much better practice to include everything
  2609. inside the build.xml file. This option was added in order to make it easier to
  2610. migrate from regular makefiles, where you would use this option of javadoc.
  2611. The packages listed in packagelist are not checked, so the task performs even
  2612. if some packages are missing or broken. Use this option if you wish to convert from
  2613. an existing makefile. Once things are running you should then switch to the regular
  2614. notation.
  2615. <p>DEPRECATION: the javadoc2 task simply points to the javadoc task and it's
  2616. there for back compatibility reasons. Since this task will be removed in future
  2617. versions, you are strongly encouraged to use <a href="#javadoc">javadoc</a>
  2618. instead.</p>
  2619. <h3>Parameters</h3>
  2620. <table border="1" cellpadding="2" cellspacing="0">
  2621. <tr>
  2622. <td valign="top"><b>Attribute</b></td>
  2623. <td valign="top"><b>Description</b></td>
  2624. <td align="center" valign="top"><b>Availability</b></td>
  2625. <td align="center" valign="top"><b>Required</b></td>
  2626. </tr>
  2627. <tr>
  2628. <td valign="top">sourcepath</td>
  2629. <td valign="top">Specify where to find source files</td>
  2630. <td align="center" valign="top">all</td>
  2631. <td align="center" rowspan="2">At least one of the two or nested
  2632. <code>&lt;sourcepath&gt;</code></td>
  2633. </tr>
  2634. <tr>
  2635. <td valign="top">sourcepathref</td>
  2636. <td valign="top">Specify where to find source files by <a
  2637. href="#references">reference</a> to a PATH defined elsewhere.</td>
  2638. <td align="center" valign="top">all</td>
  2639. </tr>
  2640. <tr>
  2641. <td valign="top">destdir</td>
  2642. <td valign="top">Destination directory for output files</td>
  2643. <td align="center" valign="top">all</td>
  2644. <td align="center" valign="top">Yes</td>
  2645. </tr>
  2646. <tr>
  2647. <td valign="top">maxmemory</td>
  2648. <td valign="top">Max amount of memory to allocate to the javadoc VM</td>
  2649. <td align="center" valign="top">all</td>
  2650. <td align="center" valign="top">No</td>
  2651. </tr>
  2652. <tr>
  2653. <td valign="top">sourcefiles</td>
  2654. <td valign="top">Space separated list of source files</td>
  2655. <td align="center" valign="top">all</td>
  2656. <td align="center" valign="middle" rowspan="2">at least one of the two</td>
  2657. </tr>
  2658. <tr>
  2659. <td valign="top">packagenames</td>
  2660. <td valign="top">Comma separated list of package files (with terminating
  2661. wildcard)</td>
  2662. <td align="center" valign="top">all</td>
  2663. </tr>
  2664. <tr>
  2665. <td valign="top">packageList</td>
  2666. <td valign="top">The name of a file containing the packages to process</td>
  2667. <td align="center" valign="top">all</td>
  2668. <td align="center" valign="top">No</td>
  2669. </tr>
  2670. <tr>
  2671. <td valign="top">classpath</td>
  2672. <td valign="top">Specify where to find user class files</td>
  2673. <td align="center" valign="top">all</td>
  2674. <td align="center" valign="top">No</td>
  2675. </tr>
  2676. <tr>
  2677. <td valign="top">Bootclasspath</td>
  2678. <td valign="top">Override location of class files loaded by the bootstrap
  2679. class loader</td>
  2680. <td align="center" valign="top">1.2</td>
  2681. <td align="center" valign="top">No</td>
  2682. </tr>
  2683. <tr>
  2684. <td valign="top">classpathref</td>
  2685. <td valign="top">Specify where to find user class files by <a
  2686. href="#references">reference</a> to a PATH defined elsewhere.</td>
  2687. <td align="center" valign="top">all</td>
  2688. <td align="center" valign="top">No</td>
  2689. </tr>
  2690. <tr>
  2691. <td valign="top">bootclasspathref</td>
  2692. <td valign="top">Override location of class files loaded by the
  2693. bootstrap class loader by <a href="#references">reference</a> to a
  2694. PATH defined elsewhere.</td>
  2695. <td align="center" valign="top">1.2</td>
  2696. <td align="center" valign="top">No</td>
  2697. </tr>
  2698. <tr>
  2699. <td valign="top">Extdirs</td>
  2700. <td valign="top">Override location of installed extensions</td>
  2701. <td align="center" valign="top">1.2</td>
  2702. <td align="center" valign="top">No</td>
  2703. </tr>
  2704. <tr>
  2705. <td valign="top">Overview</td>
  2706. <td valign="top">Read overview documentation from HTML file</td>
  2707. <td align="center" valign="top">1.2</td>
  2708. <td align="center" valign="top">No</td>
  2709. </tr>
  2710. <tr>
  2711. <td valign="top">Public</td>
  2712. <td valign="top">Show only public classes and members</td>
  2713. <td align="center" valign="top">all</td>
  2714. <td align="center" valign="top">No</td>
  2715. </tr>
  2716. <tr>
  2717. <td valign="top">Protected</td>
  2718. <td valign="top">Show protected/public classes and members (default)</td>
  2719. <td align="center" valign="top">all</td>
  2720. <td align="center" valign="top">No</td>
  2721. </tr>
  2722. <tr>
  2723. <td valign="top">Package</td>
  2724. <td valign="top">Show package/protected/public classes and members</td>
  2725. <td align="center" valign="top">all</td>
  2726. <td align="center" valign="top">No</td>
  2727. </tr>
  2728. <tr>
  2729. <td valign="top">Private</td>
  2730. <td valign="top">Show all classes and members</td>
  2731. <td align="center" valign="top">all</td>
  2732. <td align="center" valign="top">No</td>
  2733. </tr>
  2734. <tr>
  2735. <td valign="top">Old</td>
  2736. <td valign="top">Generate output using JDK 1.1 emulating doclet</td>
  2737. <td align="center" valign="top">1.2</td>
  2738. <td align="center" valign="top">No</td>
  2739. </tr>
  2740. <tr>
  2741. <td valign="top">Verbose</td>
  2742. <td valign="top">Output messages about what Javadoc is doing</td>
  2743. <td align="center" valign="top">1.2</td>
  2744. <td align="center" valign="top">No</td>
  2745. </tr>
  2746. <tr>
  2747. <td valign="top">Locale</td>
  2748. <td valign="top">Locale to be used, e.g. en_US or en_US_WIN</td>
  2749. <td align="center" valign="top">1.2</td>
  2750. <td align="center" valign="top">No</td>
  2751. </tr>
  2752. <tr>
  2753. <td valign="top">Encoding</td>
  2754. <td valign="top">Source file encoding name</td>
  2755. <td align="center" valign="top">all</td>
  2756. <td align="center" valign="top">No</td>
  2757. </tr>
  2758. <tr>
  2759. <td valign="top">Version</td>
  2760. <td valign="top">Include @version paragraphs</td>
  2761. <td align="center" valign="top">all</td>
  2762. <td align="center" valign="top">No</td>
  2763. </tr>
  2764. <tr>
  2765. <td valign="top">Use</td>
  2766. <td valign="top">Create class and package usage pages</td>
  2767. <td align="center" valign="top">1.2</td>
  2768. <td align="center" valign="top">No</td>
  2769. </tr>
  2770. <tr>
  2771. <td valign="top">Author</td>
  2772. <td valign="top">Include @author paragraphs</td>
  2773. <td align="center" valign="top">all</td>
  2774. <td align="center" valign="top">No</td>
  2775. </tr>
  2776. <tr>
  2777. <td valign="top">Splitindex</td>
  2778. <td valign="top">Split index into one file per letter</td>
  2779. <td align="center" valign="top">1.2</td>
  2780. <td align="center" valign="top">No</td>
  2781. </tr>
  2782. <tr>
  2783. <td valign="top">Windowtitle</td>
  2784. <td valign="top">Browser window title for the documentation (text)</td>
  2785. <td align="center" valign="top">1.2</td>
  2786. <td align="center" valign="top">No</td>
  2787. </tr>
  2788. <tr>
  2789. <td valign="top">Doctitle</td>
  2790. <td valign="top">Include title for the package index(first) page (html-code)</td>
  2791. <td align="center" valign="top">1.2</td>
  2792. <td align="center" valign="top">No</td>
  2793. </tr>
  2794. <tr>
  2795. <td valign="top">Header</td>
  2796. <td valign="top">Include header text for each page (html-code)</td>
  2797. <td align="center" valign="top">1.2</td>
  2798. <td align="center" valign="top">No</td>
  2799. </tr>
  2800. <tr>
  2801. <td valign="top">Footer</td>
  2802. <td valign="top">Include footer text for each page (html-code)</td>
  2803. <td align="center" valign="top">1.2</td>
  2804. <td align="center" valign="top">No</td>
  2805. </tr>
  2806. <tr>
  2807. <td valign="top">bottom</td>
  2808. <td valign="top">Include bottom text for each page (html-code)</td>
  2809. <td align="center" valign="top">1.2</td>
  2810. <td align="center" valign="top">No</td>
  2811. </tr>
  2812. <tr>
  2813. <td valign="top">link</td>
  2814. <td valign="top">Create links to javadoc output at the given URL</td>
  2815. <td align="center" valign="top">1.2</td>
  2816. <td align="center" valign="top">No</td>
  2817. </tr>
  2818. <tr>
  2819. <td valign="top">linkoffline</td>
  2820. <td valign="top">Link to docs at &lt;url&gt; using package list at
  2821. &lt;url2&gt;</td>
  2822. <td align="center" valign="top">1.2</td>
  2823. <td align="center" valign="top">No</td>
  2824. </tr>
  2825. <tr>
  2826. <td valign="top">group</td>
  2827. <td valign="top">Group specified packages together in overview page</td>
  2828. <td align="center" valign="top">1.2</td>
  2829. <td align="center" valign="top">No</td>
  2830. </tr>
  2831. <tr>
  2832. <td valign="top">nodeprecated</td>
  2833. <td valign="top">Do not include @deprecated information</td>
  2834. <td align="center" valign="top">all</td>
  2835. <td align="center" valign="top">No</td>
  2836. </tr>
  2837. <tr>
  2838. <td valign="top">nodeprecatedlist</td>
  2839. <td valign="top">Do not generate deprecated list</td>
  2840. <td align="center" valign="top">1.2</td>
  2841. <td align="center" valign="top">No</td>
  2842. </tr>
  2843. <tr>
  2844. <td valign="top">notree</td>
  2845. <td valign="top">Do not generate class hierarchy</td>
  2846. <td align="center" valign="top">all</td>
  2847. <td align="center" valign="top">No</td>
  2848. </tr>
  2849. <tr>
  2850. <td valign="top">noindex</td>
  2851. <td valign="top">Do not generate index</td>
  2852. <td align="center" valign="top">all</td>
  2853. <td align="center" valign="top">No</td>
  2854. </tr>
  2855. <tr>
  2856. <td valign="top">nohelp</td>
  2857. <td valign="top">Do not generate help link</td>
  2858. <td align="center" valign="top">1.2</td>
  2859. <td align="center" valign="top">No</td>
  2860. </tr>
  2861. <tr>
  2862. <td valign="top">nonavbar</td>
  2863. <td valign="top">Do not generate navigation bar</td>
  2864. <td align="center" valign="top">1.2</td>
  2865. <td align="center" valign="top">No</td>
  2866. </tr>
  2867. <tr>
  2868. <td valign="top">serialwarn</td>
  2869. <td valign="top">FUTURE: Generate warning about @serial tag</td>
  2870. <td align="center" valign="top">1.2</td>
  2871. <td align="center" valign="top">No</td>
  2872. </tr>
  2873. <tr>
  2874. <td valign="top">helpfile</td>
  2875. <td valign="top">FUTURE: Specifies the HTML help file to use</td>
  2876. <td align="center" valign="top">1.2</td>
  2877. <td align="center" valign="top">No</td>
  2878. </tr>
  2879. <tr>
  2880. <td valign="top">stylesheetfile</td>
  2881. <td valign="top">Specifies the CSS stylesheet to use</td>
  2882. <td align="center" valign="top">1.2</td>
  2883. <td align="center" valign="top">No</td>
  2884. </tr>
  2885. <tr>
  2886. <td valign="top">charset</td>
  2887. <td valign="top">FUTURE: Charset for cross-platform viewing of generated
  2888. documentation</td>
  2889. <td align="center" valign="top">1.2</td>
  2890. <td align="center" valign="top">No</td>
  2891. </tr>
  2892. <tr>
  2893. <td valign="top">docencoding</td>
  2894. <td valign="top">Output file encoding name</td>
  2895. <td align="center" valign="top">1.1</td>
  2896. <td align="center" valign="top">No</td>
  2897. </tr>
  2898. <tr>
  2899. <td valign="top">doclet</td>
  2900. <td valign="top">Specifies the class file that starts the doclet used in generating the documentation.</td>
  2901. <td align="center" valign="top">1.2</td>
  2902. <td align="center" valign="top">No</td>
  2903. </tr>
  2904. <tr>
  2905. <td valign="top">docletpath</td>
  2906. <td valign="top">Specifies the path to the doclet class file that is specified with the -doclet option.</td>
  2907. <td align="center" valign="top">1.2</td>
  2908. <td align="center" valign="top">No</td>
  2909. </tr>
  2910. <tr>
  2911. <td valign="top">docletpathref</td>
  2912. <td valign="top">Specifies the path to the doclet class file that
  2913. is specified with the -doclet option by <a
  2914. href="#references">reference</a> to a PATH defined elsewhere.</td>
  2915. <td align="center" valign="top">1.2</td>
  2916. <td align="center" valign="top">No</td>
  2917. </tr>
  2918. <tr>
  2919. <td valign="top">additionalparam</td>
  2920. <td valign="top">Lets you add additional parameters to the javadoc command line. Useful for doclets</td>
  2921. <td align="center" valign="top">1.2</td>
  2922. <td align="center" valign="top">No</td>
  2923. </tr>
  2924. <tr>
  2925. <td valign="top">failonerror</td>
  2926. <td valign="top">Stop the buildprocess if the command exits with a
  2927. returncode other than 0.</td>
  2928. <td align="center" valign="top">all</td>
  2929. <td align="center" valign="top">No</td>
  2930. </tr>
  2931. </table>
  2932. <h3>Parameters specified as nested elements</h3>
  2933. <h4>link</h4>
  2934. <p>Create link to javadoc output at the given URL. This performs the
  2935. same role as the link and linkoffline attributes. You can use either
  2936. syntax (or both at once), but with the nested elements you can easily
  2937. specify multiple occurrences of the arguments.</p>
  2938. <h4>Parameters</h4>
  2939. <table width="60%" border="1" cellpadding="2" cellspacing="0">
  2940. <tr>
  2941. <td valign="top"><b>Attribute</b></td>
  2942. <td valign="top"><b>Description</b></td>
  2943. <td align="center" valign="top"><b>Required</b></td>
  2944. </tr>
  2945. <tr>
  2946. <td valign="top">href</td>
  2947. <td valign="top">The URL for the external documentation you wish to link to</td>
  2948. <td align="center" valign="top">Yes</td>
  2949. </tr>
  2950. <tr>
  2951. <td valign="top">offline</td>
  2952. <td valign="top">True if this link is not available online at the time of
  2953. generating the documentation</td>
  2954. <td align="center" valign="top">No</td>
  2955. </tr>
  2956. <tr>
  2957. <td valign="top">packagelistLoc</td>
  2958. <td valign="top">The location to the directory containing the package-list file for
  2959. the external documentation</td>
  2960. <td align="center" valign="top">Only if the offline attribute is true</td>
  2961. </tr>
  2962. </table>
  2963. <h4>groups</h4>
  2964. <p>Separates packages on the overview page into whatever groups you
  2965. specify, one group per table. This performs the same role as the group
  2966. attribute. You can use either syntax (or both at once), but with the
  2967. nested elements you can easily specify multiple occurrences of the
  2968. arguments.</p>
  2969. <table width="60%" border="1" cellpadding="2" cellspacing="0">
  2970. <tr>
  2971. <td valign="top"><b>Attribute</b></td>
  2972. <td valign="top"><b>Description</b></td>
  2973. <td align="center" valign="top"><b>Required</b></td>
  2974. </tr>
  2975. <tr>
  2976. <td valign="top">title</td>
  2977. <td valign="top">Title of the group</td>
  2978. <td align="center" valign="top">Yes</td>
  2979. </tr>
  2980. <tr>
  2981. <td valign="top">packages</td>
  2982. <td valign="top">List of packages to include in that group</td>
  2983. <td align="center" valign="top">Yes</td>
  2984. </tr>
  2985. </table>
  2986. <h4>sourcepath, classpath and bootclasspath</h4>
  2987. <p><code>Javadoc</code>'s <em>sourcepath</em>, <em>classpath</em> and
  2988. <em>bootclasspath</em> attributes are <a href="#path">PATH like
  2989. structure</a> and can also be set via nested <em>sourcepath</em>,
  2990. <em>classpath</em> and <em>bootclasspath</em> elements
  2991. respectively.</p>
  2992. <h3>Example</h3>
  2993. <pre> &lt;javadoc packagenames=&quot;com.dummy.test.*&quot;
  2994. sourcepath=&quot;src&quot;
  2995. destdir=&quot;docs/api&quot;
  2996. author=&quot;true&quot;
  2997. version=&quot;true&quot;
  2998. use=&quot;true&quot;
  2999. windowtitle=&quot;Test API&quot;
  3000. doctitle=&quot;&lt;h1&gt;Test&lt;/h1&gt;&quot;
  3001. bottom=&quot;&lt;i&gt;Copyright &amp;#169; 2000 Dummy Corp. All Rights Reserved.&lt;/i&gt;&quot;&gt;
  3002. &lt;group title=&quot;Group 1 Packages&quot; packages=&quot;com.dummy.test.a*&quot;/&gt;
  3003. &lt;group title=&quot;Group 2 Packages&quot; packages=&quot;com.dummy.test.b*&quot;/&gt;
  3004. &lt;link offline=&quot;true&quot; href=&quot;http://java.sun.com/products/jdk/1.2/docs/api/&quot; packagelistLoc=&quot;C:\tmp&quot;/&gt;
  3005. &lt;link href=&quot;http://developer.java.sun.com/developer/products/xml/docs/api/&quot;/&gt;
  3006. &lt/javadoc&gt;</pre>
  3007. <hr>
  3008. <h2><a name="mail">Mail</a></h2>
  3009. <h3>Description</h3>
  3010. <p>A task to send SMTP email.</p>
  3011. <h3>Parameters</h3>
  3012. <table border="1" cellpadding="2" cellspacing="0">
  3013. <tr>
  3014. <td valign="top"><b>Attribute</b></td>
  3015. <td valign="top"><b>Description</b></td>
  3016. <td align="center" valign="top"><b>Required</b></td>
  3017. </tr>
  3018. <tr>
  3019. <td valign="top">from</td>
  3020. <td valign="top">Email address of sender.</td>
  3021. <td align="center" valign="top">Yes</td>
  3022. </tr>
  3023. <tr>
  3024. <td valign="top">tolist</td>
  3025. <td valign="top">Comma-separated list of recipients.</td>
  3026. <td align="center" valign="top">Yes</td>
  3027. </tr>
  3028. <tr>
  3029. <td valign="top">message</td>
  3030. <td valign="top">Message to send in the body of the email.</td>
  3031. <td align="center" valign="middle" rowspan="2">Yes</td>
  3032. </tr>
  3033. <tr>
  3034. <td valign="top">files</td>
  3035. <td valign="top">Filename(s) of text to send in the body of the email.
  3036. Multiple files are comma-separated.</td>
  3037. </tr>
  3038. <tr>
  3039. <td valign="top">mailhost</td>
  3040. <td valign="top">Host name of the mail server.</td>
  3041. <td align="center" valign="top">No, default to &quot;localhost&quot;</td>
  3042. </tr>
  3043. <tr>
  3044. <td valign="top">subject</td>
  3045. <td valign="top">Email subject line.</td>
  3046. <td align="center" valign="top">No</td>
  3047. </tr>
  3048. </table>
  3049. <h3>Examples</h3>
  3050. <pre>
  3051. &lt;mail from=&quot;me&quot; tolist=&quot;you&quot; subject=&quot;Results of nightly build&quot;
  3052. files=&quot;build.log&quot;/&gt;</pre>
  3053. <p>Sends an eMail from <i>me</i> to <i>you</i> with a subject of
  3054. <i>Results of nightly build</i> and includes the contents of <i>build.log</i>
  3055. in the body of the message.</p>
  3056. <hr>
  3057. <h2><a name="mkdir">Mkdir</a></h2>
  3058. <h3>Description</h3>
  3059. <p>Creates a directory. Also non-existent parent directories are created, when
  3060. necessary.</p>
  3061. <h3>Parameters</h3>
  3062. <table border="1" cellpadding="2" cellspacing="0">
  3063. <tr>
  3064. <td valign="top"><b>Attribute</b></td>
  3065. <td valign="top"><b>Description</b></td>
  3066. <td align="center" valign="top"><b>Required</b></td>
  3067. </tr>
  3068. <tr>
  3069. <td valign="top">dir</td>
  3070. <td valign="top">the directory to create.</td>
  3071. <td align="center" valign="top">Yes</td>
  3072. </tr>
  3073. </table>
  3074. <h3>Examples</h3>
  3075. <pre>&lt;mkdir dir=&quot;${dist}&quot; /&gt;</pre>
  3076. <p>creates a directory <code>${dist}</code>.</p>
  3077. <pre>&lt;mkdir dir=&quot;${dist}/lib&quot; /&gt;</pre>
  3078. <p>creates a directory <code>${dist}/lib</code>.</p>
  3079. <hr>
  3080. <h2><a name="patch">Patch</a></h2>
  3081. <h3>Description</h3>
  3082. <p>Applies a diff file to originals.
  3083. <h3>Parameters</h3>
  3084. <table border="1" cellpadding="2" cellspacing="0">
  3085. <tr>
  3086. <td valign="top"><b>Attribute</b></td>
  3087. <td valign="top"><b>Description</b></td>
  3088. <td align="center" valign="top"><b>Required</b></td>
  3089. </tr>
  3090. <tr>
  3091. <td valign="top">patchfile</td>
  3092. <td valign="top">the file that includes the diff output</td>
  3093. <td align="center" valign="top">Yes</td>
  3094. </tr>
  3095. <tr>
  3096. <td valign="top">originalfile</td>
  3097. <td valign="top">the file to patch</td>
  3098. <td align="center" valign="top">No, tries to guess it from the diff
  3099. file</td>
  3100. </tr>
  3101. <tr>
  3102. <td valign="top">backups</td>
  3103. <td valign="top">Keep backups of the unpatched files</td>
  3104. <td align="center" valign="top">No</td>
  3105. </tr>
  3106. <tr>
  3107. <td valign="top">quiet</td>
  3108. <td valign="top">Work silently unless an error occurs</td>
  3109. <td align="center" valign="top">No</td>
  3110. </tr>
  3111. <tr>
  3112. <td valign="top">reverse</td>
  3113. <td valign="top">Assume patch was created with old and new files
  3114. swapped.</td>
  3115. <td align="center" valign="top">No</td>
  3116. </tr>
  3117. <tr>
  3118. <td valign="top">ignorewhitespace</td>
  3119. <td valign="top">Ignore whitespace differences.</td>
  3120. <td align="center" valign="top">No</td>
  3121. </tr>
  3122. <tr>
  3123. <td valign="top">strip</td>
  3124. <td valign="top">Strip the smallest prefix containing <i>num</i> leading
  3125. slashes from filenames.</td>
  3126. <td align="center" valign="top">No</td>
  3127. </tr>
  3128. </table>
  3129. <h3>Examples</h3>
  3130. <pre> &lt;patch patchfile=&quot;module.1.0-1.1.patch&quot; /&gt;</pre>
  3131. <p>applies the diff included in <i>module.1.0-1.1.patch</i> to the
  3132. files in base directory guessing the filename(s) from the diff output.
  3133. <pre> &lt;patch patchfile=&quot;module.1.0-1.1.patch&quot; strip=&quot;1&quot; /&gt;</pre>
  3134. <p>like above but one leading directory part will be removed. i.e. if
  3135. the diff output looked like
  3136. <pre>
  3137. --- a/mod1.0/A Mon Jun 5 17:28:41 2000
  3138. +++ a/mod1.1/A Mon Jun 5 17:28:49 2000
  3139. </pre>
  3140. the leading <i>a/</i> will be stripped.
  3141. <hr>
  3142. <h2><a name="property">Property</a></h2>
  3143. <h3>Description</h3>
  3144. <p>Sets a property (by name and value), or set of properties (from file or
  3145. resource) in the project.</p>
  3146. <p>When a property was set by the user, or was a property in a parent project
  3147. (that started this project with the <a href="#ant">ant task</a>), then this
  3148. property cannot be set, and will be ignored. This means that properties set
  3149. outside the current project always override the properties of the current
  3150. project.</p>
  3151. <p>There are four ways to set properties:</p>
  3152. <ul>
  3153. <li>By supplying both the <i>name</i> and <i>value</i> attribute.</li>
  3154. <li>By supplying both the <i>name</i> and <i>refid</i> attribute.</li>
  3155. <li>By setting the <i>file</i> attribute with the filename of the property
  3156. file to load. This property file has the format as defined by the file used
  3157. in the class java.util.Properties.</li>
  3158. <li>By setting the <i>resource</i> attribute with the resource name of the
  3159. property file to load. This property file has the format as defined by the
  3160. file used in the class java.util.Properties.</li>
  3161. </ul>
  3162. <p>Although combinations of the three ways are possible, only one should be used
  3163. at a time. Problems might occur with the order in which properties are set, for
  3164. instance.</p>
  3165. <p>The value part of the properties being set, might contain references to other
  3166. properties. These references are resolved at the time these properties are set.
  3167. This also holds for properties loaded from a property file.</p>
  3168. <h3>Parameters</h3>
  3169. <table border="1" cellpadding="2" cellspacing="0">
  3170. <tr>
  3171. <td valign="top"><b>Attribute</b></td>
  3172. <td valign="top"><b>Description</b></td>
  3173. <td align="center" valign="top"><b>Required</b></td>
  3174. </tr>
  3175. <tr>
  3176. <td valign="top">name</td>
  3177. <td valign="top">the name of the property to set.</td>
  3178. <td valign="top" align="center">Yes</td>
  3179. </tr>
  3180. <tr>
  3181. <td valign="top">value</td>
  3182. <td valign="top">the value of the property.</td>
  3183. <td valign="middle" align="center" rowspan="4">Yes</td>
  3184. </tr>
  3185. <tr>
  3186. <td valign="top">refid</td>
  3187. <td valign="top"><a href="#references">Reference</a> to an object
  3188. defined elsewhere. Only yields reasonable results for references
  3189. to <a href="#path">PATH like structures</a> or properties.</td>
  3190. </tr>
  3191. <tr>
  3192. <td valign="top">resource</td>
  3193. <td valign="top">the resource name of the property file.</td>
  3194. </tr>
  3195. <tr>
  3196. <td valign="top">file</td>
  3197. <td valign="top">the filename of the property file .</td>
  3198. </tr>
  3199. </table>
  3200. <h3>Examples</h3>
  3201. <pre> &lt;property name=&quot;foo.dist&quot; value=&quot;dist&quot; /&gt;</pre>
  3202. <p>sets the property <code>foo.dist</code> to the value &quot;dist&quot;.</p>
  3203. <pre> &lt;property file=&quot;foo.properties&quot; /&gt;</pre>
  3204. <p>reads a set of properties from a file called &quot;foo.properties&quot;.</p>
  3205. <pre> &lt;property resource=&quot;foo.properties&quot; /&gt;</pre>
  3206. <p>reads a set of properties from a resource called &quot;foo.properties&quot;.</p>
  3207. <p>Note that you can reference a global properties file for all of your Ant
  3208. builds using the following:
  3209. <pre> &lt;property file=&quot;${user.home}/.ant-global.properties&quot; /&gt;</pre>
  3210. <p>since the &quot;user.home&quot; property is defined by the Java virtual machine
  3211. to be your home directory. This technique is more appropriate for Unix than
  3212. Windows since the notion of a home directory doesn't exist on Windows. On the
  3213. JVM that I tested, the home directory on Windows is &quot;C:\&quot;. Different JVM
  3214. implementations may use other values for the home directory on Windows.
  3215. <hr>
  3216. <h2><a name="rename">Rename</a></h2>
  3217. <h3>Description</h3>
  3218. <p>Renames a given file.</p>
  3219. <h3>Parameters</h3>
  3220. <table border="1" cellpadding="2" cellspacing="0">
  3221. <tr>
  3222. <td valign="top"><b>Attribute</b></td>
  3223. <td valign="top"><b>Description</b></td>
  3224. <td align="center" valign="top"><b>Required</b></td>
  3225. </tr>
  3226. <tr>
  3227. <td valign="top">src</td>
  3228. <td valign="top">file to rename.</td>
  3229. <td valign="top" align="center">Yes</td>
  3230. </tr>
  3231. <tr>
  3232. <td valign="top">dest</td>
  3233. <td valign="top">new name of the file.</td>
  3234. <td valign="top" align="center">Yes</td>
  3235. </tr>
  3236. <tr>
  3237. <td valign="top">replace</td>
  3238. <td valign="top">Enable replacing of existing file (default: on).</td>
  3239. <td valign="top" align="center">No</td>
  3240. </tr>
  3241. </table>
  3242. <h3>Examples</h3>
  3243. <pre> &lt;rename src=&quot;foo.jar&quot; dest=&quot;${name}-${version}.jar&quot; /&gt;</pre>
  3244. <p>Renames the file <code>foo.jar</code> to <code>${name}-${version}.jar</code> (assuming <code>name</code>
  3245. and <code>version</code> being predefined properties). If a file named <code>${name}-${version}.jar</code>
  3246. already exists, it will be removed prior to renaming <code>foo.jar</code>.</p>
  3247. <hr>
  3248. <h2><a name="replace">Replace</a></h2>
  3249. <h3>Description</h3>
  3250. <p>Replace is a directory based task for replacing the occurrence of a given string with another string
  3251. in selected file.</p>
  3252. <p>If you want to replace a text that crosses line boundaries, you
  3253. must use a nested <code>&lt;replacetoken&gt;</code> element.</p>
  3254. <h3>Parameters</h3>
  3255. <table border="1" cellpadding="2" cellspacing="0">
  3256. <tr>
  3257. <td valign="top"><b>Attribute</b></td>
  3258. <td valign="top"><b>Description</b></td>
  3259. <td align="center" valign="top"><b>Required</b></td>
  3260. </tr>
  3261. <tr>
  3262. <td valign="top">file</td>
  3263. <td valign="top">file for which the token should be replaced.</td>
  3264. <td align="center" rowspan="2">Exactly one of the two.</td>
  3265. </tr>
  3266. <tr>
  3267. <td valign="top">dir</td>
  3268. <td valign="top">The base directory to use when replacing a token in
  3269. multiple files.</td>
  3270. </tr>
  3271. <tr>
  3272. <td valign="top">token</td>
  3273. <td valign="top">the token which must be replaced.</td>
  3274. <td valign="top" align="center">Yes, unless a nested <code>replacetoken</code>
  3275. element is used.</td>
  3276. </tr>
  3277. <tr>
  3278. <td valign="top">value</td>
  3279. <td valign="top">the new value for the token. When omitted, an empty string
  3280. (&quot;&quot;) is used.</td>
  3281. <td valign="top" align="center">No</td>
  3282. </tr>
  3283. <tr>
  3284. <td valign="top">includes</td>
  3285. <td valign="top">comma separated list of patterns of files that must be
  3286. included. All files are included when omitted.</td>
  3287. <td valign="top" align="center">No</td>
  3288. </tr>
  3289. <tr>
  3290. <td valign="top">includesfile</td>
  3291. <td valign="top">the name of a file. Each line of this file is
  3292. taken to be an include pattern</td>
  3293. <td valign="top" align="center">No</td>
  3294. </tr>
  3295. <tr>
  3296. <td valign="top">excludes</td>
  3297. <td valign="top">comma separated list of patterns of files that must be
  3298. excluded. No files (except default excludes) are excluded when omitted.</td>
  3299. <td valign="top" align="center">No</td>
  3300. </tr>
  3301. <tr>
  3302. <td valign="top">excludesfile</td>
  3303. <td valign="top">the name of a file. Each line of this file is
  3304. taken to be an exclude pattern</td>
  3305. <td valign="top" align="center">No</td>
  3306. </tr>
  3307. <tr>
  3308. <td valign="top">defaultexcludes</td>
  3309. <td valign="top">indicates whether default excludes should be used or not
  3310. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  3311. <td valign="top" align="center">No</td>
  3312. </tr>
  3313. </table>
  3314. <h3>Examples</h3>
  3315. <pre> &lt;replace file=&quot;${src}/index.html&quot; token=&quot;@@@&quot; value=&quot;wombat&quot; /&gt;</pre>
  3316. <p>replaces occurrences of the string &quot;@@@&quot; with the string
  3317. &quot;wombat&quot;, in the file <code>${src}/index.html</code>.</p>
  3318. <h3>Parameters specified as nested elements</h3>
  3319. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  3320. supports all attributes of <code>&lt;fileset&gt;</code> as well as the
  3321. nested <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  3322. <code>&lt;patternset&gt;</code> elements.</p>
  3323. <p>If either the text you want to replace or the replacement text
  3324. cross line boundaries, you can use nested elements to specify
  3325. them.</p>
  3326. <h3>Examples</h3>
  3327. <blockquote><pre>
  3328. &lt;replace dir=&quot;${src}&quot; value=&quot;wombat&quot;&gt;
  3329. &lt;include name=&quot;**/*.html&quot; /&gt;
  3330. &lt;replacetoken&gt;&lt;[CDATA[multi line
  3331. token]]>&lt;/replacetoken&gt;
  3332. &lt;/replace&gt;
  3333. </pre></blockquote>
  3334. <p>replaces occurrences of the string &quot;multi
  3335. line<em>\n</em>token&quot; with the string &quot;wombat&quot;, in all
  3336. HTML files in the directory <code>${src}</code>.Where <em>\n</em> is
  3337. the platform specific line separator.</p>
  3338. <blockquote><pre>
  3339. &lt;replace file=&quot;${src}/index.html&quot;&gt;
  3340. &lt;replacetoken&gt;&lt;[CDATA[two line
  3341. token]]>&lt;/replacetoken&gt;
  3342. &lt;replacevalue&gt;&lt;[CDATA[two line
  3343. token]]>&lt;/replacevalue&gt;
  3344. &lt;/replace&gt;
  3345. </pre></blockquote>
  3346. <hr>
  3347. <h2><a name="rmic">Rmic</a></h2>
  3348. <h3>Description</h3>
  3349. <p>Runs the rmic compiler for a certain class.</p>
  3350. <p>Rmic can be run on a single class (as specified with the classname
  3351. attribute) or a number of classes at once (all classes below base that
  3352. are neither _Stub nor _Skel classes).</p>
  3353. <p>It is possible to refine the set of files that are being rmiced. This can be
  3354. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  3355. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  3356. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  3357. the files you want to have excluded. This is also done with patterns. And
  3358. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  3359. want to use default exclusions or not. See the section on <a
  3360. href="#directorybasedtasks">directory based tasks</a>, on how the
  3361. inclusion/exclusion of files works, and how to write patterns.</p>
  3362. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  3363. supports all attributes of <code>&lt;fileset&gt;</code>
  3364. (<code>dir</code> becomes <code>base</code>) as well as the nested
  3365. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  3366. <code>&lt;patternset&gt;</code> elements.</p>
  3367. <h3>Parameters</h3>
  3368. <table border="1" cellpadding="2" cellspacing="0">
  3369. <tr>
  3370. <td valign="top"><b>Attribute</b></td>
  3371. <td valign="top"><b>Description</b></td>
  3372. <td align="center" valign="top"><b>Required</b></td>
  3373. </tr>
  3374. <tr>
  3375. <td valign="top">base</td>
  3376. <td valign="top">the location to store the compiled files.</td>
  3377. <td valign="top" align="center">Yes</td>
  3378. </tr>
  3379. <tr>
  3380. <td valign="top">classname</td>
  3381. <td valign="top">the class for which to run <code>rmic</code>.</td>
  3382. <td valign="top" align="center">No</td>
  3383. </tr>
  3384. <tr>
  3385. <td valign="top">filtering</td>
  3386. <td valign="top">indicates whether token filtering should take place</td>
  3387. <td valign="top" align="center">No</td>
  3388. </tr>
  3389. <tr>
  3390. <td valign="top">sourcebase</td>
  3391. <td valign="top">Pass the &quot;-keepgenerated&quot; flag to rmic and
  3392. move the generated source file to the base directory.</td>
  3393. <td align="center" valign="top">No</td>
  3394. </tr>
  3395. <tr>
  3396. <td valign="top">stubversion</td>
  3397. <td valign="top">Specify the JDK version for the generated stub code.
  3398. Specify &quot;1.1&quot; to pass the &quot;-v1.1&quot; option to rmic.</td>
  3399. <td align="center" valign="top">No</td>
  3400. </tr>
  3401. <tr>
  3402. <td valign="top">classpath</td>
  3403. <td valign="top">The classpath to use during compilation</td>
  3404. <td align="center" valign="top">No</td>
  3405. </tr>
  3406. <tr>
  3407. <td valign="top">classpathref</td>
  3408. <td valign="top">The classpath to use during compilation, given as <a
  3409. href="#references">reference</a> to a PATH defined elsewhere</td>
  3410. <td align="center" valign="top">No</td>
  3411. </tr>
  3412. <tr>
  3413. <td valign="top">includes</td>
  3414. <td valign="top">comma separated list of patterns of files that must be
  3415. included. All files are included when omitted.</td>
  3416. <td valign="top" align="center">No</td>
  3417. </tr>
  3418. <tr>
  3419. <td valign="top">includesfile</td>
  3420. <td valign="top">the name of a file. Each line of this file is
  3421. taken to be an include pattern</td>
  3422. <td valign="top" align="center">No</td>
  3423. </tr>
  3424. <tr>
  3425. <td valign="top">excludes</td>
  3426. <td valign="top">comma separated list of patterns of files that must be
  3427. excluded. No files (except default excludes) are excluded when omitted.</td>
  3428. <td valign="top" align="center">No</td>
  3429. </tr>
  3430. <tr>
  3431. <td valign="top">excludesfile</td>
  3432. <td valign="top">the name of a file. Each line of this file is
  3433. taken to be an exclude pattern</td>
  3434. <td valign="top" align="center">No</td>
  3435. </tr>
  3436. <tr>
  3437. <td valign="top">defaultexcludes</td>
  3438. <td valign="top">indicates whether default excludes should be used or not
  3439. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  3440. <td valign="top" align="center">No</td>
  3441. </tr>
  3442. <tr>
  3443. <td valign="top">verify</td>
  3444. <td valign="top">check that classes implement Remote before handing them
  3445. to rmic (default is false)</td>
  3446. <td align="center" valign="top">No</td>
  3447. </tr>
  3448. </table>
  3449. <h3>Parameters specified as nested elements</h3>
  3450. <h4>classpath</h4>
  3451. <p><code>Rmic</code>'s <em>classpath</em> attribute is a <a
  3452. href="#path">PATH like structure</a> and can also be set via a nested
  3453. <em>classpath</em> elements.</p>
  3454. <h3>Examples</h3>
  3455. <pre> &lt;rmic classname=&quot;com.xyz.FooBar&quot; base=&quot;${build}/classes&quot; /&gt;</pre>
  3456. <p>runs the rmic compiler for the class <code>com.xyz.FooBar</code>. The
  3457. compiled files will be stored in the directory <code>${build}/classes</code>.</p>
  3458. <pre> &lt;rmic base=&quot;${build}/classes&quot; includes=&quot;**/Remote*.class&quot; /&gt;</pre>
  3459. <p>runs the rmic compiler for all classes with <code>.class</code>
  3460. files below <code>${build}/classes</code> whose classname starts with
  3461. <i>Remote</i>. The compiled files will be stored in the directory
  3462. <code>${build}/classes</code>.</p>
  3463. <hr>
  3464. <h2><a name="signjar">SignJar</a></h2>
  3465. <h3>Description</h3>
  3466. <p>Signs a jar or zip file with the javasign command line tool.</p>
  3467. <h3>Parameters</h3>
  3468. <table border="1" cellpadding="2" cellspacing="0">
  3469. <tr>
  3470. <td valign="top"><b>Attribute</b></td>
  3471. <td valign="top"><b>Description</b></td>
  3472. <td align="center" valign="top"><b>Required</b></td>
  3473. </tr>
  3474. <tr>
  3475. <td valign="top">jar</td>
  3476. <td valign="top">the jar file to sign</td>
  3477. <td valign="top" align="center">Yes.</td>
  3478. </tr>
  3479. <tr>
  3480. <td valign="top">alias</td>
  3481. <td valign="top">the alias to sign under</td>
  3482. <td valign="top" align="center">Yes.</td>
  3483. </tr>
  3484. <tr>
  3485. <td valign="top">storepass</td>
  3486. <td valign="top">password for keystore integrity.</td>
  3487. <td valign="top" align="center">Yes.</td>
  3488. </tr>
  3489. <tr>
  3490. <td valign="top">keystore</td>
  3491. <td valign="top">keystore location</td>
  3492. <td valign="top" align="center">No</td>
  3493. </tr>
  3494. <tr>
  3495. <td valign="top">storetype</td>
  3496. <td valign="top">keystore type</td>
  3497. <td valign="top" align="center">No</td>
  3498. </tr>
  3499. <tr>
  3500. <td valign="top">keypass</td>
  3501. <td valign="top">password for private key (if different)</td>
  3502. <td valign="top" align="center">No</td>
  3503. </tr>
  3504. <tr>
  3505. <td valign="top">sigfile</td>
  3506. <td valign="top">name of .SF/.DSA file</td>
  3507. <td valign="top" align="center">No</td>
  3508. </tr>
  3509. <tr>
  3510. <td valign="top">signedjar</td>
  3511. <td valign="top">name of signed JAR file</td>
  3512. <td valign="top" align="center">No</td>
  3513. </tr>
  3514. <tr>
  3515. <td valign="top">verbose</td>
  3516. <td valign="top">(true | false) verbose output when signing</td>
  3517. <td valign="top" align="center">No</td>
  3518. </tr>
  3519. <tr>
  3520. <td valign="top">internalsf</td>
  3521. <td valign="top">(true | false) include the .SF file inside the signature
  3522. block</td>
  3523. <td valign="top" align="center">No</td>
  3524. </tr>
  3525. <tr>
  3526. <td valign="top">sectionsonly</td>
  3527. <td valign="top">(true | false) don't compute hash of entire manifest</td>
  3528. <td valign="top" align="center">No</td>
  3529. </tr>
  3530. </table>
  3531. <h3>Examples</h3>
  3532. <blockquote>
  3533. <p><code>&lt;signjar jar=&quot;${dist}/lib/ant.jar&quot;
  3534. alias=&quot;apache-group&quot; storepass=&quot;secret&quot; /&gt;</code></p>
  3535. </blockquote>
  3536. <p>signs the ant.jar with alias &quot;apache-group&quot; accessing the
  3537. keystore and private key via &quot;secret&quot; password.</p>
  3538. <hr>
  3539. <h2><a name="style">Style</a></h2>
  3540. <h3>Description</h3>
  3541. <p>Process a set of documents via XSLT.</p>
  3542. <p>This is useful for building views of XML based documentation,
  3543. or in generating code.</p>
  3544. <p>It is possible to refine the set of files that are being copied. This can be
  3545. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  3546. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  3547. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  3548. the files you want to have excluded. This is also done with patterns. And
  3549. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  3550. want to use default exclusions or not. See the section on <a
  3551. href="#directorybasedtasks">directory based tasks</a>, on how the
  3552. inclusion/exclusion of files works, and how to write patterns.</p>
  3553. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  3554. supports all attributes of <code>&lt;fileset&gt;</code>
  3555. (<code>dir</code> becomes <code>basedir</code>) as well as the nested
  3556. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  3557. <code>&lt;patternset&gt;</code> elements.</p>
  3558. <h3>Parameters</h3>
  3559. <table border="1" cellpadding="2" cellspacing="0">
  3560. <tr>
  3561. <td valign="top"><b>Attribute</b></td>
  3562. <td valign="top"><b>Description</b></td>
  3563. <td align="center" valign="top"><b>Required</b></td>
  3564. </tr>
  3565. <tr>
  3566. <td valign="top">basedir</td>
  3567. <td valign="top">where to find the source xml file.</td>
  3568. <td align="center" valign="top">Yes</td>
  3569. </tr>
  3570. <tr>
  3571. <td valign="top">destdir</td>
  3572. <td valign="top">directory where to store the results.</td>
  3573. <td align="center" valign="top">Yes</td>
  3574. </tr>
  3575. <tr>
  3576. <td valign="top">extension</td>
  3577. <td valign="top">desired file extension to be used for the targets.
  3578. If not specified, the default is &quot;html&quot;.</td>
  3579. <td align="center" valign="top">No</td>
  3580. </tr>
  3581. <tr>
  3582. <td valign="top">style</td>
  3583. <td valign="top">name of the stylesheet to use.</td>
  3584. <td align="center" valign="top">Yes</td>
  3585. </tr>
  3586. <tr>
  3587. <td valign="top">processor</td>
  3588. <td valign="top">name of the XSLT processor to use. Permissible
  3589. values are &quot;xslp&quot; for the XSL:P processor, &quot;xalan&quot;
  3590. for the Apache XML Xalan processor, or the name of an arbitrary XSLTLiaison class.
  3591. Defaults to xslp or xalan (in that order), if one is found in your
  3592. class path</td>
  3593. <td align="center" valign="top">No</td>
  3594. </tr>
  3595. <tr>
  3596. <td valign="top">includes</td>
  3597. <td valign="top">comma separated list of patterns of files that must be
  3598. included. All files are included when omitted.</td>
  3599. <td valign="top" align="center">No</td>
  3600. </tr>
  3601. <tr>
  3602. <td valign="top">includesfile</td>
  3603. <td valign="top">the name of a file. Each line of this file is
  3604. taken to be an include pattern</td>
  3605. <td valign="top" align="center">No</td>
  3606. </tr>
  3607. <tr>
  3608. <td valign="top">excludes</td>
  3609. <td valign="top">comma separated list of patterns of files that must be
  3610. excluded. No files (except default excludes) are excluded when omitted.</td>
  3611. <td valign="top" align="center">No</td>
  3612. </tr>
  3613. <tr>
  3614. <td valign="top">excludesfile</td>
  3615. <td valign="top">the name of a file. Each line of this file is
  3616. taken to be an exclude pattern</td>
  3617. <td valign="top" align="center">No</td>
  3618. </tr>
  3619. <tr>
  3620. <td valign="top">defaultexcludes</td>
  3621. <td valign="top">indicates whether default excludes should be used or not
  3622. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  3623. <td valign="top" align="center">No</td>
  3624. </tr>
  3625. </table>
  3626. <h3>Examples</h3>
  3627. <blockquote>
  3628. <p><pre>
  3629. &lt;style basedir=&quot;doc&quot; destdir=&quot;build/doc&quot;
  3630. extension=&quot;html&quot; style=&quot;style/apache.xml&quot;/&gt;
  3631. </pre></p>
  3632. </blockquote>
  3633. <hr>
  3634. <h2><a name="tar">Tar</a></h2>
  3635. <h3>Description</h3>
  3636. <p>Creates a tar archive.</p>
  3637. <p>The <i>basedir</i> attribute is the reference directory from where to tar.</p>
  3638. <p>It is possible to refine the set of files that are being tarred. This can be
  3639. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  3640. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  3641. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  3642. the files you want to have excluded. This is also done with patterns. And
  3643. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  3644. want to use default exclusions or not. See the section on <a
  3645. href="#directorybasedtasks">directory based tasks</a>, on how the
  3646. inclusion/exclusion of files works, and how to write patterns.</p>
  3647. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  3648. supports all attributes of <code>&lt;fileset&gt;</code>
  3649. (<code>dir</code> becomes <code>basedir</code>) as well as the nested
  3650. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  3651. <code>&lt;patternset&gt;</code> elements.</p>
  3652. <p>Note that this task does not perform compression. You might want to use the <a href="#gzip">GZip</a>
  3653. task to come up with a .tar.gz package.</p>
  3654. <h3>Parameters</h3>
  3655. <table border="1" cellpadding="2" cellspacing="0">
  3656. <tr>
  3657. <td valign="top"><b>Attribute</b></td>
  3658. <td valign="top"><b>Description</b></td>
  3659. <td valign="top" align="center"><b>Required</b></td>
  3660. </tr>
  3661. <tr>
  3662. <td valign="top">tarfile</td>
  3663. <td valign="top">the tar-file to create.</td>
  3664. <td align="center" valign="top">Yes</td>
  3665. </tr>
  3666. <tr>
  3667. <td valign="top">basedir</td>
  3668. <td valign="top">the directory from which to zip the files.</td>
  3669. <td align="center" valign="top">Yes</td>
  3670. </tr>
  3671. <tr>
  3672. <td valign="top">includes</td>
  3673. <td valign="top">comma separated list of patterns of files that must be
  3674. included. All files are included when omitted.</td>
  3675. <td valign="top" align="center">No</td>
  3676. </tr>
  3677. <tr>
  3678. <td valign="top">includesfile</td>
  3679. <td valign="top">the name of a file. Each line of this file is
  3680. taken to be an include pattern</td>
  3681. <td valign="top" align="center">No</td>
  3682. </tr>
  3683. <tr>
  3684. <td valign="top">excludes</td>
  3685. <td valign="top">comma separated list of patterns of files that must be
  3686. excluded. No files (except default excludes) are excluded when omitted.</td>
  3687. <td valign="top" align="center">No</td>
  3688. </tr>
  3689. <tr>
  3690. <td valign="top">excludesfile</td>
  3691. <td valign="top">the name of a file. Each line of this file is
  3692. taken to be an exclude pattern</td>
  3693. <td valign="top" align="center">No</td>
  3694. </tr>
  3695. <tr>
  3696. <td valign="top">defaultexcludes</td>
  3697. <td valign="top">indicates whether default excludes should be used or not
  3698. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  3699. <td valign="top" align="center">No</td>
  3700. </tr>
  3701. </table>
  3702. <h3>Examples</h3>
  3703. <pre> &lt;tar tarfile=&quot;${dist}/manual.tar&quot; basedir=&quot;htdocs/manual&quot; /&gt;
  3704. &lt;gzip zipfile=&quot;${dist}/manual.tar.gz&quot; src=&quot;${dist}/manual.tar&quot; /&gt;</pre>
  3705. <p>tars all files in the <code>htdocs/manual</code> directory in a file called <code>manual.tar</code>
  3706. in the <code>${dist}</code> directory, then applies the gzip task to compress
  3707. it.</p>
  3708. <pre> &lt;tar tarfile=&quot;${dist}/manual.tar&quot;
  3709. basedir=&quot;htdocs/manual&quot;
  3710. excludes=&quot;mydocs/**, **/todo.html&quot;
  3711. /&gt;</pre>
  3712. <p>tars all files in the <code>htdocs/manual</code> directory in a file called <code>manual.tar</code>
  3713. in the <code>${dist}</code> directory. Files in the directory <code>mydocs</code>,
  3714. or files with the name <code>todo.html</code> are excluded.</p>
  3715. <hr>
  3716. <h2><a name="taskdef">Taskdef</a></h2>
  3717. <h3>Description</h3>
  3718. <p>Adds a task definition to the current project, such that this new task can be
  3719. used in the current project. Two attributes are needed, the name that identifies
  3720. this task uniquely, and the full name of the class (including the packages) that
  3721. implements this task.</p>
  3722. <p>Taskdef should be used to add your own tasks to the system. See also &quot;<a
  3723. href="#writingowntask">Writing your own task</a>&quot;.</p>
  3724. <h3>Parameters</h3>
  3725. <table border="1" cellpadding="2" cellspacing="0">
  3726. <tr>
  3727. <td valign="top"><b>Attribute</b></td>
  3728. <td valign="top"><b>Description</b></td>
  3729. <td align="center" valign="top"><b>Required</b></td>
  3730. </tr>
  3731. <tr>
  3732. <td valign="top">name</td>
  3733. <td valign="top">the name of the task</td>
  3734. <td valign="top" align="center">Yes</td>
  3735. </tr>
  3736. <tr>
  3737. <td valign="top">classname</td>
  3738. <td valign="top">the full class name implementing the task</td>
  3739. <td valign="top" align="center">Yes</td>
  3740. </tr>
  3741. <tr>
  3742. <td valign="top">classpath</td> <td valign="top">the classpath to
  3743. use when looking up <code>classname</code>.</td> <td
  3744. align="center" valign="top">No</td>
  3745. </tr>
  3746. </table>
  3747. <h3>Parameters specified as nested elements</h3>
  3748. <h4>classpath</h4>
  3749. <p><code>Taskdef</code>'s <em>classpath</em> attribute is a <a
  3750. href="#path">PATH like structure</a> and can also be set via a nested
  3751. <em>classpath</em> element.</p>
  3752. <h3>Examples</h3>
  3753. <pre> &lt;taskdef name=&quot;myjavadoc&quot; classname=&quot;com.mydomain.JavadocTask&quot; /&gt;</pre>
  3754. <p>makes a task called <code>myjavadoc</code> available to Ant. The class <code>com.mydomain.JavadocTask</code>
  3755. implements the task.</p>
  3756. <hr>
  3757. <h2><a name="touch">Touch</a></h2>
  3758. <h3>Description</h3>
  3759. <p>Changes the modification time of a file and possibly creates it at
  3760. the same time.</p>
  3761. <p>For JDK 1.1 only the creation of new files with a modification time
  3762. of now works, all other cases will emit a warning.</p>
  3763. <h3>Parameters</h3>
  3764. <table border="1" cellpadding="2" cellspacing="0">
  3765. <tr>
  3766. <td valign="top"><b>Attribute</b></td>
  3767. <td valign="top"><b>Description</b></td>
  3768. <td align="center" valign="top"><b>Required</b></td>
  3769. </tr>
  3770. <tr>
  3771. <td valign="top">file</td>
  3772. <td valign="top">the name of the file</td>
  3773. <td valign="top" align="center">Yes</td>
  3774. </tr>
  3775. <tr>
  3776. <td valign="top">millis</td>
  3777. <td valign="top">specifies the new modification time of the file
  3778. in milliseconds since midnight Jan 1 1970</td>
  3779. <td valign="top" align="center">No</td>
  3780. </tr>
  3781. <tr>
  3782. <td valign="top">datetime</td>
  3783. <td valign="top">specifies the new modification time of the file
  3784. in the format MM/DD/YYYY HH:MM AM_or_PM.</td>
  3785. <td valign="top" align="center">No</td>
  3786. </tr>
  3787. </table>
  3788. <p>If both <code>millis</code> and <code>datetime</code> are omitted
  3789. the current time is assumed.</p>
  3790. <h3>Examples</h3>
  3791. <pre> &lt;touch file=&quot;myfile&quot; /&gt;</pre>
  3792. <p>creates <code>myfile</code> if it doesn't exist and changes the
  3793. modification time to the current time.</p>
  3794. <pre> &lt;touch file=&quot;myfile&quot; datetime=&quot;06/28/2000 2:02 pm&quot; /&gt;</pre>
  3795. <p>creates <code>myfile</code> if it doesn't exist and changes the
  3796. modification time to Jun, 28 2000 2:02 pm (14:02 for those used to 24
  3797. hour times).</p>
  3798. <hr>
  3799. <h2><a name="tstamp">Tstamp</a></h2>
  3800. <h3>Description</h3>
  3801. <p>Sets the DSTAMP, TSTAMP and TODAY properties in the current project. The
  3802. DSTAMP is in the &quot;yyyymmdd&quot; format, the TSTAMP is in the &quot;hhmm&quot;
  3803. format and TODAY is &quot;month day year&quot;.</p>
  3804. <p>These properties can be used in the buildfile, for instance, to create
  3805. timestamped filenames or used to replace placeholder tags inside documents to
  3806. indicate, for example, the release date. The best place for this task is in your
  3807. initialization target.</p>
  3808. <h3>Parameters</h3>
  3809. <table border="1" cellpadding="2" cellspacing="0">
  3810. <tr>
  3811. <td valign="top"><b>Attribute</b></td>
  3812. <td valign="top"><b>Description</b></td>
  3813. <td align="center" valign="top"><b>Required</b></td>
  3814. </tr>
  3815. </table>
  3816. <h3>Examples</h3>
  3817. <pre> &lt;tstamp/&gt;</pre>
  3818. <hr>
  3819. <h2><a name="uptodate">Uptodate</a></h2>
  3820. <h3>Description</h3>
  3821. <p>Sets a property if a Target file is more up to date than a set of
  3822. Source files. Source files are specified by nested &lt;srcfiles&gt;
  3823. elements, these are <a href="#fileset">FileSet</a>s.</p>
  3824. <p>The value part of the property being set is <i>true</i> if the timestamp of the
  3825. Target file is more recent than the timestamp of every Source file.</p>
  3826. <p>Normally, this task is used to set properties that are useful to avoid target
  3827. execution depending on the relative age of the specified files.</p>
  3828. <h3>Parameters</h3>
  3829. <table border="1" cellpadding="2" cellspacing="0">
  3830. <tr>
  3831. <td valign="top"><b>Attribute</b></td>
  3832. <td valign="top"><b>Description</b></td>
  3833. <td align="center" valign="top"><b>Required</b></td>
  3834. </tr>
  3835. <tr>
  3836. <td valign="top">property</td>
  3837. <td valign="top">the name of the property to set.</td>
  3838. <td valign="top" align="center">Yes</td>
  3839. </tr>
  3840. <tr>
  3841. <td valign="top">targetfile</td>
  3842. <td valign="top">the file for which we want to determine the status.</td>
  3843. <td valign="top" align="center">Yes</td>
  3844. </tr>
  3845. </table>
  3846. <h3>Examples</h3>
  3847. <pre> &lt;uptodate property=&quot;xmlBuild.notRequired&quot; targetfile=&quot;${deploy}\xmlClasses.jar&quot; &gt;
  3848. &lt;srcfiles dir= &quot;${src}/xml&quot; includes=&quot;**/*.dtd&quot; /&gt;
  3849. &lt;/uptodate&gt;</pre>
  3850. <p>sets the property <code><i>xmlBuild.notRequired</i></code> to the value &quot;true&quot;
  3851. if the <i>${deploy}/xmlClasses.jar</i> is more up to date than any of the DTD files in the <i>${src}/xml</i> directory.</p>
  3852. <hr>
  3853. <h2><a name="unzip">Unjar/Unwar/Unzip</a></h2>
  3854. <h3>Description</h3>
  3855. <p>Unzips a zip-, war- or jarfile.</p>
  3856. <p>For JDK 1.1 &quot;last modified time&quot; field is set to current time instead of being
  3857. carried from zipfile.</p>
  3858. <p>File permissions will not be restored on extracted files.</p>
  3859. <h3>Parameters</h3>
  3860. <table border="1" cellpadding="2" cellspacing="0">
  3861. <tr>
  3862. <td valign="top"><b>Attribute</b></td>
  3863. <td valign="top"><b>Description</b></td>
  3864. <td align="center" valign="top"><b>Required</b></td>
  3865. </tr>
  3866. <tr>
  3867. <td valign="top">src</td>
  3868. <td valign="top">zipfile to expand.</td>
  3869. <td align="center" valign="top">Yes</td>
  3870. </tr>
  3871. <tr>
  3872. <td valign="top">dest</td>
  3873. <td valign="top">directory where to store the expanded files.</td>
  3874. <td align="center" valign="top">Yes</td>
  3875. </tr>
  3876. </table>
  3877. <h3>Examples</h3>
  3878. <blockquote>
  3879. <p><code>&lt;unzip src=&quot;${tomcat_src}/tools-src.zip&quot; dest=&quot;${tools.home}&quot;
  3880. /&gt;</code></p>
  3881. </blockquote>
  3882. <hr>
  3883. <h2><a name="untar">Untar</a></h2>
  3884. <h3>Description</h3>
  3885. <p>Untars a tarfile.</p>
  3886. <p>File permissions will not be restored on extracted files.</p>
  3887. <p>For JDK 1.1 &quot;last modified time&quot; field is set to current time instead of being
  3888. carried from tarfile.</p>
  3889. <h3>Parameters</h3>
  3890. <table border="1" cellpadding="2" cellspacing="0">
  3891. <tr>
  3892. <td valign="top"><b>Attribute</b></td>
  3893. <td valign="top"><b>Description</b></td>
  3894. <td align="center" valign="top"><b>Required</b></td>
  3895. </tr>
  3896. <tr>
  3897. <td valign="top">src</td>
  3898. <td valign="top">tarfile to expand.</td>
  3899. <td align="center" valign="top">Yes</td>
  3900. </tr>
  3901. <tr>
  3902. <td valign="top">dest</td>
  3903. <td valign="top">directory where to store the expanded files.</td>
  3904. <td align="center" valign="top">Yes</td>
  3905. </tr>
  3906. </table>
  3907. <h3>Examples</h3>
  3908. <blockquote>
  3909. <p><code>
  3910. &lt;gunzip src=&quot;tools.tar.gz&quot;/&gt;<br>
  3911. &lt;untar src=&quot;tools.tar&quot; dest=&quot;${tools.home}&quot;/&gt;
  3912. </code></p>
  3913. </blockquote>
  3914. <hr>
  3915. <h2><a name="war">War</a></h2>
  3916. <h3>Description</h3>
  3917. <p>An extension of the <a href="#jar">Jar</a> task with special
  3918. treatment for files that should end up in the <code>WEB-INF/lib</code>,
  3919. <code>WEB-INF/classes</code> or <code>WEB-INF</code> directories of the Web
  3920. Application Archive.</p>
  3921. <h3>Parameters</h3>
  3922. <table border="1" cellpadding="2" cellspacing="0">
  3923. <tr>
  3924. <td valign="top"><b>Attribute</b></td>
  3925. <td valign="top"><b>Description</b></td>
  3926. <td align="center" valign="top"><b>Required</b></td>
  3927. </tr>
  3928. <tr>
  3929. <td valign="top">warfile</td>
  3930. <td valign="top">the war-file to create.</td>
  3931. <td valign="top" align="center">Yes</td>
  3932. </tr>
  3933. <tr>
  3934. <td valign="top">webxml</td>
  3935. <td valign="top">The deployment descriptor to use (WEB-INF/web.xml).</td>
  3936. <td valign="top" align="center">Yes</td>
  3937. </tr>
  3938. <tr>
  3939. <td valign="top">basedir</td>
  3940. <td valign="top">the directory from which to jar the files.</td>
  3941. <td valign="top" align="center">No</td>
  3942. </tr>
  3943. <tr>
  3944. <td valign="top">compress</td>
  3945. <td valign="top">Not only store data but also compress them, defaults to true</td>
  3946. <td align="center" valign="top">No</td>
  3947. </tr>
  3948. <tr>
  3949. <td valign="top">includes</td>
  3950. <td valign="top">comma separated list of patterns of files that must be
  3951. included. All files are included when omitted.</td>
  3952. <td valign="top" align="center">No</td>
  3953. </tr>
  3954. <tr>
  3955. <td valign="top">includesfile</td>
  3956. <td valign="top">the name of a file. Each line of this file is
  3957. taken to be an include pattern</td>
  3958. <td valign="top" align="center">No</td>
  3959. </tr>
  3960. <tr>
  3961. <td valign="top">excludes</td>
  3962. <td valign="top">comma separated list of patterns of files that must be
  3963. excluded. No files (except default excludes) are excluded when omitted.</td>
  3964. <td valign="top" align="center">No</td>
  3965. </tr>
  3966. <tr>
  3967. <td valign="top">excludesfile</td>
  3968. <td valign="top">the name of a file. Each line of this file is
  3969. taken to be an exclude pattern</td>
  3970. <td valign="top" align="center">No</td>
  3971. </tr>
  3972. <tr>
  3973. <td valign="top">defaultexcludes</td>
  3974. <td valign="top">indicates whether default excludes should be used or not
  3975. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  3976. <td valign="top" align="center">No</td>
  3977. </tr>
  3978. <tr>
  3979. <td valign="top">manifest</td>
  3980. <td valign="top">the manifest file to use.</td>
  3981. <td valign="top" align="center">No</td>
  3982. </tr>
  3983. <tr>
  3984. <td valign="top">whenempty</td>
  3985. <td valign="top">Behavior to use if no files match.</td>
  3986. <td valign="top" align="center">No</td>
  3987. </tr>
  3988. </table>
  3989. <h3>Nested elements</h3>
  3990. <h4>lib</h4>
  3991. <p>The nested <code>lib</code> element specifies a <a
  3992. href="#fileset">FileSet</a>. All files included in this fileset will
  3993. end up in the <code>WEB-INF/lib</code> directory of the war file.</p>
  3994. <h4>classes</h4>
  3995. <p>The nested <code>classes</code> element specifies a <a
  3996. href="#fileset">FileSet</a>. All files included in this fileset will
  3997. end up in the <code>WEB-INF/classes</code> directory of the war file.</p>
  3998. <h4>webinf</h4>
  3999. <p>The nested <code>webinf</code> element specifies a <a
  4000. href="#fileset">FileSet</a>. All files included in this fileset will
  4001. end up in the <code>WEB-INF</code> directory of the war file. If this
  4002. fileset includes a file named <code>web.xml</code>, the file is
  4003. ignored and you will get a warning.</p>
  4004. <h3>Examples</h3>
  4005. <p>Assume the following structure in the project's base directory:
  4006. <pre>
  4007. thirdparty/libs/jdbc1.jar
  4008. thirdparty/libs/jdbc2.jar
  4009. build/main/com/myco/myapp/Servlet.class
  4010. src/metadata/myapp.xml
  4011. src/html/myapp/index.html
  4012. src/jsp/myapp/front.jsp
  4013. </pre>
  4014. then the war file <code>myapp.war</code> created with
  4015. <pre>
  4016. &lt;war warfile=&quot;myapp.war&quot; webxml=&quot;src/metadata/myapp.xml&quot;&gt;
  4017. &lt;fileset dir=&quot;src/html/myapp&quot; /&gt;
  4018. &lt;fileset dir=&quot;src/jsp/myapp&quot; /&gt;
  4019. &lt;lib dir=&quot;thirdparty/libs&quot;&gt;
  4020. &lt;exclude name=&quot;jdbc1.jar&quot; /&gt;
  4021. &lt;/lib&gt;
  4022. &lt;classes dir=&quot;build/main&quot; /&gt;
  4023. &lt;/war&gt;
  4024. </pre>
  4025. will consist of
  4026. <pre>
  4027. WEB-INF/web.xml
  4028. WEB-INF/lib/jdbc2.jar
  4029. WEB-INF/classes/com/myco/myapp/Servlet.class
  4030. META-INF/MANIFEST.MF
  4031. index.html
  4032. front.jsp
  4033. </pre>
  4034. using Ant's default manifest file. The content of
  4035. <code>WEB-INF/web.xml</code> is identical to
  4036. <code>src/metadata/myapp.xml</code>.</p>
  4037. <hr>
  4038. <h2><a name="zip">Zip</a></h2>
  4039. <h3>Description</h3>
  4040. <p>Creates a zipfile.</p>
  4041. <p>The <i>basedir</i> attribute is the reference directory from where to zip.</p>
  4042. <p>Note that file permissions will not be stored in the resulting zipfile.</p>
  4043. <p>It is possible to refine the set of files that are being zipped. This can be
  4044. done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and <i>defaultexcludes</i>
  4045. attributes. With the <i>includes</i> or <i>includesfile</i> attribute you specify the files you want to
  4046. have included by using patterns. The <i>exclude</i> or <i>excludesfile</i> attribute is used to specify
  4047. the files you want to have excluded. This is also done with patterns. And
  4048. finally with the <i>defaultexcludes</i> attribute, you can specify whether you
  4049. want to use default exclusions or not. See the section on <a
  4050. href="#directorybasedtasks">directory based tasks</a>, on how the
  4051. inclusion/exclusion of files works, and how to write patterns.
  4052. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  4053. supports all attributes of <code>&lt;fileset&gt;</code>
  4054. (<code>dir</code> becomes <code>basedir</code>) as well as the nested
  4055. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  4056. <code>&lt;patternset&gt;</code> elements.</p>
  4057. <p>Or, you may place within it nested file sets, or references to file sets.
  4058. In this case <code>basedir</code> is optional; the implicit file set is <em>only used</em>
  4059. if <code>basedir</code> is set. You may use any mixture of the implicit file set
  4060. (with <code>basedir</code> set, and optional attributes like <code>includes</code>
  4061. and optional subelements like <code>&lt;include&gt;</code>); explicit nested
  4062. <code>&lt;fileset&gt;</code> elements so long as at least one fileset total is specified. The ZIP file will
  4063. only reflect the relative paths of files <em>within</em> each fileset.</p>
  4064. <p>The <code>whenempty</code> parameter controls what happens when no files match.
  4065. If <code>skip</code> (the default), the ZIP is not created and a warning is issued.
  4066. If <code>fail</code>, the ZIP is not created and the build is halted with an error.
  4067. If <code>create</code>, an empty ZIP file (explicitly zero entries) is created,
  4068. which should be recognized as such by compliant ZIP manipulation tools.</p>
  4069. <h3>Parameters</h3>
  4070. <table border="1" cellpadding="2" cellspacing="0">
  4071. <tr>
  4072. <td valign="top"><b>Attribute</b></td>
  4073. <td valign="top"><b>Description</b></td>
  4074. <td valign="top" align="center"><b>Required</b></td>
  4075. </tr>
  4076. <tr>
  4077. <td valign="top">zipfile</td>
  4078. <td valign="top">the zip-file to create.</td>
  4079. <td align="center" valign="top">Yes</td>
  4080. </tr>
  4081. <tr>
  4082. <td valign="top">basedir</td>
  4083. <td valign="top">the directory from which to zip the files.</td>
  4084. <td align="center" valign="top">No</td>
  4085. </tr>
  4086. <tr>
  4087. <td valign="top">compress</td>
  4088. <td valign="top">Not only store data but also compress them, defaults to true</td>
  4089. <td align="center" valign="top">No</td>
  4090. </tr>
  4091. <tr>
  4092. <td valign="top">includes</td>
  4093. <td valign="top">comma separated list of patterns of files that must be
  4094. included. All files are included when omitted.</td>
  4095. <td valign="top" align="center">No</td>
  4096. </tr>
  4097. <tr>
  4098. <td valign="top">includesfile</td>
  4099. <td valign="top">the name of a file. Each line of this file is
  4100. taken to be an include pattern</td>
  4101. <td valign="top" align="center">No</td>
  4102. </tr>
  4103. <tr>
  4104. <td valign="top">excludes</td>
  4105. <td valign="top">comma separated list of patterns of files that must be
  4106. excluded. No files (except default excludes) are excluded when omitted.</td>
  4107. <td valign="top" align="center">No</td>
  4108. </tr>
  4109. <tr>
  4110. <td valign="top">excludesfile</td>
  4111. <td valign="top">the name of a file. Each line of this file is
  4112. taken to be an exclude pattern</td>
  4113. <td valign="top" align="center">No</td>
  4114. </tr>
  4115. <tr>
  4116. <td valign="top">defaultexcludes</td>
  4117. <td valign="top">indicates whether default excludes should be used or not
  4118. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  4119. <td valign="top" align="center">No</td>
  4120. </tr>
  4121. <tr>
  4122. <td valign="top">whenempty</td>
  4123. <td valign="top">Behavior when no files match.</td>
  4124. <td valign="top" align="center">No</td>
  4125. </tr>
  4126. </table>
  4127. <h3>Examples</h3>
  4128. <pre> &lt;zip zipfile=&quot;${dist}/manual.zip&quot;
  4129. basedir=&quot;htdocs/manual&quot;
  4130. /&gt;</pre>
  4131. <p>zips all files in the <code>htdocs/manual</code> directory in a file called <code>manual.zip</code>
  4132. in the <code>${dist}</code> directory.</p>
  4133. <pre> &lt;zip zipfile=&quot;${dist}/manual.zip&quot;
  4134. basedir=&quot;htdocs/manual&quot;
  4135. excludes=&quot;mydocs/**, **/todo.html&quot;
  4136. /&gt;</pre>
  4137. <p>zips all files in the <code>htdocs/manual</code> directory in a file called <code>manual.zip</code>
  4138. in the <code>${dist}</code> directory. Files in the directory <code>mydocs</code>,
  4139. or files with the name <code>todo.html</code> are excluded.</p>
  4140. <pre> &lt;zip zipfile=&quot;${dist}/manual.zip&quot;
  4141. basedir=&quot;htdocs/manual&quot;
  4142. includes=&quot;api/**/*.html&quot;
  4143. excludes=&quot;**/todo.html&quot;
  4144. /&gt;</pre>
  4145. <p>zips all files in the <code>htdocs/manual</code> directory in a file called <code>manual.zip</code>
  4146. in the <code>${dist}</code> directory. Only html files under the directory <code>api</code>
  4147. are zipped, and files with the name <code>todo.html</code> are excluded.</p>
  4148. <pre> &lt;zip zipfile=&quot;${dist}/manual.zip&quot;&gt;
  4149. &lt;fileset dir=&quot;htdocs/manual&quot;/&gt;
  4150. &lt;fileset dir=&quot;.&quot; includes=&quot;ChangeLog.txt&quot;/&gt;
  4151. &lt;/zip&gt;</pre>
  4152. <p>zips all files in the <code>htdocs/manual</code> directory in a file called <code>manual.zip</code>
  4153. in the <code>${dist}</code> directory, and also adds the file <code>ChangeLog.txt</code> in the
  4154. current directory. <code>ChangeLog.txt</code> will be added to the top of the ZIP file, just as if
  4155. it had been located at <code>htdocs/manual/ChangeLog.txt</code>.</p>
  4156. <hr>
  4157. <h2><a name="optionaltasks">Optional tasks</a></h2>
  4158. <ul>
  4159. <li><a href="#cab">Cab</a></li>
  4160. <li><a href="#ftp">FTP</a></li>
  4161. <li><a href="javacc.html">JavaCC</a></li>
  4162. <li><a href="jlink.html">Jlink</a></li>
  4163. <li><a href="junit.html">JUnit</a></li>
  4164. <li><a href="native2ascii.html">Native2Ascii</a></li>
  4165. <li><a href="#netrexxc">NetRexxC</a></li>
  4166. <li><a href="#renameexts">RenameExtensions</a></li>
  4167. <li><a href="#script">Script</a></li>
  4168. <li><a href="#vssget">VssGet</a></li>
  4169. <li><a href="ejb.html">EJB Tasks</a></li>
  4170. </ul>
  4171. <hr>
  4172. <h2><a name="cab">Cab</a></h2>
  4173. <h3>Description</h3>
  4174. <p>The cab task creates Microsoft cab archive files. It is invoked
  4175. similar to the <a href="#jar">jar</a> or <a href="#zip">zip</a> tasks.
  4176. This task will only work on Windows, and will be silently ignored on
  4177. other platforms. You must have the Microsoft cabarc tool available in
  4178. your executable path.</p>
  4179. <p>See the section on <a href="#directorybasedtasks">directory based
  4180. tasks</a>, on how the inclusion/exclusion of files works, and how to
  4181. write patterns.</p>
  4182. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  4183. supports all attributes of <code>&lt;fileset&gt;</code>
  4184. (<code>dir</code> becomes <code>basedir</code>) as well as the nested
  4185. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  4186. <code>&lt;patternset&gt;</code> elements.</p>
  4187. <h3>Parameters</h3>
  4188. <table border="1" cellpadding="2" cellspacing="0">
  4189. <tr>
  4190. <td valign="top"><b>Attribute</b></td>
  4191. <td valign="top"><b>Description</b></td>
  4192. <td align="center" valign="top"><b>Required</b></td>
  4193. </tr>
  4194. <tr>
  4195. <td valign="top">cabfile</td>
  4196. <td valign="top">the name of the cab file to create.</td>
  4197. <td valign="top" align="center">Yes</td>
  4198. </tr>
  4199. <tr>
  4200. <td valign="top">basedir</td>
  4201. <td valign="top">the directory to start archiving files from.</td>
  4202. <td valign="top" align="center">Yes</td>
  4203. </tr>
  4204. <tr>
  4205. <td valign="top">verbose</td>
  4206. <td valign="top">set to &quot;yes&quot; if you want to see the output from
  4207. the cabarc tool. defaults to &quot;no&quot;.</td>
  4208. <td valign="top" align="center">No</td>
  4209. </tr>
  4210. <tr>
  4211. <td valign="top">compress</td>
  4212. <td valign="top">set to &quot;no&quot; to store files without compressing.
  4213. defaults to &quot;yes&quot;.</td>
  4214. <td valign="top" align="center">No</td>
  4215. </tr>
  4216. <tr>
  4217. <td valign="top">options</td>
  4218. <td valign="top">use to set additional command-line options for
  4219. the cabarc tool. should not normally be necessary.</td>
  4220. <td valign="top" align="center">No</td>
  4221. </tr>
  4222. <tr>
  4223. <td valign="top">includes</td>
  4224. <td valign="top">comma separated list of patterns of files that
  4225. must be included. All files are included when omitted.</td>
  4226. <td valign="top" align="center">No</td>
  4227. </tr>
  4228. <tr>
  4229. <td valign="top">includesfile</td>
  4230. <td valign="top">the name of a file. Each line of this file is
  4231. taken to be an include pattern</td>
  4232. <td valign="top" align="center">No</td>
  4233. </tr>
  4234. <tr>
  4235. <td valign="top">excludes</td>
  4236. <td valign="top">comma separated list of patterns of files that
  4237. must be excluded. No files (except default excludes) are excluded
  4238. when omitted.</td>
  4239. <td valign="top" align="center">No</td>
  4240. </tr>
  4241. <tr>
  4242. <td valign="top">excludesfile</td>
  4243. <td valign="top">the name of a file. Each line of this file is
  4244. taken to be an exclude pattern</td>
  4245. <td valign="top" align="center">No</td>
  4246. </tr>
  4247. <tr>
  4248. <td valign="top">defaultexcludes</td>
  4249. <td valign="top">indicates whether default excludes should be used
  4250. or not (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when omitted.</td>
  4251. <td valign="top" align="center">No</td>
  4252. </tr>
  4253. </table>
  4254. <h3>Examples</h3>
  4255. <blockquote><pre>
  4256. &lt;cab cabfile=&quot;${dist}/manual.cab&quot;
  4257. basedir=&quot;htdocs/manual&quot;
  4258. /&gt;
  4259. </pre></blockquote>
  4260. <p>cabs all files in the htdocs/manual directory in a file called
  4261. manual.cab in the ${dist} directory.</p>
  4262. <blockquote><pre>
  4263. &lt;cab cabfile=&quot;${dist}/manual.cab&quot;
  4264. basedir=&quot;htdocs/manual&quot;
  4265. excludes=&quot;mydocs/**, **/todo.html&quot;
  4266. /&gt;
  4267. </pre></blockquote>
  4268. <p>cabs all files in the htdocs/manual directory in a file called
  4269. manual.cab in the ${dist} directory. Files in the directory mydocs,
  4270. or files with the name todo.html are excluded.</p>
  4271. <blockquote><pre>
  4272. &lt;cab cabfile=&quot;${dist}/manual.cab&quot;
  4273. basedir=&quot;htdocs/manual&quot;
  4274. includes=&quot;api/**/*.html&quot;
  4275. excludes=&quot;**/todo.html&quot;
  4276. verbose=&quot;yes&quot;
  4277. /&gt;
  4278. </pre></blockquote>
  4279. <p>cab all files in the htdocs/manual directory in a file called
  4280. manual.cab in the ${dist} directory. Only html files under the
  4281. directory api are archived, and files with the name todo.html are
  4282. excluded. Output from the cabarc tool is displayed in the build
  4283. output.</p>
  4284. <hr>
  4285. <h2><a name="ftp">FTP</a></h2>
  4286. <h3>Description</h3>
  4287. <p>The ftp task implements a basic FTP client that can send, receive,
  4288. list, and delete files. See below for descriptions and examples of how
  4289. to perform each task.</p>
  4290. <p>The ftp task makes no attempt to determine what file system syntax is
  4291. required by the remote server, and defaults to Unix standards.
  4292. <i>remotedir</i> must be specified in the exact syntax required by the ftp
  4293. server. If the usual Unix conventions are not supported by the server,
  4294. <i>separator</i> can be used to set the file separator that should be used
  4295. instead.</p>
  4296. <p>See the section on <a href="#directorybasedtasks">directory based
  4297. tasks</a>, on how the inclusion/exclusion of files works, and how to
  4298. write patterns.</p>
  4299. <h3>Parameters</h3>
  4300. <table border="1" cellpadding="2" cellspacing="0">
  4301. <tr>
  4302. <td valign="top"><b>Attribute</b></td>
  4303. <td valign="top"><b>Description</b></td>
  4304. <td align="center" valign="top"><b>Required</b></td>
  4305. </tr>
  4306. <tr>
  4307. <td valign="top">server</td>
  4308. <td valign="top">the address of the remote ftp server.</td>
  4309. <td valign="top" align="center">Yes</td>
  4310. </tr>
  4311. <tr>
  4312. <td valign="top">port</td>
  4313. <td valign="top">the port number of the remote ftp server.
  4314. Defaults to port 21.</td>
  4315. <td valign="top" align="center">No</td>
  4316. </tr>
  4317. <tr>
  4318. <td valign="top">userid</td>
  4319. <td valign="top">the login id to use on the ftp server.</td>
  4320. <td valign="top" align="center">Yes</td>
  4321. </tr>
  4322. <tr>
  4323. <td valign="top">password</td>
  4324. <td valign="top">the login password to use on the ftp server.</td>
  4325. <td valign="top" align="center">Yes</td>
  4326. </tr>
  4327. <tr>
  4328. <td valign="top">remotedir</td>
  4329. <td valign="top">the directory to which to upload files on the
  4330. ftp server.</td>
  4331. <td valign="top" align="center">No</td>
  4332. </tr>
  4333. <tr>
  4334. <td valign="top">action</td>
  4335. <td valign="top">the ftp action to perform, defaulting to &quot;send&quot;.
  4336. Currently supports&quot;put&quot;, &quot;get&quot;,
  4337. &quot;del&quot;, and &quot;list&quot;.</td>
  4338. <td valign="top" align="center">No</td>
  4339. </tr>
  4340. <tr>
  4341. <td valign="top">binary</td>
  4342. <td valign="top">selects binary-mode (&quot;yes&quot;) or text-mode
  4343. (&quot;no&quot;) transfers.
  4344. Defaults to &quot;yes&quot;</td>
  4345. <td valign="top" align="center">No</td>
  4346. </tr>
  4347. <tr>
  4348. <td valign="top">verbose</td>
  4349. <td valign="top">displays information on each file transferred if set
  4350. to &quot;yes&quot;. Defaults to &quot;no&quot;.</td>
  4351. <td valign="top" align="center">No</td>
  4352. </tr>
  4353. <tr>
  4354. <td valign="top">depends</td>
  4355. <td valign="top">transfers only new or changed files if set to
  4356. &quot;yes&quot;. Defaults to &quot;no&quot;.</td>
  4357. <td valign="top" align="center">No</td>
  4358. </tr>
  4359. <tr>
  4360. <td valign="top">newer</td>
  4361. <td valign="top">a synonym for <i>depends</i>.</td>
  4362. <td valign="top" align="center">No</td>
  4363. </tr>
  4364. <tr>
  4365. <td valign="top">separator</td>
  4366. <td valign="top">sets the file separator used on the ftp server.
  4367. Defaults to &quot;/&quot;.</td>
  4368. <td valign="top" align="center">No</td>
  4369. </tr>
  4370. <tr>
  4371. <td valign="top">listing</td>
  4372. <td valign="top">the file to write results of the &quot;list&quot; action.
  4373. Required for the &quot;list&quot; action, ignored otherwise.</td>
  4374. <td valign="top" align="center">No</td>
  4375. </tr>
  4376. </table>
  4377. <h3>Sending Files</h3>
  4378. <p>The easiest way to describe how to send files is with a couple of examples:</p>
  4379. <pre>
  4380. &lt;ftp server=&quot;ftp.apache.org&quot;
  4381. userid=&quot;anonymous&quot;
  4382. password=&quot;me@myorg.com&quot;&gt;
  4383. &lt;fileset dir=&quot;htdocs/manual&quot; /&gt;
  4384. &lt;/ftp&gt;
  4385. </pre>
  4386. <p>Logs in to <code>ftp.apache.org</code> as <code>anonymous</code> and
  4387. uploads all files in the <code>htdocs/manual</code> directory
  4388. to the default directory for that user.</p>
  4389. <pre> &lt;ftp server=&quot;ftp.apache.org&quot;
  4390. remotedir=&quot;incoming&quot;
  4391. userid=&quot;anonymous&quot;
  4392. password=&quot;me@myorg.com&quot;
  4393. depends=&quot;yes&quot;
  4394. &gt;
  4395. &lt;fileset dir=&quot;htdocs/manual&quot; /&gt;
  4396. &lt;/ftp&gt;</pre>
  4397. <p>Logs in to <code>ftp.apache.org</code> as <code>anonymous</code> and
  4398. uploads all new or changed files in the <code>htdocs/manual</code> directory
  4399. to the <code>incoming</code> directory relative to the default directory
  4400. for <code>anonymous</code>.</p>
  4401. <pre> &lt;ftp server=&quot;ftp.apache.org&quot;
  4402. port=&quot;2121&quot;
  4403. remotedir=&quot;/pub/incoming&quot;
  4404. userid=&quot;coder&quot;
  4405. password=&quot;java1&quot;
  4406. depends=&quot;yes&quot;
  4407. binary=&quot;no&quot;
  4408. &gt;
  4409. &lt;fileset dir=&quot;htdocs/manual&quot;&gt;
  4410. &lt;include name=&quot;**/*.html&quot; /&gt;
  4411. &lt;/fileset&gt;
  4412. &lt;/ftp&gt;</pre>
  4413. <p>Logs in to <code>ftp.apache.org</code> at port <code>2121</code> as
  4414. <code>coder</code> with password <code>java1</code> and uploads all new or
  4415. changed HTML files in the <code>htdocs/manual</code> directory to the
  4416. <code>/pub/incoming</code> directory. The files are transferred in text
  4417. mode.</p>
  4418. <pre> &lt;ftp server=&quot;ftp.nt.org&quot;
  4419. remotedir=&quot;c:\uploads&quot;
  4420. userid=&quot;coder&quot;
  4421. password=&quot;java1&quot;
  4422. separator=&quot;\&quot;
  4423. verbose=&quot;yes&quot;
  4424. &gt;
  4425. &lt;fileset dir=&quot;htdocs/manual&quot;&gt;
  4426. &lt;include name=&quot;**/*.html&quot; /&gt;
  4427. &lt;/fileset&gt;
  4428. &lt;/ftp&gt;</pre>
  4429. <p>Logs in to the Windows-based <code>ftp.nt.org</code> as
  4430. <code>coder</code> with password <code>java1</code> and uploads all
  4431. HTML files in the <code>htdocs/manual</code> directory to the
  4432. <code>c:\uploads</code> directory. Progress messages are displayed as each
  4433. file is uploaded.</p>
  4434. <h3>Getting Files</h3>
  4435. <p>Getting files from an FTP server works pretty much the same way as
  4436. sending them does. The only difference is that the nested filesets
  4437. use the remotedir attribute as the base directory for the files on the
  4438. FTP server, and the dir attribute as the local directory to put the files
  4439. into. The file structure from the FTP site is preserved on the local machine.</p>
  4440. <pre>
  4441. &lt;ftp action=&quot;get&quot;
  4442. server=&quot;ftp.apache.org&quot;
  4443. userid=&quot;anonymous&quot;
  4444. password=&quot;me@myorg.com&quot;&gt;
  4445. &lt;fileset dir=&quot;htdocs/manual&quot; &gt;
  4446. &lt;include name=&quot;**/*.html&quot; /&gt;
  4447. &lt;/fileset&gt;
  4448. &lt;/ftp&gt;
  4449. </pre>
  4450. <p>Logs in to <code>ftp.apache.org</code> as <code>anonymous</code> and
  4451. recursively downloads all .html files from default directory for that user
  4452. into the <code>htdocs/manual</code> directory on the local machine.</p>
  4453. <h3>Deleting Files</h3>
  4454. As you've probably guessed by now, you use nested fileset elements to
  4455. select the files to delete from the remote FTP server. Again, the
  4456. filesets are relative to the remote directory, not a local directory. In
  4457. fact, the dir attribute of the fileset is ignored completely.
  4458. <pre>
  4459. &lt;ftp action=&quot;del&quot;
  4460. server=&quot;ftp.apache.org&quot;
  4461. userid=&quot;anonymous&quot;
  4462. password=&quot;me@myorg.com&quot; &gt;
  4463. &lt;fileset&gt;
  4464. &lt;include name=&quot;**/*.tmp&quot; /&gt;
  4465. &lt;/fileset&gt;
  4466. &lt;/ftp&gt;
  4467. </pre>
  4468. <p>Logs in to <code>ftp.apache.org</code> as <code>anonymous</code> and
  4469. tries to delete all *.tmp files from the default directory for that user.
  4470. If you don't have permission to delete a file, a BuildException is thrown.</p>
  4471. <h3>Listing Files</h3>
  4472. <pre>
  4473. &lt;ftp action=&quot;list&quot;
  4474. server=&quot;ftp.apache.org&quot;
  4475. userid=quot;anonymous&quot;
  4476. password=&quot;me@myorg.com&quot;
  4477. listing=&quot;data/ftp.listing&quot; &gt;
  4478. &lt;fileset&gt;
  4479. &lt;include name=&quot;**&quot; /&gt;
  4480. &lt;/fileset&gt;
  4481. &lt;/ftp&gt;
  4482. </pre>
  4483. <p>This provides a file listing in <code>data/ftp.listing</code> of all the files on
  4484. the FTP server relative to the default directory of the <code>anonymous</code>
  4485. user. The listing is in whatever format the FTP server normally lists files.</p>
  4486. <hr>
  4487. <h2><a name="netrexxc">NetRexxC</a></h2>
  4488. <h3>Description</h3>
  4489. <p>Compiles a <a href="http://www2.hursley.ibm.com/netrexx">NetRexx</a>
  4490. source tree within the running (Ant) VM.</p>
  4491. <p>The source and destination directory will be recursively scanned for
  4492. NetRexx source files to compile. Only NetRexx files that have no corresponding
  4493. class file or where the class file is older than the java file will be compiled.</p>
  4494. <p>Files in the source tree are copied to the destination directory,
  4495. allowing support files to be located properly in the classpath. The source
  4496. files are copied because the NetRexx compiler cannot produce class files in a
  4497. specific directory via parameters</p>
  4498. <p>The directory structure of the source tree should follow the package
  4499. hierarchy.</p>
  4500. <p>It is possible to refine the set of files that are being compiled/copied.
  4501. This can be done with the <i>includes</i>, <i>includesfile</i>, <i>excludes</i>, <i>excludesfile</i> and
  4502. <i>defaultexcludes</i> attributes. With the <i>includes</i> or <i>includesfile</i> attribute you
  4503. specify the files you want to have included by using patterns. The
  4504. <i>exclude</i> or <i>excludesfile</i> attribute is used to specify the files you want to have
  4505. excluded. This is also done with patterns. And finally with the
  4506. <i>defaultexcludes</i> attribute, you can specify whether you
  4507. want to use default exclusions or not. See the section on <a
  4508. href="#directorybasedtasks">directory based tasks</a>, on how the
  4509. inclusion/exclusion of files works, and how to write patterns.</p>
  4510. <p>This task forms an implicit <a href="#fileset">FileSet</a> and
  4511. supports all attributes of <code>&lt;fileset&gt;</code>
  4512. (<code>dir</code> becomes <code>srcdir</code>) as well as the nested
  4513. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  4514. <code>&lt;patternset&gt;</code> elements.</p>
  4515. <h3>Parameters</h3>
  4516. <table border="1" cellpadding="2" cellspacing="0">
  4517. <tr>
  4518. <td valign="top"><b>Attribute</b></td>
  4519. <td valign="top"><b>Description</b></td>
  4520. <td align="center" valign="top"><b>Required</b></td>
  4521. </tr>
  4522. <tr>
  4523. <td valign="top">binary</td>
  4524. <td valign="top">Whether literals are treated as the java binary
  4525. type rather than the NetRexx types</td>
  4526. <td valign="top" align="center">No</td>
  4527. </tr>
  4528. <tr>
  4529. <td valign="top">classpath</td>
  4530. <td valign="top">The classpath to use during compilation</td>
  4531. <td valign="top" align="center">No</td>
  4532. </tr>
  4533. <tr>
  4534. <td valign="top">comments</td>
  4535. <td valign="top">Whether comments are passed through to the
  4536. generated java source</td>
  4537. <td valign="top" align="center">No</td>
  4538. </tr>
  4539. <tr>
  4540. <td valign="top">compact</td>
  4541. <td valign="top">Whether error messages come out in compact or
  4542. verbose format</td>
  4543. <td valign="top" align="center">No</td>
  4544. </tr>
  4545. <tr>
  4546. <td valign="top">compile</td>
  4547. <td valign="top">Whether the NetRexx compiler should compile the
  4548. generated java code</td>
  4549. <td valign="top" align="center">No</td>
  4550. </tr>
  4551. <tr>
  4552. <td valign="top">console</td>
  4553. <td valign="top">Whether or not messages should be displayed on the
  4554. 'console'</td>
  4555. <td valign="top" align="center">No</td>
  4556. </tr>
  4557. <tr>
  4558. <td valign="top">crossref</td>
  4559. <td valign="top">Whether variable cross references are generated</td>
  4560. <td valign="top" align="center">No</td>
  4561. </tr>
  4562. <tr>
  4563. <td valign="top">decimal</td>
  4564. <td valign="top">Whether decimal arithmetic should be used for the
  4565. NetRexx code</td>
  4566. <td valign="top" align="center">No</td>
  4567. </tr>
  4568. <tr>
  4569. <td valign="top">defaultexcludes</td>
  4570. <td valign="top">indicates whether default excludes should be used or not
  4571. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when
  4572. omitted.</td>
  4573. <td valign="top" align="center">No</td>
  4574. </tr>
  4575. <tr>
  4576. <td valign="top">destDir</td>
  4577. <td valign="top">the destination directory into which the NetRexx
  4578. source files should be copied and then compiled</td>
  4579. <td valign="top" align="center">Yes</td>
  4580. </tr>
  4581. <tr>
  4582. <td valign="top">diag</td>
  4583. <td valign="top">Whether diagnostic information about the compile is
  4584. generated</td>
  4585. <td valign="top" align="center">No</td>
  4586. </tr>
  4587. <tr>
  4588. <td valign="top">excludes</td>
  4589. <td valign="top">comma separated list of patterns of files that must be
  4590. excluded. No files (except default excludes) are excluded when
  4591. omitted.</td>
  4592. <td valign="top" align="center">No</td>
  4593. </tr>
  4594. <tr>
  4595. <td valign="top">excludesfile</td>
  4596. <td valign="top">the name of a file. Each line of this file is
  4597. taken to be an exclude pattern</td>
  4598. <td valign="top" align="center">No</td>
  4599. </tr>
  4600. <tr>
  4601. <td valign="top">explicit</td>
  4602. <td valign="top">Whether variables must be declared explicitly
  4603. before use</td>
  4604. <td valign="top" align="center">No</td>
  4605. </tr>
  4606. <tr>
  4607. <td valign="top">format</td>
  4608. <td valign="top">Whether the generated java code is formatted nicely
  4609. or left to match NetRexx line numbers for call stack debugging</td>
  4610. <td valign="top" align="center">No</td>
  4611. </tr>
  4612. <tr>
  4613. <td valign="top">includes</td>
  4614. <td valign="top">comma separated list of patterns of files that must be
  4615. included. All files are included when omitted.</td>
  4616. <td valign="top" align="center">No</td>
  4617. </tr>
  4618. <tr>
  4619. <td valign="top">includesfile</td>
  4620. <td valign="top">the name of a file. Each line of this file is
  4621. taken to be an include pattern</td>
  4622. <td valign="top" align="center">No</td>
  4623. </tr>
  4624. <tr>
  4625. <td valign="top">java</td>
  4626. <td valign="top">Whether the generated java code is produced</td>
  4627. <td valign="top" align="center">No</td>
  4628. </tr>
  4629. <tr>
  4630. <td valign="top">keep</td>
  4631. <td valign="top">Sets whether the generated java source file should be kept
  4632. after compilation. The generated files will have an extension of
  4633. .java.keep, <b>not</b> .java</td>
  4634. <td valign="top" align="center">No</td>
  4635. </tr>
  4636. <tr>
  4637. <td valign="top">logo</td>
  4638. <td valign="top">Whether the compiler text logo is displayed when
  4639. compiling</td>
  4640. <td valign="top" align="center">No</td>
  4641. </tr>
  4642. <tr>
  4643. <td valign="top">replace</td>
  4644. <td valign="top">Whether the generated .java file should be replaced
  4645. when compiling</td>
  4646. <td valign="top" align="center">No</td>
  4647. </tr>
  4648. <tr>
  4649. <td valign="top">savelog</td>
  4650. <td valign="top">Whether the compiler messages will be written to
  4651. NetRexxC.log as well as to the console</td>
  4652. <td valign="top" align="center">No</td>
  4653. </tr>
  4654. <tr>
  4655. <td valign="top">sourcedir</td>
  4656. <td valign="top">Tells the NetRexx compiler to store the class files in the
  4657. same directory as the source files. The alternative is the working
  4658. directory</td>
  4659. <td valign="top" align="center">No</td>
  4660. </tr>
  4661. <tr>
  4662. <td valign="top">srcDir</td>
  4663. <td valign="top">Set the source dir to find the source Netrexx
  4664. files</td>
  4665. <td valign="top" align="center">Yes</td>
  4666. </tr>
  4667. <tr>
  4668. <td valign="top">strictargs</td>
  4669. <td valign="top">Tells the NetRexx compiler that method calls always
  4670. need parentheses, even if no arguments are needed, e.g.
  4671. <code>aStringVar.getBytes</code> vs.
  4672. <code>aStringVar.getBytes()</code></td>
  4673. <td valign="top" align="center">No</td>
  4674. </tr>
  4675. <tr>
  4676. <td valign="top">strictassign</td>
  4677. <td valign="top">Tells the NetRexx compile that assignments must
  4678. match exactly on type</td>
  4679. <td valign="top" align="center">No</td>
  4680. </tr>
  4681. <tr>
  4682. <td valign="top">strictcase</td>
  4683. <td valign="top">Specifies whether the NetRexx compiler should be
  4684. case sensitive or not</td>
  4685. <td valign="top" align="center">No</td>
  4686. </tr>
  4687. <tr>
  4688. <td valign="top">strictimport</td>
  4689. <td valign="top">Whether classes need to be imported explicitly using an
  4690. <code>import</code> statement. By default the NetRexx compiler will
  4691. import certain packages automatically</td>
  4692. <td valign="top" align="center">No</td>
  4693. </tr>
  4694. <tr>
  4695. <td valign="top">strictprops</td>
  4696. <td valign="top">Whether local properties need to be qualified
  4697. explicitly using <code>this</code></td>
  4698. <td valign="top" align="center">No</td>
  4699. </tr>
  4700. <tr>
  4701. <td valign="top">strictsignal</td>
  4702. <td valign="top">Whether the compiler should force catching of
  4703. exceptions by explicitly named types</td>
  4704. <td valign="top" align="center">No</td>
  4705. </tr>
  4706. <tr>
  4707. <td valign="top">symbols</td>
  4708. <td valign="top">Whether debug symbols should be generated into the
  4709. class file</td>
  4710. <td valign="top" align="center">No</td>
  4711. </tr>
  4712. <tr>
  4713. <td valign="top">time</td>
  4714. <td valign="top">Asks the NetRexx compiler to print compilation
  4715. times to the console</td>
  4716. <td valign="top" align="center">No</td>
  4717. </tr>
  4718. <tr>
  4719. <td valign="top">trace</td>
  4720. <td valign="top">Turns on or off tracing and directs the resultant
  4721. trace output</td>
  4722. <td valign="top" align="center">No</td>
  4723. </tr>
  4724. <tr>
  4725. <td valign="top">utf8</td>
  4726. <td valign="top">Tells the NetRexx compiler that the source is in UTF8</td>
  4727. <td valign="top" align="center">No</td>
  4728. </tr>
  4729. <tr>
  4730. <td valign="top">verbose</td>
  4731. <td valign="top">Whether lots of warnings and error messages should
  4732. be generated</td>
  4733. <td valign="top" align="center">Yes</td>
  4734. </tr>
  4735. </table>
  4736. <h3>Examples</h3>
  4737. <blockquote>
  4738. <p><code>&lt;netrexxc srcDir=&quot;/source/project&quot;
  4739. includes=&quot;vnr/util/*&quot;
  4740. destDir=&quot;/source/project/build&quot;
  4741. classpath=&quot;/source/project2/proj.jar&quot;
  4742. comments=&quot;true&quot;
  4743. crossref=&quot;false&quot; replace=&quot;true&quot;
  4744. keep=&quot;true&quot; /&gt;</code>
  4745. </p>
  4746. </blockquote>
  4747. <hr>
  4748. <h2><a name="renameexts">RenameExtensions</a></h2>
  4749. <h3>Description</h3>
  4750. <p>Renames files in the <code>srcDir</code> directory ending with the
  4751. <code>fromExtension</code> string so that they end with the
  4752. <code>toExtension</code> string. Files are only replaced if
  4753. <code>replace</code> is true
  4754. </p>
  4755. <p>See the section on
  4756. <a href="#directorybasedtasks">directory based tasks</a>, on how the
  4757. inclusion/exclusion of files works, and how to write patterns.
  4758. This task forms an implicit <a href="#fileset">FileSet</a> and
  4759. supports all attributes of <code>&lt;fileset&gt;</code>
  4760. (<code>dir</code> becomes <code>srcDir</code>) as well as the nested
  4761. <code>&lt;include&gt;</code>, <code>&lt;exclude&gt;</code> and
  4762. <code>&lt;patternset&gt;</code> elements.</p>
  4763. <h3>Parameters</h3>
  4764. <table border="1" cellpadding="2" cellspacing="0">
  4765. <tr>
  4766. <td valign="top"><b>Attribute</b></td>
  4767. <td valign="top"><b>Description</b></td>
  4768. <td align="center" valign="top"><b>Required</b></td>
  4769. </tr>
  4770. <tr>
  4771. <td valign="top">defaultexcludes</td>
  4772. <td valign="top">indicates whether default excludes should be used or not
  4773. (&quot;yes&quot;/&quot;no&quot;). Default excludes are used when
  4774. omitted.</td>
  4775. <td valign="top" align="center">No</td>
  4776. </tr>
  4777. <tr>
  4778. <td valign="top">excludes</td>
  4779. <td valign="top">comma separated list of patterns of files that must be
  4780. excluded. No files (except default excludes) are excluded when
  4781. omitted.</td>
  4782. <td valign="top" align="center">No</td>
  4783. </tr>
  4784. <tr>
  4785. <td valign="top">excludesfile</td>
  4786. <td valign="top">the name of a file. Each line of this file is
  4787. taken to be an exclude pattern</td>
  4788. <td valign="top" align="center">No</td>
  4789. </tr>
  4790. <tr>
  4791. <td valign="top">fromExtention</td>
  4792. <td valign="top">The string that files must end in to be renamed</td>
  4793. <td valign="top" align="center">Yes</td>
  4794. </tr>
  4795. <tr>
  4796. <td valign="top">includes</td>
  4797. <td valign="top">comma separated list of patterns of files that must be
  4798. included. All files are included when omitted.</td>
  4799. <td valign="top" align="center">No</td>
  4800. </tr>
  4801. <tr>
  4802. <td valign="top">includesfile</td>
  4803. <td valign="top">the name of a file. Each line of this file is
  4804. taken to be an include pattern</td>
  4805. <td valign="top" align="center">No</td>
  4806. </tr>
  4807. <tr>
  4808. <td valign="top">replace</td>
  4809. <td valign="top">Whether the file being renamed to should be
  4810. replaced if it already exists</td>
  4811. <td valign="top" align="center">No</td>
  4812. </tr>
  4813. <tr>
  4814. <td valign="top">srcDir</td>
  4815. <td valign="top">The starting directory for files to search in</td>
  4816. <td valign="top" align="center">Yes</td>
  4817. </tr>
  4818. <tr>
  4819. <td valign="top">toExtension</td>
  4820. <td valign="top">The string that renamed files will end with on
  4821. completion</td>
  4822. <td valign="top" align="center">Yes</td>
  4823. </tr>
  4824. </table>
  4825. <h3>Examples</h3>
  4826. <blockquote>
  4827. <p><code>&lt;renameext srcDir=&quot;/source/project1&quot;
  4828. includes=&quot;**&quot;
  4829. excludes=&quot;**/samples/*&quot;
  4830. fromExtension=&quot;.java.keep&quot;
  4831. toExtension=&quot;.java&quot;
  4832. replace=&quot;true&quot; /&gt;
  4833. </code>
  4834. </p>
  4835. </blockquote>
  4836. <hr>
  4837. <h2><a name="script">Script</a></h2>
  4838. <h3>Description</h3>
  4839. <p>Execute a script in a
  4840. <a href="http://oss.software.ibm.com/developerworks/opensource/bsf/">BSF</a> supported language.
  4841. <p>All items (tasks, targets, etc) of the running project are
  4842. accessible from the script, using either their <code>name</code> or
  4843. <code>id</code> attributes.</p>
  4844. <p>Scripts can do almost anything a task written in Java could do.</p>
  4845. <h3>Parameters</h3>
  4846. <table border="1" cellpadding="2" cellspacing="0">
  4847. <tr>
  4848. <td valign="top"><b>Attribute</b></td>
  4849. <td valign="top"><b>Description</b></td>
  4850. <td align="center" valign="top"><b>Required</b></td>
  4851. </tr>
  4852. <tr>
  4853. <td valign="top">language</td>
  4854. <td valign="top">The programming language the script is written in.
  4855. Must be a supported BSF language</td>
  4856. <td valign="top" align="center">No</td>
  4857. </tr>
  4858. <tr>
  4859. <td valign="top">src</td>
  4860. <td valign="top">The location of the script as a file, if not inline</td>
  4861. <td valign="top" align="center">No</td>
  4862. </tr>
  4863. </table>
  4864. <h3>Examples</h3>
  4865. <blockquote><pre>
  4866. &lt;project name=&quot;squares&quot; default=&quot;main&quot; basedir=&quot;.&quot;&gt;
  4867. &lt;target name=&quot;setup&quot;&gt;
  4868. &lt;script language=&quot;javascript&quot;&gt; &lt;![CDATA[
  4869. for (i=1; i&lt;=10; i++) {
  4870. echo = squares.createTask(&quot;echo&quot;);
  4871. main.addTask(echo);
  4872. echo.setMessage(i*i);
  4873. }
  4874. ]]&gt; &lt;/script&gt;
  4875. &lt;/target&gt;
  4876. &lt;target name=&quot;main&quot; depends=&quot;setup&quot; /&gt;
  4877. &lt;/project&gt;
  4878. </pre></blockquote>
  4879. <p>generates</p>
  4880. <blockquote><pre>
  4881. setup:
  4882. main:
  4883. 1
  4884. 4
  4885. 9
  4886. 16
  4887. 25
  4888. 36
  4889. 49
  4890. 64
  4891. 81
  4892. 100
  4893. BUILD SUCCESSFUL
  4894. </pre></blockquote>
  4895. <p>Another example, using <a href="#references">references by id</a>
  4896. and two different scripting languages:</p>
  4897. <blockquote><pre>
  4898. &lt;project name=&quot;testscript&quot; default=&quot;main&quot;&gt;
  4899. &lt;target name=&quot;sub&quot;&gt;
  4900. &lt;echo id=&quot;theEcho&quot; /&gt;
  4901. &lt;/target&gt;
  4902. &lt;target name=&quot;sub1&quot;&gt;
  4903. &lt;script language=&quot;netrexx&quot;&gt;&lt;![CDATA[
  4904. theEcho.setMessage(&quot;In sub1&quot;)
  4905. sub.execute
  4906. ]]&gt;&lt;/script&gt;
  4907. &lt;/target&gt;
  4908. &lt;target name=&quot;sub2&quot;&gt;
  4909. &lt;script language=&quot;javascript&quot;&gt;&lt;![CDATA[
  4910. theEcho.setMessage(&quot;In sub2&quot;);
  4911. sub.execute();
  4912. ]]&gt;&lt;/script&gt;
  4913. &lt;/target&gt;
  4914. &lt;target name=&quot;main&quot; depends=&quot;sub1,sub2&quot; /&gt;
  4915. &lt;/project&gt;
  4916. </pre></blockquote>
  4917. <p>generates</p>
  4918. <blockquote><pre>
  4919. sub1:
  4920. In sub1
  4921. sub2:
  4922. In sub2
  4923. main:
  4924. BUILD SUCCESSFUL
  4925. </pre></blockquote>
  4926. <hr>
  4927. <h2><a name="vssget">VssGet</a></h2>
  4928. <h3>Description</h3>
  4929. Task to perform GET commands to Microsoft Visual Source Safe.
  4930. <p>If you specify two or more attributes from version, date and
  4931. label only one will be used in the order version, date, label.</p>
  4932. <h3>Parameters</h3>
  4933. <table border="1" cellpadding="2" cellspacing="0">
  4934. <tr>
  4935. <th>Attribute</th>
  4936. <th>Values</th>
  4937. <th>Required</th>
  4938. </tr>
  4939. <tr>
  4940. <td>login</td>
  4941. <td>username,password</td>
  4942. <td>No</td>
  4943. </tr>
  4944. <tr>
  4945. <td>vsspath</td>
  4946. <td>SourceSafe path</td>
  4947. <td>Yes</td>
  4948. </tr>
  4949. <tr>
  4950. <td>localpath</td>
  4951. <td>Override the working directory and get to the specified path</td>
  4952. <td>No</td>
  4953. </tr>
  4954. <tr>
  4955. <td>writable</td>
  4956. <td>true or false</td>
  4957. <td>No</td>
  4958. </tr>
  4959. <tr>
  4960. <td>recursive</td>
  4961. <td>true or false</td>
  4962. <td>No</td>
  4963. </tr>
  4964. <tr>
  4965. <td>version</td>
  4966. <td>a version number to get</td>
  4967. <td>No</td>
  4968. </tr>
  4969. <tr>
  4970. <td>date</td>
  4971. <td>a date stamp to get at</td>
  4972. <td>No</td>
  4973. </tr>
  4974. <tr>
  4975. <td>label</td>
  4976. <td>a label to get for</td>
  4977. <td>No</td>
  4978. </tr>
  4979. <tr>
  4980. <td>ssdir</td>
  4981. <td>directory where <code>ss.exe</code> resides. By default the
  4982. task expects it to be in the PATH.</td>
  4983. <td>No</td>
  4984. </tr>
  4985. </table>
  4986. <p>Note that only one of version, date or label should be specified</p>
  4987. <h3>Examples</h3>
  4988. <blockquote>
  4989. <pre>
  4990. &lt;vssget localPath=&quot;C:\mysrc\myproject&quot;
  4991. recursive=&quot;true&quot;
  4992. label=&quot;Release1&quot;
  4993. login=&quot;me,mypassword&quot;
  4994. vsspath=&quot;/source/aProject&quot;
  4995. writable=&quot;true&quot;/&gt;
  4996. </pre>
  4997. </blockquote>
  4998. <p>Does a get on the VSS-Project <i>$/source/aproject</i> using the username
  4999. <i>me</i> and the password <i>mypassword</i>. It will recursively get the files
  5000. which are labeled <i>Release1</i> and write them to the local directory
  5001. <i>C:\mysrc\myproject</i>. The local files will be writable.</p>
  5002. <hr>
  5003. <h2><a name="buildevents">Build Events</a></h2>
  5004. Ant is capable of generating build events as it performs the tasks necessary to build a project.
  5005. Listeners can be attached to ant to receive these events. This capability could be used, for example,
  5006. to connect Ant to a GUI or to integrate Ant with an IDE.
  5007. <p>To use build events you need to create an ant <code>Project</code> object. You can then call the
  5008. <code>addBuildListener</code> method to add your listener to the project. Your listener must implement
  5009. the <code>org.apache.tools.antBuildListener</code> interface. The listener will receive BuildEvents
  5010. for the following events
  5011. <ul>
  5012. <li>Build started
  5013. <li>Build finished
  5014. <li>Target started
  5015. <li>Target finished
  5016. <li>Task started
  5017. <li>Task finished
  5018. <li>Message logged
  5019. </ul>
  5020. If you wish to attach a listener from the command line you may use the -listener option. For example
  5021. <blockquote>
  5022. <pre>ant -listener org.apache.tools.ant.XmlLogger</pre>
  5023. </blockquote>
  5024. will run ant with a listener which generates an XML representation of the build progress. This
  5025. listener is included with ant as is the default listener which generates the logging to standard
  5026. output.
  5027. <hr>
  5028. <h2><a name="writingowntask">Writing your own task</a></h2>
  5029. <p>It is very easy to write your own task:</p>
  5030. <ol>
  5031. <li>Create a Java class that extends <code>org.apache.tools.ant.Task</code>.</li>
  5032. <li>For each attribute, write a setter method. The setter method must be a
  5033. <code>public void</code> method that takes a single argument. The
  5034. name of the method must begin with &quot;set&quot;, followed by the
  5035. attribute name, with the first character in uppercase, and the rest in
  5036. lowercase. The type of the attribute can be <code>String</code>, any
  5037. primitive type (they are converted for you from their String-representation
  5038. in the build-file. If you specify a boolean your method will be passed the value
  5039. <i>true</i> if the value specified in the build-file is one of &quot;true&quot;,
  5040. &quot;yes&quot; or &quot;on&quot;), <code>Class</code>, <code>File</code>
  5041. (in which case the value of the attribute is interpreted relative to the
  5042. project's basedir) or any other type that has a constructor with a single
  5043. <code>String</code> argument</li>
  5044. <li>If your task has enumerated attributes, you should consider using
  5045. a subclass of org.apache.tools.ant.types.EnumeratedAttribute as argument
  5046. to your setter method. See org.apache.tools.ant.taskdefs.FixCRLF for
  5047. an example.</li>
  5048. <li>If the task should support character data, write a <code>public void
  5049. addText(String)</code> method.</li>
  5050. <li>For each nested element, write a create or add method. A create method
  5051. must be a <code>public</code> method that takes no arguments and returns
  5052. an Object type. The name of the create method must begin with
  5053. &quot;create&quot;, followed by the element name. An add method must be
  5054. a <code>public void</code> method that takes a single argument of an
  5055. Object type with a no argument constructor. The name of the add method
  5056. must begin with &quot;add&quot;, followed by the element name.
  5057. <li>Write a <code>public void execute</code> method, with no arguments, that
  5058. throws a <code>BuildException</code>. This method implements the task
  5059. itself.</li>
  5060. </ol>
  5061. <h3>The life cycle of a task</h3>
  5062. <ol>
  5063. <li>The task gets instantiated using a no-arg constructor at parser
  5064. time. This means even tasks that are never executed get
  5065. instantiated.</li>
  5066. <li>The tasks gets references to its project and location inside the
  5067. build file via their inherited <code>project</code> and
  5068. <code>location</code> variables.</li>
  5069. <li>If the user specified an id attribute to this task, the project
  5070. registers a reference to this newly created task - at parser
  5071. time.</li>
  5072. <li>The task gets a reference to the target it belongs to via its
  5073. inherited <code>target</code> variable.</li>
  5074. <li><code>init()</code> is called at parser time.</li>
  5075. <li>All child elements of the XML element corresponding to this task
  5076. are created via this task's <code>createXXX()</code> methods or
  5077. instantiated and added to this task via its <code>addXXX()</code>
  5078. methods - at parser time.</li>
  5079. <li>All attributes of this task get set via their corresponding
  5080. <code>setXXX</code> methods - at runtime.</li>
  5081. <li>The content character data sections inside the XML element
  5082. corresponding to this task is added to the task via its
  5083. <code>addText</code> method - at runtime.</li>
  5084. <li>All attributes of all child elements get set via their corresponding
  5085. <code>setXXX</code> methods - at runtime.</li>
  5086. <li><code>execute()</code> is called at runtime.</li>
  5087. </ol>
  5088. <h3>Example</h3>
  5089. <p>Let's write our own task, that prints a message on the System.out stream. The
  5090. task has one attribute called &quot;message&quot;.</p>
  5091. <blockquote>
  5092. <pre>package com.mydomain;
  5093. import org.apache.tools.ant.BuildException;
  5094. import org.apache.tools.ant.Task;
  5095. public class MyVeryOwnTask extends Task {
  5096. private String msg;
  5097. // The method executing the task
  5098. public void execute() throws BuildException {
  5099. System.out.println(msg);
  5100. }
  5101. // The setter for the &quot;message&quot; attribute
  5102. public void setMessage(String msg) {
  5103. this.msg = msg;
  5104. }
  5105. }</pre>
  5106. </blockquote>
  5107. <p>It's really this simple;-)</p>
  5108. <p>Adding your task to the system is rather simple too:</p>
  5109. <ol>
  5110. <li>Make sure the class that implements your task is in the classpath when
  5111. starting Ant.</li>
  5112. <li>Add a <i>taskdef</i> element to your project. This actually adds
  5113. your task to the system.</li>
  5114. <li>Use your task in the rest of the buildfile.</li>
  5115. </ol>
  5116. <h3>Example</h3>
  5117. <blockquote>
  5118. <pre>&lt;?xml version=&quot;1.0&quot;?&gt;
  5119. &lt;project name=&quot;OwnTaskExample&quot; default=&quot;main&quot; basedir=&quot;.&quot;&gt;
  5120. &lt;taskdef name=&quot;mytask&quot; classname=&quot;com.mydomain.MyVeryOwnTask&quot;/&gt;
  5121. &lt;target name=&quot;main&quot;&gt;
  5122. &lt;mytask message=&quot;Hello World! MyVeryOwnTask works!&quot; /&gt;
  5123. &lt;/target&gt;
  5124. &lt;/project&gt;
  5125. </pre>
  5126. </blockquote>
  5127. <p>Another way to add a task (more permanently), is to add the task name and
  5128. implementing class name to the <code>default.properties</code> file in the <code>org.apache.tools.ant.taskdefs</code>
  5129. package. Then you can use it as if it were a built in task.</p>
  5130. <hr>
  5131. <h2><a name="faq">FAQ, DTD, external resources</a></h2>
  5132. <p>There is an online FAQ for Ant at <a
  5133. href="http://jakarta.apache.org/jyve-faq/Turbine/screen/DisplayTopics/action/SetAll/project_id/2/faq_id/16">jakarta.apache.org</a>. This
  5134. FAQ is interactive, which means you can ask and answer questions
  5135. online.</p>
  5136. <p>One of the questions poping up quite often is &quot;Is there a DTD for
  5137. buildfiles?&quot;. Please refer to the FAQ for an answer.</p>
  5138. <hr>
  5139. <h2><a name="feedback">Feedback</a></h2>
  5140. <p>To provide feedback on this software, please subscribe to the Ant User
  5141. Mail List (<a href="mailto:ant-user-subscribe@jakarta.apache.org">ant-user-subscribe@jakarta.apache.org</a>)</p>
  5142. <p>If you want to contribute to Ant or stay current with the latest
  5143. development, join the Ant Development Mail List (<a
  5144. href="mailto:ant-dev-subscribe@jakarta.apache.org">ant-dev-subscribe@jakarta.apache.org</a>)</p>
  5145. <p>Archives of both lists can be found at <a
  5146. href="http://archive.covalent.net/">http://archive.covalent.net/</a>. Many
  5147. thanks to Covalent Technologies.</p>
  5148. <hr>
  5149. <p align="center">Copyright &copy; 2000 Apache Software Foundation. All rights
  5150. Reserved.</p>
  5151. </body>
  5152. </html>