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.

WHATSNEW 260 kB

5 years ago
5 years ago
5 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
7 years ago
7 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
10 years ago
11 years ago
12 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109
  1. Changes from Ant 1.10.9 TO Ant 1.10.10
  2. ======================================
  3. Fixed bugs:
  4. -----------
  5. * SCP (with sftp=true) task would fail if fetching file located in root directory
  6. Bugzilla Report 64742
  7. Other changes:
  8. --------------
  9. * javaversion condition now has a new "atmost" attribute. See the javaversion
  10. manual for more details
  11. * The "listener" nested element of the "junitlauncher" task now has a new
  12. "useLegacyReportingName" attribute which can be used to control the test
  13. identifiers names that get reported by the listener. See the junitlauncher
  14. manual for more details.
  15. Note that this change also introduces a new "setUseLegacyReportingName" method
  16. on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
  17. interface. This will break backward compatibility with any of your custom
  18. result formatters which implemented this interface and such implementations
  19. are now expected to implement this new method.
  20. * a new attribute preserveduplicates allows <resourcelist> to return
  21. the same resource multiple times when set to true.
  22. Bugzilla Report 64854
  23. Changes from Ant 1.10.8 TO Ant 1.10.9
  24. =====================================
  25. Fixed bugs:
  26. -----------
  27. * the ftp task could throw a NullPointerException if an error occured
  28. Bugzilla Report 64438
  29. * propertyset now also sees in-scope local properties
  30. Bugzilla Report 50179
  31. * replaced our version of ReaderInputStream with the battle-tested
  32. version of Apache Commons IO as our version had problems with
  33. surrogate pairs (and likely other edge cases as well).
  34. Bugzilla Report 40455
  35. * <fixcrlf> will no longer remove the temporary file it just created
  36. before writing to it.
  37. * <sshexec> and <scp> didn't deal with wildcard hostnames in ssh
  38. config files properly.
  39. Bugzilla Report 64530
  40. Other changes:
  41. --------------
  42. * Ant will no longer log a warning if it doesn't find tools.jar
  43. Bugzilla Report 63577
  44. * the <jar> task accepts now a nested <indexjarsmapper> element
  45. that can be used to perform custom filename transformations
  46. for the <indexjars> archives.
  47. Github Pull Request #134
  48. * added a new PropertyEnumerator interface that extensions can
  49. provide if they are managing properties unknown to the Ant project.
  50. * added some special code to support GraalVM JavaScript as
  51. javax.script scripting engine for JavaScript. In particular we
  52. relax some security settings of GraalVM so that scripts can access
  53. Ant objects.
  54. Also Ant enables Nashorn compatibility mode by default, you can
  55. disable that by setting the magic Ant property
  56. ant.disable.graal.nashorn.compat to true.
  57. See the script task manual for additional details.
  58. * If the magic property ant.tmpdir hasn't been set and Ant can
  59. control the permissions of directories it creates it will create an
  60. owner-owned temporary directory unaccessible to others as default
  61. tempdir as soon as a temporary file is created for the first time,
  62. Changes from Ant 1.10.7 TO Ant 1.10.8
  63. =====================================
  64. Fixed bugs:
  65. -----------
  66. * "legacy-xml" formatter of junitlauncher task wasn't writing out
  67. the stacktrace for failures. This is now fixed.
  68. Bugzilla Report 63827
  69. * sshexec failed to write output to a file if the file didn't exist
  70. * Fixes a regression in javac task involving command line argument
  71. files.
  72. Bugzilla Report 63874
  73. * sshexec, sshsession and scp now support a new sshConfig parameter.
  74. It specified the SSH configuration file (typically ${user.home}/.ssh/config)
  75. defining the username and keyfile to be used per host.
  76. * "legacy-xml" formatter of junitlauncher task wasn't writing out
  77. exceptions that happen in @BeforeAll method of a test. This is now fixed.
  78. Bugzilla Report 63850
  79. * Building Ant from source could result in the javadocs target failing if the
  80. optional dependencies were missing. This has now been fixed.
  81. Bugzilla Report 63438
  82. * Fixes a potential ConcurrentModificationException in XMLLogger.
  83. Bugzilla Report 63921
  84. * Fixes a bug in junitlauncher task in forked mode, where if a listener element
  85. was used as a sibling element for either the test or testclasses element,
  86. then the forked mode launch would fail.
  87. Bugzilla Report 63958
  88. * Fixes an issue in AntStructure where an incorrect DTD was being generated.
  89. Github Pull Request #116
  90. * Fixes an incorrect variable name usage in junit-frames-xalan1.xsl.
  91. Github Pull Request #117
  92. Other changes:
  93. --------------
  94. * org.apache.tools.mail.MailMessage will now send a fully qualified
  95. domain name in its HELO message.
  96. Github Pull Request #101
  97. * The runant.py script should now work with Python 3.
  98. Github Pull Request #96
  99. * tstamp task now honors SOURCE_DATE_EPOCH environment variable for
  100. reproducible builds (https://reproducible-builds.org/specs/source-date-epoch/#idm55)
  101. Bugzilla Report 62617
  102. * rmic has been removed from Java 15. The task will now throw an
  103. exception if you try to use it while running Java 15 or newer.
  104. * a new property ant.tmpdir provides improved control over the
  105. location Ant uses to create temporary files
  106. Changes from Ant 1.10.6 TO Ant 1.10.7
  107. =====================================
  108. Fixed bugs:
  109. -----------
  110. * FTP still tries checking or entering directories after a timeout
  111. Bugzilla Report 63454
  112. * junitlauncher - does not detect failure in @BeforeAll
  113. Bugzilla Report 63479
  114. * Error using ant-1.10.6 with jdk8
  115. Bugzilla Report 63457
  116. * FTP task no longer duplicates a check for a file being a symlink.
  117. Bugzilla Report 63259
  118. * junitlauncher task, when used in fork mode with "<testclasses>",
  119. used to create the wrong number of listeners per test class. This
  120. has now been fixed.
  121. Bugzilla Report 63446
  122. * The "legacy-xml" junitlauncher task's listener would not include
  123. @ParameterizedTest testcases in its XML report file. This has now
  124. been fixed.
  125. Bugzilla Report 63680
  126. Other changes:
  127. --------------
  128. * FTP task timeout improvements.
  129. Bugzilla Reports 63252 and 47414
  130. * junitlauncher task now supports selecting test classes for execution,
  131. based on the JUnit 5 tags, through the new "includeTags" and
  132. "excludeTags" attributes.
  133. * prefer https over http when building ant itself, and in the ant
  134. documentation and sources
  135. * changed the references and Maven coordinates of JavaMail dependency
  136. to Jakarta Mail and thus javax.mail to jakarta.mail - and upgraded
  137. the dependency to 1.6.3.
  138. Changes from Ant 1.10.5 TO Ant 1.10.6
  139. =====================================
  140. Changes that could break older environments:
  141. -------------------------------------------
  142. * image task no longer works on Java 9+ because internal classes
  143. supporting Java Advanced Imaging are removed; imageio task (based on
  144. ImageIO and AWT) is provided as a replacement.
  145. * junitlauncher task has changed the class names and package names of
  146. the task as well as some of the supporting classes of that task. If
  147. any code depended on these class or package names, they will have to
  148. be updated to reference these newly named classes. This however,
  149. doesn't impact build scripts if their reference to junitlauncher task
  150. was merely through the use of the <junitlauncher> element.
  151. * ClearCase#runS has been augmented by a two arg-version and the
  152. one-arg version will no longer be called. This may affect
  153. subclasses that have overridden runS.
  154. Fixed bugs:
  155. -----------
  156. * fetch.xml must retrieve runtime rather than compile dependencies for
  157. mail task.
  158. Bugzilla Report 62621
  159. * Fixes an issue in junitreport task, which used to throw a
  160. java.net.MalformedURLException when saxon was used on Windows OS.
  161. Bugzilla Report 62594
  162. * augment task now throws a BuildException (as noted in its manual)
  163. instead of a IllegalStateException in the absence of the "id" attribute.
  164. Bugzilla Report 62655
  165. * org.apache.tools.zip.ZipOutputStream would sometimes potentially use
  166. an incorrect compression level for a zip entry. This is now fixed.
  167. Bugzilla Report 62686
  168. * sync task, in some cases on case insensitive file systems, would consider
  169. a file in a destination directory to be orphaned and would delete it.
  170. This task has now been fixed to infer the case sensitivity of the filesystem
  171. of the destination directory.
  172. Bugzilla Report 62890
  173. * Fixes a potential java.util.ConcurrentModificationException in
  174. org.apache.tools.ant.Project#getCopyOfReferences.
  175. Github Pull Request #81
  176. * cccheckout would ignore an error of the "ls checkout" command even
  177. if failOnError was set to false.
  178. Bugzilla Report 63071
  179. * The isreachable condition could in some cases return true even if the
  180. actual address could potentially be unreachable. This is now fixed
  181. and the resolved address is actually checked for reachability.
  182. * Fixes an issue where scp transfer completion tracking wasn't being
  183. triggered for 100% completion.
  184. Github Pull Request #91
  185. Other changes:
  186. --------------
  187. * generatekey task now supports SubjectAlternativeName during key
  188. generation.
  189. * the <modified> selector has a new built-in algorithm 'lastmodified'
  190. which computes a value based upon the lastmodified time of the file.
  191. * junitlauncher task now supports running tests in a forked JVM. More
  192. details available in the junitlauncher task manual.
  193. * signjar and verifyjar now support the -providerName, -providerClass
  194. and -providerArg command line options of keytool via new attributes.
  195. Bugzilla Report 65234
  196. * signjar and verifyjar now supported nested <arg> elements for
  197. command line arguments that are not supported explicitly by the
  198. tasks via attributes.
  199. * added several attributes to <javadoc> that support modules.
  200. Bugzilla Report 62424
  201. * properties used or set by BuildFileTask/BuildFileRule are documented
  202. in MagicTestNames. A new magic property, ant.test.basedir.ignore, is
  203. introduced for cases where Ant projects set up for test purposes
  204. must ignore basedir set externally by test harness.
  205. * a new CharSet type is provided for encoding or charset attributes in
  206. tasks that must deal with different character encodings in files,
  207. file names and other string resources.
  208. * org.apache.tools.ant.AntClassLoader is now multi-release jar aware.
  209. Starting Java 9, jar files can be packaged as multi-release jars,
  210. AntClassLoader now recognizes such multi-release jar files while
  211. loading resources at runtime in Java 9+ runtime environments.
  212. Bugzilla Report 62952
  213. * Added jmod and link tasks, to support jmod and jlink tools of JDK 9+.
  214. Github Pull Request #80
  215. * Jsch library dependency has now been upgraded to 0.1.55. Jsch is
  216. the library behind the sshexec and scp Ant tasks.
  217. Github Pull Request #84
  218. * The "http" condition, now has a "readTimeout" attribute which can be
  219. used to control the amount of time to wait for the read to complete.
  220. Bugzilla Report 63193
  221. * ftp task manual has been updated to mention that the remote listing of
  222. files honours the followsymlinks attribute.
  223. Bugzilla Report 63226
  224. Changes from Ant 1.10.4 TO Ant 1.10.5
  225. =====================================
  226. Fixed bugs:
  227. -----------
  228. * Fixes a regression in the "get" task where redirects
  229. from a HTTP resource to a HTTPS resource started throwing
  230. an exception.
  231. Bugzilla Report 62499
  232. * the new allowFilesToEscapeDest didn't work when set to false and
  233. archive entries contained relative paths with so many ".."
  234. segnments that the resulting path would go beyond the file system
  235. root.
  236. Bugzilla Report 62502
  237. Other changes:
  238. --------------
  239. * Java task now accepts a "sourcefile" attribute to allow single file
  240. source program execution, a feature that is introduced in Java 11.
  241. Changes from Ant 1.10.3 TO Ant 1.10.4
  242. =====================================
  243. Changes that could break older environments:
  244. -------------------------------------------
  245. * <unzip>, <unjar> and <untar> will no longer extract entries whose
  246. names would make the created files be placed outside of the
  247. destination directory anymore by default. A new attribute
  248. allowFilesToEscapeDest can be used to override the behavior.
  249. Another special case is when stripAbsolutePathSpec is false (which
  250. no longer is the default) and the entry's name starts with a
  251. (back)slash and allowFilesToEscapeDest hasn't been specified
  252. explicitly, in this case the file may be created outside of the
  253. dest directory as well.
  254. In addition stripAbsolutePathSpec is now true by default.
  255. Based on a recommendation by the Snyk Security Research Team.
  256. Fixed bugs:
  257. -----------
  258. * Delay the class initialization of the test classes until they are
  259. passed to JUnit. This way we can avoid that failing static initializers
  260. from non-test classes are reported as error when the 'skipNonTests' option
  261. is 'true'.
  262. Bugzilla Report 60062
  263. * The junit task when used with includeantruntime="no" was incorrectly
  264. printing a warning about multiple versions of ant detected in path
  265. * <cab> died with a NullPointerException since Ant 1.10.2.
  266. Bugzilla Report 62335
  267. * The <depend> task would fail with
  268. "java.lang.ClassFormatError: Invalid Constant Pool entry Type 19" while
  269. parsing a module-info.class. The task is compatible with
  270. Java bytecode version 53 now.
  271. Bug reported by Simon IJskes https://issues.apache.org/jira/browse/NETBEANS-781
  272. * Default and SecureInputHandler will now raise an error when then
  273. end of the input stream (usually System.in or System.console) are
  274. reached before a valid input has been read.
  275. * junitreport does not list testsuites that fail to start any tests
  276. because of an exception inside the all-tests and alltests-errors frames.
  277. Bugzilla Report 62443
  278. Other changes:
  279. --------------
  280. * AntAssert is deprecated, assertThat from JUnit 4.4+, Hamcrest matchers and/or
  281. ExpectedException rule provide equivalent functionality
  282. * PumpStreamHandler now explicitly verifies the streams for output
  283. and error are not null and will throw an exception if they
  284. are. This way creating a PumpStreamHandler will fail early as
  285. opposed to some obscure errors later when closing streams or
  286. finishing threads might fail.
  287. Bugzilla Report 62148
  288. * <property> has a new attribute runtime which can be used to set
  289. properties with values taken as snapshots from the
  290. availableProcessors, freeMemory, maxMemory and totalMemory methods
  291. of the Java Runtime class.
  292. * linecontains filter now has a new "matchAny" attribute which when
  293. set to "true" allows any (instead of all) of the user-specified
  294. strings to be present in the line.
  295. Bugzilla Report 62313
  296. * <resourcelist> has a new basedir attribute that can be used to
  297. resolve relative names and provides a root for the FileResources
  298. generated.
  299. Bugzilla Report 62379
  300. * The <includesfile> and <excludesfile> nested elements of
  301. <patternset> and <fileset> now support an encoding attribute that
  302. can be used to specify the file's encoding.
  303. Bugzilla Report 62379
  304. * New file selectors, posixGroup and posixPermissions, are available.
  305. The new selectors and related ownedBy selector have "followSymlinks"
  306. attribute that defaults to "true" for consistency.
  307. Bugzilla Report 22370
  308. * The junitlauncher task now has a "printSummary" attribute which when
  309. set to "true" will print the test execution summary to System.out.
  310. Changes from Ant 1.10.2 TO Ant 1.10.3
  311. =====================================
  312. Changes that could break older environments:
  313. -------------------------------------------
  314. * Previous versions of Ant's copy task would throw a BuildException
  315. if the "name" of the resource to copy was null. Starting
  316. this version, the copy task instead silently skips such resources
  317. and no longer throws an exception.
  318. ant-dev list https://www.mail-archive.com/dev@ant.apache.org/msg46634.html
  319. * Reverted the signature change of various clone method
  320. implementation in Ant's data-types introduced with 1.10.2 as they
  321. broke subclasses of said data-types which tried to override clone.
  322. Fixed bugs:
  323. -----------
  324. * Fixed NullPointerException in ChainedMapper
  325. Bugzilla Report 62086
  326. * Fixed NullPointerException when a mappedresource is used in pathconvert
  327. Bugzilla Report 62076
  328. * Fixed an issue where a string, when used as a resource collection, within
  329. tokens, would be replaced by property values
  330. Bugzilla Report 62147
  331. * Added a workaround for a bug in the jarsigner tool to <verifyjar>
  332. which requires the -storepass command line argument when verifying
  333. signatures using -strict together with a PKCS12 keystore. Unlike
  334. when signing the jar it will not prompt for the keystore's password
  335. and read it from standard input.
  336. This means Ant will now pass the keystore's password on the command
  337. line when using <verifyjar>, which poses a security risk you should
  338. be aware of.
  339. Bugzilla Report 62194
  340. Other changes:
  341. --------------
  342. * Allow Saxon to be used for junitreport XSL transformation
  343. Github Pull Request #57
  344. * when running on Java 11+ rmic will fail early if iiop or idl are
  345. requested. Java 11 removes support for CORBA and the switches have
  346. been removed from the rmic tool.
  347. * A new junitlauncher task which support JUnit 5 test framework.
  348. Bugzilla Report 61796
  349. Changes from Ant 1.10.1 TO Ant 1.10.2
  350. =====================================
  351. Changes that could break older environments:
  352. -------------------------------------------
  353. * updated the dependency of BCEL to 6.2.
  354. Bugzilla Report 61196
  355. * delete task previously would silently accept wildcard (*)
  356. value for the "file" attribute. That's no longer the case
  357. and an exception could get thrown by the underlying filesystem
  358. for such use. Usage like:
  359. <delete file="/foo/bar/*.something"/>
  360. should instead be changed to use resource collections like:
  361. <delete>
  362. <fileset dir="/foo/bar/" includes="*.something"/>
  363. </delete>
  364. * Commons Net 3.6 is binary-code, but not source compatible;
  365. see change list of Commons Net 3.0 for details
  366. * The Log4jListener is marked as deprecated as the required log4j library
  367. (in version 1.x) is not maintained any more.
  368. * Image task is marked as deprecated as the required JAI library is not
  369. maintained any more and internal APIs that JAI depended on are no longer
  370. available in Java 9.
  371. Fixed bugs:
  372. -----------
  373. * <genkey>'s <dname> child now skips <param>s that lack a key or
  374. value.
  375. Bugzilla Report 60767
  376. * bootstrapping Ant on Windows failed
  377. Bugzilla Report 61027
  378. * Fixed the issue where the SCP based tasks would try to change
  379. the permissions on the parent directory of a transferred file,
  380. instead of changing it on the transferred file itself.
  381. Bugzilla Reports 59648 and 43271
  382. * Fixed the issue where the source file being copied could end
  383. up being corrupted if the target of the copy happened to be
  384. the same source file (symlinked back to itself).
  385. Bugzilla Report 60644
  386. * Fixed the issue where symlink creation with "overwrite=false",
  387. on existing symlink whose target was a directory, would end
  388. up creating a new symlink under the target directory.
  389. Bugzilla Report 58683
  390. * Improvement to the Zip task for reduced memory usage in certain
  391. cases. Thanks to Glen Lewis for reporting the issue and
  392. suggesting the fix.
  393. Bugzilla Report 19516
  394. * Fixed an issue where the content redirected from output/error
  395. streams of a process, could end up being truncated.
  396. Bugzilla Report 58833, 58451
  397. * <fileset>/<zipfileset>/<tarfileset> will now throw an exception
  398. with a more useful error message when setFile is called twice on
  399. the same instance.
  400. Bugzilla Report 62071
  401. Other changes:
  402. --------------
  403. * Added forceCsvQuoteChar option to <csv> task. When enabled the
  404. values always get quoted.
  405. Github Pull Request #32
  406. * Added <encoding> attributes to various script related tasks and a
  407. compiled attribute to scriptdef.
  408. Github Pull Request #30
  409. * Added support for jarsigner's -tsadigestalg to <signjar>.
  410. Bugzilla Report 60665
  411. * added "regexp" attribute to <linecontainsregexp>
  412. Bugzilla Report 60968
  413. * reduced GC pressure by replacing all usage of FileInputStream and
  414. FileOutputStream.
  415. * Task can now also use attribute setters that expect a
  416. java.nio.file.Path argument.
  417. Bugzilla Report 61042
  418. * added a new magic property ant.tstamp.now that can be used to
  419. override the current time/date used by <tstamp>.
  420. Bugzilla Report 61079
  421. * added Orion support to ejbjar
  422. Github Pull Request #33
  423. * SCP task, when configured to use SFTP protocol, now preserves last
  424. modified timestamp on files that it uploads, if the
  425. preserveLastModified attribute is set to true for that task
  426. Bugzilla Report 58589
  427. * zip and the related tasks can now set the modification time of all
  428. entries to a fixed timestamp.
  429. Github Pull Request #36
  430. * Jsch library dependency has now been upgraded to 0.1.54. Jsch is
  431. the library behind the sshexec and scp Ant tasks.
  432. Bugzilla Report 61718
  433. * Added a new <javaversion> condition.
  434. * added "javac10+" as new supported value for javac's compiler attribute.
  435. * javah has been removed from Java 10. The task will now throw an
  436. exception if you try to use it while running Java 10 or newer.
  437. * Updated Maven Ant Tasks, Jakarta Regexp and JUnit 4 to the latest
  438. stable version (2.1.3, 1.4, and 4.12 respectively); updated
  439. JRuby to the latest Java 5 compatible version (1.6.8); added
  440. resolve target for AntUnit to facilitate updates.
  441. Github Pull Request #50
  442. * Updated Java Mail API, Jython, Rhino and Commons Net to the latest
  443. stable version (1.6.0, 2.7.0, 1.7.7.2 and 3.6, respectively).
  444. Github Pull Request #53
  445. Changes from Ant 1.10.0 TO Ant 1.10.1
  446. =====================================
  447. Fixed bugs:
  448. -----------
  449. * Ant 1.10.0 made Path#systemClasspath final which broke the Eclipse
  450. integration.
  451. Bugzilla Report 60582
  452. * the wrapper script still didn't work on Solaris 10, but worked on
  453. Solaris 11.
  454. The "fixed" script should work in most cases but will not preserve
  455. newlines present in command line arguments.
  456. Bugzilla Report 60562
  457. Other changes:
  458. --------------
  459. * new tasks <xz> and <unxz> and resource <xzresource> for XZ
  460. compression. Also the compression attribute of <tar>/<untar> now
  461. accepts "xz" as valid value.
  462. The tasks and type are contained in the new ant-xz.jar and require
  463. the library XZ for Java to be on the CLASSPATH.
  464. Bugzilla Report 60350
  465. Changes from Ant 1.9.7 TO Ant 1.10.0
  466. ====================================
  467. Changes that could break older environments:
  468. -------------------------------------------
  469. * Ant 1.10.x requires Java8 or newer at compile or build time.
  470. The 1.9.x series wil stay compatible with Java5.
  471. * The <apt> task has been removed since apt itself has been removed
  472. with Java8.
  473. * <fileset>/<zipfileset>/<tarfileset> exhibited undefined
  474. behavior when both the dir and file attribute have been used on the
  475. same instance. This will now cause the build to fail.
  476. Bugzilla Report 59402
  477. * <native2ascii> will default to the builtin implementation on Java8
  478. as well (sun isn't available for Java9+ anyway).
  479. * The ant.java.version property will now hold the value "9" rather
  480. than "1.9" if running on Java 9.
  481. * <rmic> will no longer allow the -Xnew option (or xmic compiler) to
  482. be used when running on Java 9 since this option has been removed.
  483. Bugzilla Report 59906
  484. * <javah> will default to the "forking" implementation on Java8
  485. as well.
  486. Fixed bugs:
  487. -----------
  488. * setDynamicAttribute on MacroInstance now lower-cases the attribute
  489. name in order to allow users of the API to use the attributes names
  490. they have specified.
  491. Bugzilla Report 59339
  492. * <get>'s quiet attribute was broken, it didn't suppress any messages.
  493. Bugzilla Report 59379
  494. * <zip>'s check whether an archive is already up-to-date failed on
  495. NTFS filesystems and re-created archives more often than necessary.
  496. Bugzilla Report 59562
  497. * AntClassLoader didn't delegate to the parent loader for classes in
  498. the "jdk" package or one of its subpackages. This hierarchy has
  499. been introduced with Java 7.
  500. Bugzilla Report 59556
  501. * The ant wrapper script used on Unix-like operating systems only
  502. worked on OSes where sed is GNU sed.
  503. Bugzilla Report 59898
  504. * <touch>'s default pattern as well as the default patterns used by
  505. the <date> (resource) selectors depended on the JDK being used - or
  506. rather the locale provider being used and the default locale
  507. provider changed with Java 9.
  508. They are now fixed and the documentation has been updated to
  509. reflect the real patterns used rather than a non-formal description
  510. of the expected format.
  511. Bugzilla Report 59909
  512. * Clarified the documentation of <get>'s retries attribute.
  513. Bugzilla Report 59930
  514. * The ant wrapper script failed if backticks were passed on the
  515. command line.
  516. Bugzilla Report 60150, 59445
  517. * The report generated by <junitreport> could contain duplicate
  518. characters in stack traces.
  519. Bugzilla Report 58661
  520. Other changes:
  521. --------------
  522. * New file selectors <executable>, <symlink> and <ownedBy>.
  523. * New task <setpermissions> that provides the ability to set POSIX
  524. compatible permssions via NIO's PosixFilePermission
  525. * <junit> now initializes the cause of the AssertionFailedError when
  526. converting from AssertionError.
  527. Bugzilla Report 58982
  528. * <scp> now supports compression via the optional compressed attribute.
  529. Bugzilla Report 47552
  530. * <junit> now supports JDK9 modules
  531. Github Pull Request #18
  532. * a new implementation "builtin" has been added to <native2ascii> and
  533. is the default when running on JDK9+ since the tool itself has been
  534. removed from the JDK.
  535. Bugzilla Report 59855
  536. * added a new <native2asciifilter> filter that can perform non-ASCII
  537. to Unicode-escape conversions.
  538. * <rmic> defaults to the "forking" compiler on JDK 9+ as the
  539. implementation class of rmic is not exported by its containing
  540. module and thus not accessible to Ant without applying -XaddExports
  541. magic.
  542. Bugzilla Report 59860
  543. * a new implementation "forking" has been added to <javah> and is
  544. used as default when running on JDK9.
  545. * support for javac's -h switch has been added with the
  546. nativeheaderdir attribute.
  547. Bugzilla Report 59905
  548. * it is now possible to set features of the TraX factory used by <xslt>
  549. and <junitreport>.
  550. * it is now possible to use references to Ant types and classloaders
  551. built around Ant <path>s as values for TraX factory attributes.
  552. * AntClassLoader and its subclasses register themselves as parallel
  553. capable.
  554. * <junitreport> now enables the feature
  555. http://www.oracle.com/xml/jaxp/properties/enableExtensionFunctions
  556. when run on Java 9 so the redirect extension function can be used
  557. if when a SecurityManager is active.
  558. Bugzilla Report 60060
  559. * support for javac's --release switch introduced with Java9 has been
  560. added.
  561. Bugzilla Report 60172
  562. Changes from Ant 1.9.6 TO Ant 1.9.7
  563. ===================================
  564. Changes that could break older environments:
  565. -------------------------------------------
  566. * <exec> and <apply> used to ignore the dir attribute if it was the
  567. same as the current working directory. They now no longer do,
  568. which changes the behavior for vmlauncher="false" which would have
  569. used the project's basedir rather than the current working
  570. directory in that case.
  571. Bugzilla Report 58555
  572. Fixed bugs:
  573. -----------
  574. * ZipOutputStream could cause an ArrayIndexOutOfBoundsException when
  575. adding entries with comments. This never happens when using Ant as
  576. a build tool but may affect users using Ant's zip package as a
  577. library.
  578. * <gunzip> and <bunzip2> didn't work for non-filesystem resources.
  579. * <jar> ignored the zip64Mode attribute when creating manifest-only
  580. jars. This resulted in jar files that couldn't be read by Java5.
  581. Bugzilla Report 58428
  582. * <untar> will now detect GNU tar longname/link records even if they
  583. don't use the names used by GNU tar itself. star is known to
  584. create archives of that kind.
  585. https://issues.apache.org/jira/browse/COMPRESS-324
  586. * <script> could fail to find javax.script on JDK9 with Jigsaw.
  587. Bugzilla Report 58271
  588. * <import> sometimes failed to normalize file names which could lead
  589. to files getting imported twice which in turn could lead to targets
  590. getting executed twice.
  591. Bugzilla Report 58886
  592. * TarInputStream now properly extraxt directory entries with a
  593. non-zero size.
  594. * <union> would drop file resources pointing to the same file but
  595. using different names.
  596. Bugzilla Report 57965
  597. * <replace>'s result was undefined when using the replacefilterfile
  598. attribute and some keys inside the properties files have been
  599. substrings of other keys. Keys are now sorted by descending size.
  600. Bugzilla Report 58997
  601. * Ant fails to run when arguments contain double-quote character.
  602. Bugzilla Report 58898
  603. * Ant fails to run if ANT_HOME contains a double-quote character.
  604. Bugzilla Report 58874
  605. * Definer's way to parse URLs from classloader breaks with
  606. recent Java 9 builds (b108).
  607. Bugzilla Report 59130
  608. * <ant> and <antcall> now preserve the ext status set by an <exit>
  609. task.
  610. Bugzilla Report 59228
  611. Other changes:
  612. --------------
  613. * <scp> now supports (filesystem-only) resource collections in
  614. addition to filesets.
  615. Bugzilla Report 50769
  616. * The <http> condition has a new optional attribute followRedirects.
  617. Bugzilla Report 58840
  618. * <java> now supports Java9 modules.
  619. https://github.com/apache/ant/pull/15
  620. * <javac> now supports Java9 modules.
  621. https://github.com/apache/ant/pull/16
  622. * <sshexec> and <scp> have two new attributes serverAliveInterval and
  623. serverAliveCountMax that can be used to keep a intermediaries from
  624. closing idle connections.
  625. Bugzilla Report 59162
  626. Changes from Ant 1.9.5 TO Ant 1.9.6
  627. ===================================
  628. Changes that could break older environments:
  629. -------------------------------------------
  630. Fixed bugs:
  631. -----------
  632. * ArrayIndexOutOfBoundsException when ZIP extra fields are read and
  633. the entry contains an UnparseableExtraField.
  634. https://issues.apache.org/jira/browse/COMPRESS-317
  635. Other changes:
  636. --------------
  637. * Hidden <javaconstant> resource is published now. It reads the
  638. value of a specified java constant.
  639. Changes from Ant 1.9.4 TO Ant 1.9.5
  640. ===================================
  641. Changes that could break older environments:
  642. -------------------------------------------
  643. * The ReplaceTokens filter can now use token-separators longer than
  644. one character. This means it can be used to replace mustache-style
  645. {{patterns}} and similar templates. This is going to break code
  646. that invokes the setters on ReplaceTokens via the Java API as their
  647. parameters have been changed from char to String. It may also
  648. break build files that specified multi character tokens and relied
  649. on Ant silently ignoring all but the first character.
  650. Bugzilla Report 56584
  651. * The changes that added <get>'s support for gzip encoding
  652. automatically uncompressed content that would not have been touched
  653. before - like when downloading .tar.gz files. A new flag has been
  654. added to control the behavior and its default will make <get> work
  655. as it did in 1.9.3. I.e. if you want it to work like 1.9.4
  656. you have to explicitly set tryGzipEncoding to true.
  657. Bugzilla Report 57048
  658. Fixed bugs:
  659. -----------
  660. * TarArchiveInputStream failed to read archives with empty gid/uid
  661. fields.
  662. Bugzilla Report 56641
  663. * TarArchiveInputStream could throw IOException when reading PAX
  664. headers from a "slow" InputStream.
  665. * XMLJunitResultFormatter could throw NullPointerException if Java
  666. cannot determine the local hostname.
  667. Bugzilla Report 56593
  668. * URLResource#getLastModified tried to access the connection to the
  669. URL without making sure it was established, potentially leading to
  670. a NullPointerException when using FTP.
  671. Bugzilla Report 56873
  672. * Long-Name and -link or PAX-header entries in TAR archives
  673. always had the current time as last modfication time, creating
  674. archives that are different at the byte level each time an
  675. archive was built.
  676. * runant.py should now work as well when the path of the Java executable
  677. contains spaces.
  678. github pull request #1
  679. * <junitreport> now supports nested <classpath> and <factory> elements.
  680. Bugzilla Report 47002
  681. * complete-ant-cmd.pl now also knows about the -file option.
  682. Bugzilla Report 57371
  683. * the br-replace template inside the XSLT stylesheets used by
  684. <junitreport> could cause stack overflows or out-of-memory errors
  685. when applied to big outputs.
  686. Bugzilla Report 57341
  687. * removed spurious warning about unclosed ZipFiles when reading the
  688. archive failed.
  689. Port of https://issues.apache.org/jira/browse/COMPRESS-297
  690. * FileUtils.rename which is used by several tasks can throw a
  691. NullPointerException if the "normal" renameTo operation fails and
  692. an exception occurs while rename falls back to copying and deleting
  693. the file.
  694. Bugzilla Report 57533
  695. * complete-ant-cmd.pl would incorrectly suggest words from the build
  696. file description.
  697. Bugzilla Report 51931
  698. * complete-ant-cmd.pl now also completes tasks without a description.
  699. Bugzilla Report 57542
  700. * LocalPropertyStack could run into ConcurrentModificationException
  701. when tasks spawned new child threads that accessed the properties.
  702. Bugzilla Report 55074
  703. * TarEntry's constructor with a File and a String arg didn't
  704. normalize the name.
  705. * Between 1.8.4 and 1.9.0 TarInputStream started to parse file
  706. names using the platform's default encoding rather than as ASCII.
  707. This has been a breaking change that has never been marked as such
  708. (in fact it went unnoticed). In order to allow <untar> and
  709. <tarfileset> to work on platforms who's encoding doesn't match the
  710. encoding of file names inside the archive, both now support
  711. encoding attributes.
  712. The attribute has also been added to <tar> for symmetry.
  713. Bugzilla Report 57822
  714. Other changes:
  715. --------------
  716. * it is now possible to provide proxy configuration to signjar
  717. when using the timestamped authority.
  718. Bugzilla Report 56678
  719. * complete-ant-cmd.pl now also analyzes the ANT_ARGS environment
  720. variable.
  721. Bugzilla Report 57371
  722. * ported some of the write-optimization of Commons Compress 1.10 to
  723. the ZIP package
  724. * adapted unit tests to Java9 and added "javac1.9" as valid option
  725. for javac's compiler attribute.
  726. * performance improvements for <intersect>
  727. Bugzilla Report 57588
  728. * MailLogger can now add CC and BCC addresses.
  729. Bugzilla Report 57789.
  730. * <scp>'s buffer size has been increased from 1k to 100k to match
  731. <ftp> and <get>.
  732. github pull requests #8 and #9
  733. * The tar package can now deal with group and user ids bigger than
  734. 0x80000000.
  735. https://issues.apache.org/jira/browse/COMPRESS-314
  736. https://issues.apache.org/jira/browse/COMPRESS-315
  737. * <scp> has new attributes fileMode and dirMode that control the
  738. permissions on the remote side when sending data via SSH.
  739. Bugzilla Report 43271.
  740. * New <allbutlast> and <allbutfirst> resource collections can be used
  741. to select all but a given subset of a resource collection.
  742. Bugzilla Report 57834.
  743. Changes from Ant 1.9.3 TO Ant 1.9.4
  744. ===================================
  745. Changes that could break older environments:
  746. -------------------------------------------
  747. * the prefixValues attribute of <property> didn't work as expected
  748. when set to false (the default).
  749. It is quite likely existing build files relied on the wrong
  750. behavior and expect Ant to resolve the value side against the
  751. properties defined in the property file itself - these build files
  752. must now explicitly set the prefixValues attribute to true.
  753. Bugzilla Report 54769
  754. * when matching an entry of a zip/tarfileset against a pattern a
  755. leading slash will be stripped from the entry name. Most archives
  756. don't contain paths with leading slashes anyway.
  757. This may cause include/exclude patterns that start with a / to stop
  758. matching anything. Such patterns only used to work by accident and
  759. only on platforms with multiple file system roots.
  760. Bugzilla Report 53949
  761. * DirectoryScanner and thus fileset/dirset will now silently drop all
  762. filesystem objects that are neither files nor directories according
  763. to java.io.File. This prevents Ant from reading named pipes which
  764. might lead to blocking or other undefined behavior.
  765. Bugzilla Report 56149
  766. * BuildFileTest and BaseSelectorTest have both been deprecated in
  767. favour of BuildFileRule and BaseSelectorRule respectively, and the
  768. tests that previously extended these base tests have been converted to
  769. JUnit 4 tests using the new "rule"s. Any external test that sub-classed
  770. a test in the Ant workspace, rather than BuildFileTest, will need
  771. changed to either use JUnit4's annotations, or be modified to
  772. extend BuildFileTest directly. This will not affect any tests that are
  773. being executed by Ant's junit or batchtest tasks that are not specifically
  774. testing Ant's code.
  775. Fixed bugs:
  776. -----------
  777. * <import>/<include> failed when the importing file was loaded from an
  778. URI or a jar and it imported a file from the local file system via
  779. an absolute path.
  780. Bugzilla Report 50953
  781. * <import> could import the same resource twice when imported via
  782. different resource types.
  783. Bugzilla Report 55097
  784. * several calls to File#mkdirs could fall victim to a race condition
  785. where another thread already created the same directory.
  786. Bugzilla Report 55290
  787. * <manifestclasspath> created '/' rather than './' for the parent
  788. directory of the given jarfile.
  789. Bugzilla Report 55049
  790. * <concat>'s fixlastline="true" didn't work when using certain filter
  791. readers.
  792. Bugzilla Report 54672
  793. * several places where resources are read from jars will now
  794. explicitly disable caching to avoid problems with reloading jars.
  795. Bugzilla Report 54473
  796. * AntClassloader will now ignore files that are part of the classpath
  797. but not zip files when scanning for resources. It used to throw an
  798. exception.
  799. Bugzilla Report 53964
  800. * <javadoc> caused a NullPointerException when no destdir was set.
  801. Bugzilla Report 55949
  802. * <jar filesetmanifest="mergewithoutmain"> would still include the
  803. Main section of the fileset manifests if there was no nested
  804. manifest or manifest attribute.
  805. Bugzilla Report 54171
  806. * reading of compiler args has become more defensive
  807. Bugzilla Report 53754
  808. * <copy> without force="true" would not only fail to overwrite a
  809. read-only file as expected but also remove the existing file.
  810. Bugzilla Report 53095
  811. * <delete removeNotFollowedSymlinks="true"> would remove symbolic
  812. links to not-included files. It will still delete symlinks to
  813. directories that would have been followed even if they are not
  814. explicitly included. exclude-Patterns can still be used to
  815. preserve symbolic links.
  816. Bugzilla Report 53959
  817. * Sometimes copy-operations using NIO FileChannels fail. Ant will
  818. now try to use a Stream based copy operation as fallback when the
  819. Channel based copy fails.
  820. Bugzilla Reports 53102 and 54397
  821. * Javadoc.postProcessGeneratedJavadocs() fails for Classes that
  822. extend Javadoc
  823. Bugzilla Report 56047
  824. * TarInputStream will now read archives created by tar
  825. implementations that encode big numbers by not adding a trailing
  826. NUL.
  827. * the isExists() method of URLResource returned false positives for
  828. HTTP and FTP URLs.
  829. Other changes:
  830. --------------
  831. * initial support for Java 1.9
  832. * <sshexec> can optionally pass System.in to the remote process
  833. Bugzilla Report 55393
  834. * <sshexec> now supports capturing error output of the executed
  835. process and setting a property from the return code.
  836. Bugzilla Report 48478
  837. * <javadoc> now has an option to fail if javadoc issues warnings.
  838. Bugzilla Report 55015
  839. * <sql> has a new outputencoding attribute.
  840. Bugzilla Report 39541
  841. * changes to JUnitTestRunner and PlainJUnitResultFormatter to make
  842. OutOfMemoryErrors less likely.
  843. Bugzilla Report 45536
  844. * changes to DOMElementWriter to make OutOfMemoryErrors less likely.
  845. Bugzilla Report 54147
  846. * <redirector> has a new attribute binaryOutput that prevents Ant
  847. from splitting the output into lines. This prevents binary output
  848. from being corrupted but may lead to error and normal output being
  849. mixed up.
  850. Bugzilla Report 55667
  851. Bugzilla Report 56156
  852. * the nested <message> elements of <mail> now have an optional
  853. inputEncoding attribute that can be used to specify the encoding of
  854. files read that don't use the platform's default encoding.
  855. Bugzilla Report 56258
  856. * The <get> task now explicitly accepts and supports the gzip content encoding.
  857. Bugzilla Report 49453
  858. * A new resourcecollection type <multirootfileset> acts like a union
  859. of <fileset>s and <dirset>s that share the same configuration but
  860. have different base directories.
  861. Bugzilla Report 48621
  862. * <get> has a quiet attribute that makes the task log errors only
  863. when enabled.
  864. GitHub Pull Request #1
  865. * <junit> has now a threads attribute allowing to run the tests in several threads.
  866. Bugzilla Report 55925
  867. * addition of a new ProcessUtil class providing the process id of the current process
  868. * changes to allow to run the JUnit testcases of Ant in parallel,
  869. by making them use unique temporary directories
  870. Changes from Ant 1.9.2 TO Ant 1.9.3
  871. ===================================
  872. Fixed bugs:
  873. -----------
  874. * <parallel> swallowed the status code of nested <fail> tasks.
  875. Bugzilla Report 55539.
  876. * a race condition could make <fixcrlf> tasks of parallel builds to
  877. interfere with each other.
  878. Bugzilla Report 54393.
  879. * <mail>'s mailport still didn't work properly when using smtps.
  880. Bugzilla Report 49267.
  881. * using attributes belonging to the if and unless namespaces
  882. made macrodef fail.
  883. Bugzilla Report 55885.
  884. * Ant 1.8 exec task changes have slowed exec to a crawl
  885. Bugzilla Report 54128.
  886. * Apt is not available under JDK 1.8
  887. Bugzilla Report 55922.
  888. Other changes:
  889. --------------
  890. * Documentation fix for if/unless attributes. PR 55359.
  891. * tar entries with long link names are now handled the same way as
  892. entries with long names.
  893. * Addition of 'skipNonTests' attribute to <junit> and <batchtest>
  894. tasks to allow the tasks to skip classes that don't contain tests.
  895. * <filterset> now supports a nested <propertyset> to specify filters.
  896. Bugzilla Report 55794.
  897. * <xslt>'s params can now be typed.
  898. Bugzilla Report 21525.
  899. * build of Mac OS X pkg installer
  900. Bugzilla Report 55899.
  901. Changes from Ant 1.9.1 TO Ant 1.9.2
  902. ===================================
  903. Fixed bugs:
  904. -----------
  905. * Parsing of zip64 extra fields has become more lenient in order to
  906. be able to read archives created by DotNetZip and maybe other
  907. archivers as well.
  908. * TarInputStream should now properly read GNU longlink entries' names.
  909. Bugzilla Report 55040.
  910. * <java> and <exec> used to be too restrictive when evaluating
  911. whether a given set of options is compatible with spawning the new
  912. process.
  913. Bugzilla Report 55112.
  914. Other changes:
  915. --------------
  916. * <javadoc> will now post-process the generated in order to mitigate
  917. the frame injection attack possible in javadocs generated by Oracle
  918. JDKs prior to Java7 Update 25. The vulnerability is known as
  919. CVE-2013-1571.
  920. There is an option to turn off the post-processing but it is only
  921. recommended you do so if all your builds use a JDK that's not
  922. vulnerable.
  923. Bugzilla Report 55132.
  924. Changes from Ant 1.9.0 TO Ant 1.9.1
  925. ===================================
  926. Changes that could break older environments:
  927. -------------------------------------------
  928. * Users who have their own ProjectHelper implementation will need to change it because the import and include tasks
  929. will now default the targetPrefix to ProjectHelper.USE_PROJECT_NAME_AS_TARGET_PREFIX.
  930. Users using the default ProjectHelper2 with ant need not worry about this change done to fix Bugzilla Report 54940.
  931. Fixed bugs:
  932. -----------
  933. * Corrected XSLTC error in <junitreport>.
  934. Bugzilla Report 54641.
  935. * Provide more control over Zip64 extensions created by <zip> and
  936. related tasks. In particular no Zip64 extensions will be used at
  937. all by the <jar> task family by default - this is required for jars
  938. to be readably by Java5.
  939. Bugzilla Report 54762.
  940. * Fixed loading of external dependencies in JUnit task.
  941. Bugzilla Report 54835.
  942. * Target rewriting for nested "include" only works when "as" is specified.
  943. See also "Changes that could break older environments"
  944. Bugzilla Report 54940.
  945. Other changes:
  946. --------------
  947. * strict attribute added to <signjar>.
  948. Bugzilla Report 54889.
  949. * simplifying Execute.getEnvironmentVariables since we are only running on Java 1.5 or higher now
  950. * Added conditional attributes.
  951. Bugzilla Report 43362
  952. * Recommending to upgrade jsch to 0.1.50, particularly if you are using Java 1.7.
  953. jsch is the library behind the sshexec and scp Ant tasks.
  954. Versions of jsch older than 0.1.50 fail randomly under Java 1.7 with an error message "verify: false"
  955. Changes from Ant 1.8.4 TO Ant 1.9.0
  956. ===================================
  957. Changes that could break older environments:
  958. -------------------------------------------
  959. * Ant now requires at least Java 1.5 to compile and to run
  960. * FixCRLF used to treat the EOL value ASIS to convert to the system property
  961. line.separator. Specified was that ASIS would leave the EOL characters alone,
  962. the task now really leaves the EOL characters alone. This also implies that
  963. EOL ASIS will not insert a newline even if fixlast is set to true.
  964. Bugzilla report 53036
  965. * The CommandLauncher hierarchy that used to be a set of inner
  966. classes of Execute has been extracted to the
  967. org.apache.tools.ant.taskdefs.launcher package.
  968. * Any FileResource whose represented File has a parent also has a basedir.
  969. * Removing the Perforce Ant tasks replaced by tasks supplied by Perforce Inc.
  970. * Setting the default encoding of StringResource to UTF-8 instead of null
  971. * Upgrade JUnit 4 to JUnit 4.11
  972. Fixed bugs:
  973. -----------
  974. * Made VectorSet faster.
  975. Bugzilla Report 53622.
  976. * Incorrect URLs in Ant child POMs.
  977. Bugzilla Report 53617.
  978. * Subclasses of JUnitTask did not correctly find junit.jar.
  979. Bugzilla Report 53571.
  980. * External XML catalog resolver failed to use project basedir when given an
  981. unmentioned relative path like the internal resolver does.
  982. Bugzilla Report 52754.
  983. * Fixed some potential stream leaks.
  984. Bugzilla Reports 52738, 52740, 52742, 52743.
  985. * Updated documentation to fix spelling errors / broken links.
  986. Bugzilla Reports 53215, 53291, 53202
  987. * Unable to override system properties. It was not possible not to override
  988. system properties from the command line (or from a property file).
  989. Bugzilla Report 51792
  990. * <javac> by default fails when run on JDK 8.
  991. Bugzilla Report 53347.
  992. * ExtensionPoint doesn't work with nested import/include
  993. Bugzilla Report 53405.
  994. * <packagemapper> failed to strip the non-matched parts with
  995. handledirsep="true".
  996. Bugzilla Report 53399.
  997. * <expandproperties> filter caused a NullPointerException when input
  998. was empty.
  999. Bugzilla Report 53626.
  1000. * <get> now supports HTTP redirects using status code 307.
  1001. Bugzilla Report 54374.
  1002. * ssh tasks prompt for kerberos username/password under Java 7
  1003. Bugzilla Report 53437.
  1004. * Zip task on <mappedresources> that excludes certain files by way of the mapper resulted in a NullPointerException
  1005. Bugzilla Report 54026
  1006. * The ant launcher script should properly detect JAVA_HOME on
  1007. MacOS X 10.7
  1008. Bugzilla Report 52632
  1009. * Depend task does not handle invokeDynamic constant pool entries - java.lang.ClassFormatError: Invalid Constant Pool entry Type 18
  1010. Bugzilla Report 54090
  1011. * Base64Converter not properly handling bytes with MSB set (not masking byte to int conversion)
  1012. Bugzilla Report 54460
  1013. * The size resource comparator would return wrong results if file
  1014. sizes differed by more than 2 GB.
  1015. Bugzilla Report 54623
  1016. * Unable to encode properly into UTF-8 when the system property file.encoding is
  1017. set to ANSI_X3.4-1968.
  1018. Bugzilla Report 54606
  1019. * JUnit4 tests marked @Ignore do not appear in XML output
  1020. Bugzilla Report 43969
  1021. Other changes:
  1022. --------------
  1023. * merged the ZIP package from Commons Compress, it can now read
  1024. archives using Zip64 extensions (files and archives bigger that 4GB
  1025. and with more that 64k entries).
  1026. * a new task <commandlauncher> can be used to configure the
  1027. CommandLauncher used by Ant when forking external programs or new
  1028. Java VMs.
  1029. Bugzilla Report 52706.
  1030. * merged the TAR package from Commons Compress, it can now read
  1031. archives using POSIX extension headers and STAR extensions.
  1032. * merged the BZIP2 package from Commons Compress, it can now
  1033. optionally read files that contain multiple streams properly.
  1034. * <bunzip2> will now properly expand files created by pbzip2 and
  1035. similar tools that create files with multiple bzip2 streams.
  1036. * <tar> now supports a new "posix" option for longfile-mode which
  1037. will make it create PAX extension headers for long file names. PAX
  1038. extension headers are supported by all modern implementations of
  1039. tar including GNU tar.
  1040. This option should now be used in preference to "warn" or "gnu" as
  1041. it is more portable. For backwards compatibility reasons "warn"
  1042. will still create "gnu" extensions rather than "posix" extensions.
  1043. * The ProjectHelper class now exposes a method to be used by third party
  1044. implementations to properly resolve the binding between target extensions
  1045. and extension points.
  1046. Bugzilla Report 53549.
  1047. * Make extension point bindable to imported prefixed targets
  1048. Bugzilla Report 53550.
  1049. * Add the possibility to register a custom command line argument processor.
  1050. See org.apache.tools.ant.ArgumentProcessor and manual/argumentprocessor.html
  1051. * add the possibility to suppress stdout in the sshexec task.
  1052. Bugzilla Report 50270.
  1053. * add an encoding attribute to the contains selector.
  1054. This will be useful to use the contains selector if the encoding of the VM is different from the encoding
  1055. of the files being selected.
  1056. * support for GNU Classpath.
  1057. Bugzilla report 54760.
  1058. Changes from Ant 1.8.3 TO Ant 1.8.4
  1059. ===================================
  1060. Fixed bugs:
  1061. -----------
  1062. * Ported libbzip2's fallback sort algorithm to CBZip2OutputStream to
  1063. speed up compression in certain edge cases. Merge from Commons
  1064. Compress.
  1065. Using specially crafted inputs this can be used as a denial of
  1066. service attack.
  1067. See http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-2098
  1068. Changes from Ant 1.8.2 TO Ant 1.8.3
  1069. ===================================
  1070. Changes that could break older environments:
  1071. -------------------------------------------
  1072. * The Enumeration returned by AntClassLoader#getResources used to
  1073. return null in nextElement after hasNextElement would return false.
  1074. It has been changed to throw a NoSuchElementException instead so
  1075. that it now adheres to the contract of java.util.Enumeration.
  1076. Bugzilla Report 51579.
  1077. Fixed bugs:
  1078. -----------
  1079. * Removed buggy duplicate JAR list in RPM mode.
  1080. Bugzilla Report 52556.
  1081. * Launcher fixed to pass the right class loader parent.
  1082. Bugzilla Report 48633.
  1083. * <junitreport> mishandled ${line.separator}.
  1084. Bugzilla Report 51049.
  1085. * <junitreport> did not work in embedded environments on JDK 7.
  1086. Nor did <xslt> when using Xalan redirects.
  1087. Bugzilla Report 51668, 52382.
  1088. * Encoding of unicode escape sequences by the property file task
  1089. Bugzilla Report 50515.
  1090. * The code that implicitly sets the -source switch if only -target
  1091. has been specified in <javac> was broken for Java 5 and 6.
  1092. Bugzilla Report 50578.
  1093. * MailLogger ignore the Maillogger.starttls.enable property.
  1094. Bugzilla Report 50668.
  1095. * Delete task example does not work
  1096. Bugzilla Report 50816.
  1097. * <splash>'s proxy handling has been delegated to <setproxy>
  1098. internally so the two tasks are consistent. <splash>'s way of not
  1099. setting a proxy caused problems with other Java libraries.
  1100. Bugzilla Report 50888.
  1101. * Include task breaks dependencies or extension-points for multiple
  1102. files.
  1103. Bugzilla Report 50866.
  1104. * Read on System.in hangs for forked java task.
  1105. Bugzilla Report 50960.
  1106. * FileResource specified using basedir/name attributes was non-functional.
  1107. * Resource collection implementation of mapped PropertySet returned
  1108. unusable resources.
  1109. * The hasmethod condition failed with a NullPointerException when
  1110. ignoresystemclasses is true and Ant tried to load a "restricted
  1111. class" - i.e. a class that the Java VM will only accept when loaded
  1112. via the bootclassloader (a java.* class).
  1113. It will now fail with a more useful error message.
  1114. Bugzilla Report 51035.
  1115. * Exec task may mix the stderr and stdout output while logging it
  1116. Bugzilla Report 50507.
  1117. * Missing space between "finished" and timestamp in task/target
  1118. finish message from ProfileLogger.
  1119. Bugzilla Report 51109.
  1120. * Redirecting the output of a java, exec or apply task could print in the
  1121. error output stream some "Pipe broken" errors.
  1122. Bugzilla Report 48789.
  1123. * ZipFile failed to clean up some resources which could lead to
  1124. OutOfMemoryException while unzipping large archives.
  1125. A similar problem in ZipArchiveOutputStream has been fixed as well.
  1126. Bugzilla Report 42696.
  1127. * quiet attribute added to the copy and move tasks, to be used together
  1128. with failonerror=false, so warnings won't get logged
  1129. Bugzilla Report 48789.
  1130. * System.in was closed and not readable anymore by the DefaultInputHandler
  1131. when Ant is used via its Java API.
  1132. Bugzilla Report 51161
  1133. * <sync> only supported a single non-fileset resource collection even
  1134. though the manual said it could be multiple.
  1135. * <sync> didn't work properly when working on resource collections.
  1136. Bugzilla Report 51462.
  1137. * <augment> cause a NullPointerException if it was used in a target
  1138. that was invoked by multiple targets from the command line.
  1139. Bugzilla Report 50894.
  1140. * The ZipFile class could read past the start of the file if the
  1141. given file is not a ZIP archive and it is smaller than the size of
  1142. a ZIP "end of central directory record".
  1143. * <javac> would create the empty package-info.class file in the wrong
  1144. directory if no destdir was specified. Note it may still pick the
  1145. wrong directory if you specify more than one source directory but
  1146. no destDir. It is highly recommended that you always explicitly
  1147. specify the destDir attribute.
  1148. Bugzilla Report 51947.
  1149. * packagemapper now honors the handleDirSep attribute.
  1150. Bugzilla Report 51086.
  1151. * the attributes of macrodef tasks had their values run through
  1152. property expansion twice. Still true by default, but can be disabled.
  1153. Bugzilla Report 42046.
  1154. * jvc doesn't like it if source file names in argument files are
  1155. quoted.
  1156. Bugzilla Report 31667.
  1157. * ZipFile didn't work properly for archives using unicode extra
  1158. fields rather than UTF-8 filenames and the EFS-Flag.
  1159. * Access to DirectoryScanner's default excludes wasn't synchronized.
  1160. Bugzilla Report 52188.
  1161. * When a Project instance was created by a custom tasks its
  1162. createTask method didn't work.
  1163. Bugzilla Report 50788.
  1164. Other changes:
  1165. --------------
  1166. * -f/-file/-buildfile accepts a directory containing build.xml.
  1167. * The <javacc>, <jjtree> and <jjdoc> now support a new maxmemory
  1168. attribute.
  1169. Bugzilla Report 50513.
  1170. * the documented inputstring attribute of sshexec has been
  1171. implemented and the actually existing attribute inputproperty
  1172. documented.
  1173. Bugzilla Report 50576.
  1174. * The concat task now permits the name of its exposed resource
  1175. by means of its 'resourcename' attribute.
  1176. * The expandproperties filter now accepts a nested propertyset
  1177. which, if specified, provides the properties for expansion.
  1178. Bugzilla Report 51044.
  1179. * <junit filtertrace="true"/> will no longer filter out the very
  1180. first line of the stacktrace containing the original exception
  1181. message even if it matches one of the filter expressions.
  1182. * Upgraded to Apache AntUnit 1.2
  1183. * Provide read access to Mkdir.dir. Bugzilla Report 51684.
  1184. * <delete> and <move> have a new attribute performGCOnFailedDelete
  1185. that may - when set to true - help resolve some problems with
  1186. deleting empty directories on NFS shares.
  1187. Bugzilla Report 45786.
  1188. * <loadfile> and <loadresource> used to log at level INFO to signal a
  1189. property hasn't been set when the resource was empty even if the
  1190. quiet attribute was set to true. They will now use VERBOSE
  1191. instead.
  1192. Bugzilla Report 52107.
  1193. * <javac> has a new attribute createMissingPackageInfoClass that can
  1194. be set to false to prevent Ant from creating empty dummy classes
  1195. used for up-to-date-ness checks.
  1196. Bugzilla Report 52096.
  1197. * URLResources#isExists has become less noisy.
  1198. Bugzilla Report 51829.
  1199. * The <retry> task has a new optional attribute retryDelay that can
  1200. be used to make the task sleep between retry attempts.
  1201. Bugzilla Report 52076.
  1202. * <signjar> has new attributes that control the signature and digest
  1203. algorithms.
  1204. Bugzilla Report 52344.
  1205. * Initial support for Java 8.
  1206. * <sshexec> can optionally create a pseudo terminal (like ssh -t)
  1207. Bugzilla Report 52554.
  1208. Changes from Ant 1.8.1 TO Ant 1.8.2
  1209. ===================================
  1210. Changes that could break older environments:
  1211. -------------------------------------------
  1212. * Prior to Ant 1.8.0 the <copy> task and several other tasks would
  1213. overwrite read-only destination files. Starting with 1.8.0 they
  1214. would only do so under special circumstances. Ant 1.8.2 now
  1215. consistently won't replace a read-only file by default. The same is
  1216. true for a number of other tasks.
  1217. The <copy>, <move> and <echo> tasks now have a new force attribute
  1218. and <concat> has a new forceReadonly attribute that can be used to
  1219. make the task overwrite read-only destinations.
  1220. Bugzilla Report 49261.
  1221. * Removed ant-nodeps.jar; it is now merged into ant.jar.
  1222. * DOMElementWriter#encode used to employ special code before encoding
  1223. ampersands so that &#123; remained &#123; rather than being turned
  1224. into &amp;#123;. This is no longer the case, ampersands will now
  1225. be encoded unconditionally.
  1226. Also DOMElementWriter#encodeData will treat CDATA sections containing a
  1227. literal "]]>" sequence different now - it will split the CDATA
  1228. section between the second "]" and ">" and create two sections.
  1229. This affects <echoxml> task as well as the XML logger or JUnit
  1230. formatter where ampersands will now always get encoded.
  1231. In addition DOMElementWriter will now replace the characters \t, \r
  1232. and \n in attribute values by entity references.
  1233. Bugzilla Report 49404.
  1234. * The list elements returned by ProjectHelper#getExtensionStack are
  1235. now String arrays of length 3 rather than 2 in order to support the
  1236. onMissingExtensionPoint attribute.
  1237. Bugzilla Report 49473.
  1238. * When using <property file="..." prefix="..."/> properties defined
  1239. inside the same file will only get used in expansions if the ${}
  1240. reference uses the same prefix. This is different from Ant 1.8.1
  1241. but is the same behavior Ant 1.8.0 and earlier exhibited.
  1242. A new attribute prefixValues can be used to re-enable the behavior
  1243. of Ant 1.8.1.
  1244. Bugzilla Report 49373.
  1245. * The files and directories used by Git, Mercurial and Bazaar to
  1246. store their information are now excluded by the defaultexcludes.
  1247. Bugzilla Report 49624.
  1248. * The <junit> task no longer generates TestListener events - which
  1249. have been introduced in ant 1.7.0 - by default. The task has a new
  1250. attribute enableTestListenerEvents and a new "magic" property
  1251. ant.junit.enabletestlistenerevents has been added that can be used
  1252. to reinstate the old behavior.
  1253. Fixed bugs:
  1254. -----------
  1255. * hostinfo now prefers addresses with a hostname over addresses without
  1256. a hostname, provided the addresses have the same scope.
  1257. For local lookup, no IP address will be put in NAME / DOMAIN anymore.
  1258. For remote lookup, if a host name was provided and only an IP address is
  1259. found, the IP address will no longer overwrite the host name provided to the
  1260. task.
  1261. Bugzilla Report 49513
  1262. * mmap-based file copy problems under JDK 1.4 on Linux.
  1263. Bugzilla Report 49430.
  1264. * The Sun JVM tries to mmap the entire file during a copy.
  1265. For large files this is not feasible.
  1266. We now explicitly request to copy at most 16 MiB per request.
  1267. Bugzilla Report 49326.
  1268. * DemuxInputStream.read() should return unsigned values
  1269. Bugzilla Report 49279.
  1270. * The MIME mailer ignored the port parameter when using SSL.
  1271. Bugzilla Report 49267.
  1272. * <xslt> ignored the classpath when using the default TraX processor.
  1273. Bugzilla Report 49271.
  1274. * <checksum>'s totalproperty only worked reliably if the same file
  1275. name didn't occur inside more than one directory.
  1276. Bugzilla Report 36748.
  1277. * <ftp> could fail to download files from remote subdirectories under
  1278. certain circumstances.
  1279. Bugzilla Report 49296.
  1280. * <junit> will now produce better diagnostics when it fails to delete
  1281. a temporary file.
  1282. Bugzilla Report 49419.
  1283. * Ant would often scan directories even though there were known to
  1284. only hold excluded files when evaluating filesets. This never
  1285. resulted in wrong results but degraded performance of the scan
  1286. itself.
  1287. Bugzilla Report 49420.
  1288. * <javac> failed for long command lines on OS/2.
  1289. Bugzilla Report 49425.
  1290. * <junitreport> did not handle encodings well for stdout/stderr.
  1291. Bugzilla Report 49418.
  1292. * <junit> could issue a warning about multiple versions of Ant on the
  1293. CLASSPATH if two CLASSPATH entries differed in case on a
  1294. case-insensitive file system.
  1295. Bugzilla Report 49041.
  1296. * The <restrict> resource collection was checking every resource even if
  1297. we actually just want the first one, like in the example of use of
  1298. resourcelist in the documentation (getting the first available resource
  1299. from a mirror list).
  1300. * A race condition could lead to build failures if multiple <mkdir>
  1301. tasks were trying to create the same directory.
  1302. Bugzilla Report 49572.
  1303. * the toString() method of the Resources class - and thus any
  1304. ${toString:} expansion of a reference to a <resources> element -
  1305. didn't iterate over its nested elements if it hadn't done so prior
  1306. to the toString invocation already.
  1307. Bugzilla Report 49588.
  1308. * <apply> in parallel mode didn't work together with a nested
  1309. <redirector> if maxparallel was <= 0 (the default) or no source
  1310. files matched.
  1311. Bugzilla Report 49594.
  1312. * <jar filesetmanifest="merge"> didn't work for manifests added via
  1313. <zipfileset>s that used the prefix or fullpath attributes.
  1314. Bugzilla Report 49605.
  1315. * <tempfile createfile="true"> would cause an error unless the prefix
  1316. attribute has been specified.
  1317. Bugzilla Report 49755.
  1318. * If forked, after finished <java> was still reading the input stream
  1319. for a bunch of characters, then stealing them from a following <input>.
  1320. Bugzilla Report 49119.
  1321. * Ant could be leaking threads for each forked process (started by
  1322. <exec>, <apply>, <java> or similar tasks) that didn't receive input
  1323. from a resource or string explicitly.
  1324. Bugzilla Report 49587.
  1325. * Project#setDefault threw an exception when null was passed in as
  1326. argument, even though the Javadoc says null is a valid value.
  1327. Bugzilla Report 49803.
  1328. * runant.py would swallow the first argument if CLASSPATH wasn't set.
  1329. Bugzilla Report 49963.
  1330. * <taskdef> failed to load resources from jar files contained in a
  1331. directory that has a "!" in its name.
  1332. Bugzilla Report 50007.
  1333. * ant.bat exit strategy improvements and issues
  1334. make the exit codes work in environments where 4NT or MKS are installed
  1335. Bugzilla Report 41039.
  1336. * <signjar> would fail if used via its Java API and the File passed
  1337. into the setJar method was not "normalized" (i.e. contained ".."
  1338. segments).
  1339. Bugzilla Report 50081.
  1340. * <delete> ignored <fileset>'s errorOnMissingDir attribute
  1341. Bugzilla Report 50124.
  1342. * <symlink> failed to close files when reading a list of symbolic
  1343. links from a properties file.
  1344. Bugzilla Report 50136.
  1345. * <parallel> could allow tasks to start executing even if a task
  1346. scheduled to run before them timed out.
  1347. Bugzilla Report 49527.
  1348. * If a <junit> batch with multiple tests times out Ant logs a message
  1349. about a test named Batch-With-Multiple-Tests since 1.8.0 but the
  1350. logic that determined the Java package of this pseudo-test has been
  1351. wrong.
  1352. Bugzilla Report 45227.
  1353. * <propertyfile> didn't preserve the original linefeed style when
  1354. updating a file.
  1355. Bugzilla Report 50049.
  1356. * <zip>'s whenEmpty behavior never consulted the non-fileset
  1357. resources so the task could fail even though resources have been
  1358. provided using non-fileset resource collections.
  1359. Bugzilla Issue 50115.
  1360. * ftp chmod could throw a NPE.
  1361. Bugzilla report 50217.
  1362. * The project help (-p option in the command line) will now print
  1363. the dependencies of the targets in debug mode (-d on the command
  1364. line)
  1365. Other changes:
  1366. --------------
  1367. * <concat>'s force attribute has been deprecated in favor of a new
  1368. overwrite attribute that is consistent with <copy>'s attribute
  1369. names.
  1370. * You can now specify a list of methods to run in a JUnit test case.
  1371. Bugzilla Report 34748.
  1372. * properties in files read because of the -propertyfile command line
  1373. option will now get resolved against other properties that are
  1374. defined before the project starts executing (those from the same or
  1375. earlier -propertfiles or defined via the -D option).
  1376. Bugzilla Report 18732.
  1377. * <pathelement>s can now contain wildcards in order to use wildcard
  1378. CLASSPATH entries introduced with Java6.
  1379. The wildcards are not expanded or even evaluated by Ant and will be
  1380. used literally. The resulting path may be unusable as a CLASSPATH
  1381. for Java versions prior to Java6 and likely doesn't mean anything
  1382. when used in any other way than a CLASSPATH for a forked Java VM.
  1383. Bugzilla Report 46842.
  1384. * A new attribute allows targets to deal with nonexistent extension
  1385. points, i.e. they can extend an extension-point if it has been
  1386. defined or silently work as plain targets if it hasn't. This is
  1387. useful for targets that get included/imported in different
  1388. scenarios where a given extension-point may or may not exist.
  1389. Bugzilla Report 49473.
  1390. * Ant now logs a warning message if it fails to change the file
  1391. modification time in for example when using <touch> or preserving
  1392. timestamps in various tasks.
  1393. Bugzilla Report 49485.
  1394. * ProjectHelpers can now be installed dynamically via the <projecthelper>
  1395. Ant task.
  1396. * <import> is now able to switch to the proper ProjectHelper to parse
  1397. the imported resource. This means that several kinds of different build
  1398. files can import each other.
  1399. * <copy tofile=""> now also works for non-filesystem resources.
  1400. Bugzilla Report 49756.
  1401. * The <linecontainsregexp> filter now supports a casesensitive
  1402. attribute.
  1403. * The <containsregexp> selector now supports casesensitive, multiline
  1404. and singleline attributes.
  1405. Bugzilla Report 49764.
  1406. * A new <cutdirsmapper> can be used like wget's --cut-dirs option to
  1407. strip leading directories from file names.
  1408. * <javah> now supports the GNU project's gcjh compiler.
  1409. Bugzilla Report 50149.
  1410. * <checksum> supports additional views of a file's path as elements
  1411. for a custom pattern.
  1412. Bugzilla Report 50114.
  1413. * JUnit XMLResultAggregator logs the stack trace of caught IO exceptions
  1414. in verbose runs.
  1415. Bugzilla Report 48836.
  1416. * StringUtils.parseHumanSizes() should turn parse failures into
  1417. BuildExceptions.
  1418. Bugzilla Report 48835.
  1419. * New task <bindtargets> to make a list of targets bound to some
  1420. specified extension point.
  1421. * Initial support for OpenJDK7 has been added.
  1422. * Ant now uses java.net.CookieStore rather than
  1423. java.util.ServiceLocator to detect whether the environment is a
  1424. Java 1.6 system. This means releases of gcj/gij at the time of
  1425. this release of Ant are detected as Java 1.5 and not 1.6.
  1426. Bugzilla Report 50256.
  1427. * It is now possible to write a compiler adapter for <javac> that
  1428. compiles sources with extensions other than .java (but that still
  1429. compile to .class files).
  1430. Bugzilla Report 48829.
  1431. * The performance of VectorSet#add(Object) has been improved which
  1432. should also benefit any operation that scans directories in Ant.
  1433. Bugzilla Report 50200.
  1434. Changes from Ant 1.8.0 TO Ant 1.8.1
  1435. ===================================
  1436. Changes that could break older environments:
  1437. -------------------------------------------
  1438. * ant-trax.jar is no longer produced since TrAX is included in JDK 1.4+.
  1439. * Ant no longer ships with Apache Xerces-J or the XML APIs but relies
  1440. on the Java runtime to provide a parser and matching API versions.
  1441. * The stylebook ant task and the ant-stylebook.jar are removed.
  1442. Fixed bugs:
  1443. -----------
  1444. * Tasks that iterate over task or type definitions, references or
  1445. targets now iterate over copies instead of the live maps to avoid
  1446. ConcurrentModificationExceptions if another thread changes the
  1447. maps.
  1448. Bugzilla Report 48310.
  1449. * The filesmatch condition threw a NullPointerException when
  1450. comparing text files and the second file contained fewer lines than
  1451. the first one.
  1452. Bugzilla Report 48715.
  1453. * Regression: The <ear> task would allow multiple
  1454. META-INF/application.xml files to be added.
  1455. Bugzilla Report 6836.
  1456. * VectorSet#remove(Object) would fail if the size of the vector
  1457. equaled its capacity.
  1458. * Regression : ant -diagnostics was returning with exit code 1
  1459. Bugzilla Report 48782
  1460. * Fix for exec task sometimes inserts extraneous newlines
  1461. Bugzilla Report 48746
  1462. * SymlinkTest#testSymbolicLinkUtilsMethods failing on MacOS
  1463. Bugzilla Report 48785.
  1464. * If <concat>'s first resourcecollection child is a <resources>,
  1465. any subsequently added child resourcecollection joins the first.
  1466. Bugzilla Report 48816.
  1467. * <get> with an invalid URL could trigger an NPE in some JVMs.
  1468. Bugzilla Report 48833
  1469. * Broken Pipe issue under Ubuntu Linux
  1470. Bugzilla Report 48789
  1471. * Properties wrongly read from file or not update during read
  1472. Bugzilla Report 48768
  1473. * AntClassLoader in Ant 1.8.0 has been considerably slower than in
  1474. 1.7.1
  1475. Bugzilla Report 48853
  1476. * ANT_CMD_LINE_ARGS are rippling through lower level Ant usage
  1477. Bugzilla Report 48876
  1478. * email : IO error sending mail with plain mimetype
  1479. Bugzilla Report 48932
  1480. * the complete-ant-cmd.pl script failed to create a proper cache of
  1481. target if "ant -p" failed.
  1482. Bugzilla Report 48980
  1483. * <rmic>'s sourcebase attribute was broken.
  1484. Bugzilla Report 48970
  1485. * <copy>'s failonerror didn't work as expected when copying a single
  1486. element resource collection to a file.
  1487. Bugzilla Report 49070
  1488. * <get> no longer followed redirects if the redirect URL was relative
  1489. and not an absolute URL.
  1490. Bugzilla Report 48972
  1491. * fixed a performance degradation in the code that expands property
  1492. references.
  1493. Bugzilla Reports 48961 and 49079
  1494. * <jar filesetmanifest="merge"> was broken on Windows.
  1495. Bugzilla Report 49090
  1496. * <symlink> delete failed if the link attribute was a relative path
  1497. to a link inside the current directory without a leading ".".
  1498. Bugzilla Report 49137
  1499. * <telnet> and <rexec> failed to find the expected strings when
  1500. waiting for responses and thus always failed.
  1501. Bugzilla Report 49173
  1502. Other changes:
  1503. --------------
  1504. * Project provides new get methods that return copies instead of the
  1505. live maps of task and type definitions, references and targets.
  1506. * Ant is now more lenient with ZIP extra fields and will be able to
  1507. read archives that it failed to read in earlier versions.
  1508. Bugzilla Report 48781.
  1509. * The <zip> family of tasks has been sped up for bigger archives.
  1510. Bugzilla Report 48755.
  1511. * Add removeKeepExtension option to NetRexxC task.
  1512. Bugzilla Report 48788.
  1513. * Add prefix attribute to loadproperties task.
  1514. * Add resource attribute to length task.
  1515. * PropertyResource will effectively proxy another Resource if ${name}
  1516. evaluates to a Resource object.
  1517. * Added forcestring attribute to equals condition to force evaluation
  1518. of Object args as strings; previously only API-level usage of the
  1519. equals condition allowed Object args, but Ant 1.8.x+ property
  1520. evaluation may yield values of any type.
  1521. * BuildFileTest.assertPropertyUnset() fails with a slightly more
  1522. meaningful error message
  1523. Bugzilla Report 48834
  1524. * <junit> will now throw an exception if a test name is empty. This
  1525. used to manifest itself in unrelated errors like
  1526. Bugzilla Report 43586.
  1527. * A change that made <exec> more reliable on Windows (Bugzilla Report
  1528. 5003) strongly impacts the performance for commands that execute
  1529. quickly, like attrib. Basically no single execution of a command
  1530. could take less than a second on Windows.
  1531. A few timeouts have been tweaked to allow these commands to finish
  1532. more quickly but still they will take longer than they did with Ant
  1533. 1.7.1.
  1534. Bugzilla Report 48734.
  1535. * Added SimpleBigProjectLogger, intermediate between NoBannerLogger and
  1536. BigProjectLogger.
  1537. * <mappedresources> supports new attributes enablemultiplemappings
  1538. and cache.
  1539. * Added the augment task to manipulate existing references via Ant's basic
  1540. introspection mechanisms.
  1541. Changes from Ant 1.8.0RC1 TO Ant 1.8.0
  1542. ======================================
  1543. Changes that could break older environments:
  1544. -------------------------------------------
  1545. * the appendtolines filter has been renamed to suffixlines.
  1546. Fixed bugs:
  1547. -----------
  1548. * stack traces were not reported at all by <junit/>
  1549. when filtertrace="on", which is the default.
  1550. * ant.bat can now also process the -noclasspath switch when it is
  1551. the first switch on a command line.
  1552. Bugzilla Report 48186.
  1553. * <fixcrlf> now tries to delete the created temporary files earlier.
  1554. Bugzilla Report 48506.
  1555. * the implementation of <zip> had been changed in a way that broke
  1556. the jarjar links task and protentially other third-party subclasses
  1557. as well.
  1558. Bugzilla Report 48541.
  1559. * <scp> task didn't report build file location when a remote operation failed
  1560. Bugzilla Report 48578.
  1561. * <propertyfile> would add the same comment and a date line each time
  1562. it updated an existing property file.
  1563. Bugzilla Report 48558.
  1564. * <sound> didn't work properly in recent Java VMs.
  1565. Bugzilla Report 48637.
  1566. Other changes:
  1567. --------------
  1568. Changes from Ant 1.7.1 TO Ant 1.8.0RC1
  1569. ======================================
  1570. Changes that could break older environments:
  1571. -------------------------------------------
  1572. * if and unless attributes (on <target> as well as various tasks and other
  1573. elements) have long permitted ${property} interpolation. Now, if the result
  1574. evaluates to "true" or "false" (or "yes", "no", "on", "off"), that boolean
  1575. value will be used; otherwise the traditional behavior of treating the value
  1576. as a property name (defined ~ true, undefined ~ false) is used. Existing
  1577. scripts could be broken if they perversely defined a property named "false"
  1578. and expected if="false" to be true, or used if="true" expecting this to be
  1579. triggered only if a property named "true" were defined.
  1580. * Ant now requires Java 1.4 or later.
  1581. * Improved handling of InterruptException (lets suppose someone/thing
  1582. is trying to kill the thread when we receive an
  1583. InterruptException), when an InterruptException is received, we do
  1584. not wait anymore in a while loop till the end time has been
  1585. reached.
  1586. Bugzilla Report 42924.
  1587. * Refactor PropertyHelper and introspection APIs to make extension
  1588. more granular and support setting task/type attribute values to
  1589. objects decoded by custom PropertyEvaluator delegates. Also add
  1590. <propertyhelper> task for registering delegates and/or replacing
  1591. the registered PropertyHelper instance.
  1592. Bugzilla Report 42736.
  1593. * Added a restricted form of typedef called <componentdef>. This
  1594. allows definition of elements that can only be within tasks or
  1595. types. This method is now used to define conditions, selectors,
  1596. comparators and filterreaders. This means that tasks may now have
  1597. nested conditions just by implementing the Condition interface,
  1598. rather than extending ConditionBase. It also means that the use of
  1599. namespaces for some of the selectors introduced in Ant 1.7.0 is no
  1600. longer necessary. Implementing this means that the DynamicElement
  1601. work-around introduced in Ant 1.7.0 has been removed.
  1602. Bugzilla Report 40511.
  1603. * In the <touch> task when a <mapper> is used, the millis and
  1604. datetime attributes now override the time of the source resource if
  1605. provisioned.
  1606. Bugzilla Report 43235.
  1607. * Remove fall-back mechanism for references that are not resolved
  1608. during normal runtime execution.
  1609. * FileUtils.createTempFile now actually creates the file.
  1610. The TempFile task still does not create the file by default, can be
  1611. instructed to do so however using a new parameter.
  1612. Bugzilla Report 33969.
  1613. * A lock in Project ensured that a BuildListener's messageLogged
  1614. method was only ever executed by a single thread at a time, while
  1615. all other methods could be invoked by multiple threads
  1616. simultaniously (while within <parallel>, for example). This lock
  1617. is no longer in place, messageLogged should be made thread-safe
  1618. now.
  1619. * <sql>'s onError="stop" no longer fails the build if an error
  1620. occurs, this is the main difference between stop and error and
  1621. matches what the documentation implied.
  1622. Bugzilla Report 24668.
  1623. * Ant's configuration introspection mechanisms have been modified to prefer
  1624. Resource and FileProvider attributes to plain java.io.File attributes;
  1625. however the configuration-from-String behavior remains equivalent, rendering
  1626. a FileResource.
  1627. * CBZip2InputStream will now throw an IOException if
  1628. passed in a null or empty InputStream to read from.
  1629. Bugzilla Reports 32200.
  1630. * <unzip> will now fail when trying to extract certain broken
  1631. archives that would have been silently ignored in earlier version.
  1632. Bugzilla Report 35000.
  1633. * Ant's <zip> family of tasks tries to preserve the existing Unix
  1634. permissions when updating archives or copying entries from one
  1635. archive to another.
  1636. Since not all archiving tools support storing Unix permissions in
  1637. the same way that is used by Ant, sometimes the permissions read by
  1638. Ant seem to be 0, which means nobody is allowed to do anything to
  1639. the file or directory.
  1640. If Ant now encounters a permission set of 0 it will assume that
  1641. this is not the intended value and instead apply its own default
  1642. values. Ant used to create entries with 0 permissions itself.
  1643. The <zip> family of tasks has a new attribute preserve0permissions
  1644. that can be set to restore the old behavior.
  1645. Bugzilla Report 42122.
  1646. * If a batch containing multiple JUnit tests running inside a forked
  1647. Java VM caused the VM to crash (or caused a timeout), the
  1648. formatters would receive an error message for the last test in the
  1649. batch.
  1650. Ant will now pass in a test with the name "Batch-With-Multiple-Tests"
  1651. instead - this is supposed to show more clearly that the last test
  1652. may not have started at all.
  1653. Bugzilla Report 45227.
  1654. * If the number of minutes a build takes is bigger then 1000 Ant will
  1655. no longer print a thousands separator in the "elapsed time"
  1656. message. It used to be the thousands separator of the current
  1657. locale.
  1658. Bugzilla Report 44659.
  1659. * <symlink action="delete"> used to fail if the link was broken (i.e.
  1660. pointing to a file or directory that no longer existed). It will now
  1661. silently try to remove the link.
  1662. Bugzilla Report 41285.
  1663. * <delete file="..."> used to log a warning and not delete broken
  1664. symbolic links. <delete dir="..."/> didn't even log a warning.
  1665. The task will now try to delete them in both cases.
  1666. Bugzilla Report 41285.
  1667. * if the dir attribute of a <fileset> points to a symbolic link and
  1668. followsymlinks is set to false, the fileset will no longer be
  1669. scanned and always seem empty.
  1670. Bugzilla Report 45741.
  1671. * the .NET tasks that have been deprecated since Ant 1.7.0 have been
  1672. removed, please use the stand-alone Antlib you can find at
  1673. http://ant.apache.org/antlibs/dotnet/index.html
  1674. instead.
  1675. * the logic of closing streams connected to forked processes (read
  1676. the input and output of <exec> and friends) has been changed to
  1677. deal with cases where child processes of the forked processes live
  1678. longer than their parents and keep Ant from exiting.
  1679. It is unlikely but possible that the changed logic breaks stream
  1680. handling on certain Java VMs.
  1681. Bugzilla issue 5003.
  1682. * <checksum>'s totalproperty was platform dependent because it relied
  1683. on java.io.File#compareTo. It has now been made platform
  1684. independent, which means that totalPropery values obtained on
  1685. Windows (and other systems where the sort order of File is not case
  1686. sensitive) can be different from the values obtained with earlier
  1687. versions of Ant.
  1688. Bugzilla Report 36748.
  1689. * globmapper didn't work properly if the "to" or "from" patterns
  1690. didn't contain a "*". In particular it implicitly added a * to the
  1691. end of the pattern(s). This is no longer the case. If you relied
  1692. on this behavior you will now need to explicitly specify the
  1693. trailing "*".
  1694. Bugzilla Report 46506.
  1695. * <copy> silently ignored missing resources even with
  1696. failOnError="true". If your build tries to copy non-existent
  1697. resources and you relied on this behavior you must now explicitly
  1698. set failOnError to false.
  1699. Bugzilla Report 47362.
  1700. * Ant now prefers the java.runtime.version system property over
  1701. java.vm.version for the Created-By Manifest attribute.
  1702. Bugzilla Report 47632.
  1703. * The <image> task now supports a nested mapper. In order to
  1704. implement this, the Java API of the task had to change so any
  1705. custom subclass overriding the processFile method will need to
  1706. adapt (by overriding the new two-arg processFile method).
  1707. Bugzilla Report 23243.
  1708. * A new property syntax can be used to set attributes from
  1709. references: ${ant.ref:some-reference}
  1710. In most cases this will yield the exact same result as
  1711. ${toString:some-reference} - only when an attribute setter method
  1712. accepts an object type other than string and the project's
  1713. reference is an Object of matching type the new syntax will pass in
  1714. that object.
  1715. If your build file already contains properties whose name starts
  1716. with "ant.ref:" there is a potential for collision. If your
  1717. property has been set, normal property expansion will take
  1718. precedence over the new syntax. If the property has not been set
  1719. and a reference with the postfix of your property name exists
  1720. (i.e. in a very unlikely event) then the new syntax would yield a
  1721. different result (an expanded property) than Ant 1.7.1 did.
  1722. * A ProjectHelper implementation can now provide the default build file
  1723. name it is expecting, and can specify if they can support a specific build
  1724. file. So Ant is now capable of supporting several ProjectHelper
  1725. implementations, deciding on which to use depending of the input build file.
  1726. * Mapper-aware selectors (depends, different, present) now accept typedef'd
  1727. FileNameMappers.
  1728. Fixed bugs:
  1729. -----------
  1730. * The default logger was failing to print complete stack traces for
  1731. exceptions other than BuildException when inside <ant> or
  1732. <antcall>, thus omitting often important diagnostic
  1733. information.
  1734. Bugzilla 43398 (continued).
  1735. * Better handling of package-info.class.
  1736. Bugzilla Report 43114.
  1737. * RPM task needed an inserted space between the define and the value.
  1738. Bugzilla Report 46659.
  1739. * Got rid of deadlock between in, out and err in the Redirector.
  1740. Bugzilla Report 44544.
  1741. * Caused by AssertionError no longer filtered.
  1742. Bugzilla Report 45631.
  1743. * <zip> would sometimes recreate JARs unnecessarily.
  1744. Bugzilla Report 45902.
  1745. * <symlink> task couldn't overwrite existing symlinks that pointed to
  1746. nonexistent files
  1747. Bugzilla Report 38199.
  1748. * <symlink> task couldn't overwrite files that were in the way of the symlink.
  1749. Bugzilla Report 43426.
  1750. * <symlink> task failonerror="false" does not stop build from failing
  1751. when 'ln' command returns non-zero.
  1752. Bugzilla Report 43624
  1753. * <touch> task couldn't differentiate between "no resources
  1754. specified" and "no resources matched."
  1755. Bugzilla Report 43799.
  1756. * ManifestClassPath failed when a relative path would traverse the
  1757. file system root.
  1758. Bugzilla Report 44499.
  1759. * <globmapper> had an indexoutofbounds when the prefix and postfix
  1760. overlapped.
  1761. Bugzilla Report 44731.
  1762. * <typedef> and <taskdef> failed to accept file names with #
  1763. characters in them.
  1764. Bugzilla Report 45190
  1765. * A deadlock could occur if a BuildListener tried to access an Ant property
  1766. within messageLogged while a different thread also accessed one.
  1767. Bugzilla Report 45194
  1768. * Handle null result of system getProperty() in CommandlineJava.
  1769. Similar to Bugzilla Report 42334.
  1770. * Length task did not process nonexistent Resources even though these might
  1771. conceivably still carry file length information.
  1772. Bugzilla Report 45271.
  1773. * <javac>'s includeJavaRuntime="false" should work for gcj now. Note
  1774. that you may need to set includeAntRuntime to false in order to
  1775. have full control.
  1776. Bugzilla Report 34638.
  1777. * <sql> would fail if the executed statement didn't return a result
  1778. set with some JDBC driver that dissalow Statement.getResultSet to
  1779. be called in such a situation.
  1780. Bugzilla Report 36265
  1781. * if the executed statement in <sql> returned a result set and an
  1782. update count, the count would be lost.
  1783. * if an executed statement in <sql> mixes update count and result set
  1784. parts, some result sets wouldn't get printed.
  1785. Bugzilla Report 32168.
  1786. * XmlLogger could lose messages if <parallel> is used.
  1787. Bugzilla Report 25734.
  1788. * <scp> creates remoteToDir if it doesn't exist.
  1789. Bugzilla Report 42781
  1790. * CBZip2OutputStream threw an exception if it was closed prior to
  1791. writing anything.
  1792. Bugzilla Reports 32200, 45836
  1793. * The IPlanetDeploymentTool didn't use the configured DTD locations.
  1794. Bugzilla Report 31876.
  1795. * The ant shell script printed a warning under Cygwin if JAVA_HOME
  1796. was not set.
  1797. Bugzilla Report 45245.
  1798. * <filterset> sometimes incorrectly flagged infinite recursions of
  1799. filter tokens
  1800. Bugzilla Report 44226.
  1801. * failures were treated as errors in forked JUnit tests when JUnit 4
  1802. was used.
  1803. Bugzilla Report 43892.
  1804. * <jar> and <manifest> disallowed manifest attributes whose name
  1805. contained the character '8'.
  1806. Bugzilla Report 45675.
  1807. * BigProjectLogger would set the project's basedir to the current
  1808. working directory.
  1809. Bugzilla Report 45607.
  1810. * only <formatter>s that logged to a file were notified if forked VM
  1811. crashed or a timeout occurred in <junit>.
  1812. Bugzilla Report 37312.
  1813. * ant -v -version would print the version information twice.
  1814. Bugzilla Report 45695.
  1815. * when nested into builds that have been invoked by <ant> tasks
  1816. <subant> might set the wrong basedir on the called projects.
  1817. Bugzilla Report 30569.
  1818. * If the message of the failed assertion of a forked JUnit test
  1819. contained line feeds some excess output ended up in Ant's log.
  1820. Bugzilla Report 45411.
  1821. * <symlink action="delete"> failed to delete a link that pointed to
  1822. a parent directory.
  1823. Bugzilla Report 45743.
  1824. * <symlink action="delete"> failed if ant lacked permission to rename
  1825. the link's target.
  1826. Bugzilla Report 41525.
  1827. * when checking whether a jar is signed, <signjar> ignored the
  1828. sigfile attribute.
  1829. Bugzilla Report 44805.
  1830. * When using JavaMail all <mail> tasks used the same mail host
  1831. regardless of their configuration.
  1832. Bugzilla Report 37970.
  1833. * <signjar> and <issigned> didn't handle aliases with characters other
  1834. than numbers, letters, hyphen or underscore properly.
  1835. Bugzilla Report 45820.
  1836. * <filterset> could miss multi-character begin tokens in some cases.
  1837. Bugzilla Report 45094.
  1838. * <depend> didn't close JARs that were part of the classpath.
  1839. Bugzilla Report 45955.
  1840. * in some cases <depend> would delete class files even if it didn't
  1841. find the corresponding source files.
  1842. Bugzilla Report 45916.
  1843. * <javadoc> failed if the nested <bottom> or <head> contained line
  1844. breaks.
  1845. Bugzilla Report 43342.
  1846. * encoding="auto" has been broken in <mail> since Ant 1.7.0 and only
  1847. worked if JavaMail was available.
  1848. Bugzilla Report 42389.
  1849. * MailLogger could cause a NullPointerException.
  1850. Bugzilla Report 44009.
  1851. * <junit> didn't recognize failed assertions as failures if they
  1852. caused subclasses of AssertionError to be thrown (like
  1853. org.junit.ComparisonFailure that is thrown when assertEquals
  1854. fails).
  1855. Bugzilla Report 45028.
  1856. * the Unix "ant" wrapper script failed to protect wildcards in
  1857. command line arguments in some cases.
  1858. Bugzilla Report 31601.
  1859. * <cvstagdiff> crippled file names and could miss some entries if
  1860. multiple modules have been specified.
  1861. Bugzilla Report 35301.
  1862. * Tasks with a "public void add(SomeType)" method failed to work as
  1863. TaskContainers at the same time.
  1864. Bugzilla Report 41647.
  1865. * Tasks that implementes DynamicElemen or DynamicElementNS failed to
  1866. work as TaskContainers at the same time.
  1867. Bugzilla Report 41647.
  1868. * combining SSL and authentication in <mail> and MailLogger failed in
  1869. some setups.
  1870. Bugzilla Report 46063.
  1871. * if an error occurs while logging the buildFinished event, the
  1872. original error is now logged to System.err.
  1873. Bugzilla Report 25086.
  1874. * <copy> failed with a NullPointerException when copying a resource
  1875. without a name. It will now fail with a meaningful error message.
  1876. Bugzilla Report 39960.
  1877. * <xslt> now uses the configured classpath to load the factory (when
  1878. using TraX) before falling back to Ant's own classpath.
  1879. Bugzilla Report 46172.
  1880. * <dependset> complained about files being modified in the future if
  1881. they had been just very recently (within Ant's assumed granularity
  1882. of the file system).
  1883. Bugzilla Report 43665.
  1884. * <sshexec> didn't store the output in outputproperty if the remote
  1885. command failed.
  1886. Bugzilla Report 46340.
  1887. * DirectoryScanner's slow-scanning algorithm that is used when you
  1888. ask for excluded or not-included files and/or directories could
  1889. miss some files and directories in the presence of recursive
  1890. exclude patterns.
  1891. * <sort> resource collection kept only one of entries deemed equal by
  1892. the chosen Comparator.
  1893. Bugzilla Report 46527.
  1894. * the ZipFile class used by <unzip> and others could leave the
  1895. archive open (making it undeletable on Windows as long as the java
  1896. VM was running) for files with an unexpected internal structure.
  1897. Bugzilla Report 46559.
  1898. * The zip package now supports the extra fields invented by InfoZIP
  1899. in order to store Unicode file names and comments.
  1900. * The zip package detects the encoding bit set by more modern
  1901. archivers when they write UTF-8 filenames and optionally sets it
  1902. when writing zips or jars.
  1903. Bugzilla Report 45548
  1904. * <sync> could run into a NullPointerException when faced with broken
  1905. symbolic links.
  1906. Bugzilla Report 46747.
  1907. * The ant shell script should now support MSYS/MinGW as well.
  1908. Bugzilla Report 46936.
  1909. * <signjar> has a new force attribute that allows re-signing of jars
  1910. that are already signed.
  1911. Bugzilla Report 46891.
  1912. * <sshexec> now again honors failonerror in the face of connection
  1913. errors.
  1914. Bugzilla Report 46829.
  1915. * The <replacetokens> filter threw an exception if the stream to
  1916. filter ended with a begin token.
  1917. Bugzilla Report 47306.
  1918. * <scriptmapper>, <scriptfilter> and <scriptcondition> didn't support
  1919. the setbeans attribute.
  1920. Bugzilla Report 47336.
  1921. * <loadproperties>' encoding attribute didn't work.
  1922. Bugzilla Report 47382.
  1923. * Ant created tar archives could contain random bytes at the end
  1924. which confused some untar implementations.
  1925. Bugzilla Report 47421.
  1926. * various places where unchecked PrintWriters could hide exceptions
  1927. have been revisited to now check the error status or not use a
  1928. PrintWriter at all.
  1929. Bugzilla Report 43537.
  1930. * filesetmanifest="mergewithoutmain" in <jar> didn't treat inline
  1931. manifests as expected.
  1932. Bugzilla Report 29731.
  1933. * <record> didn't work properly with nested builds.
  1934. Bugzilla Report 41368.
  1935. * <jar> with filesetmanifest different from skip didn't work if the
  1936. update attribute has been set to true.
  1937. Bugzilla Report 30751.
  1938. * The default stylesheets for <junitreport> failed to properly escape
  1939. XML content in exception stack traces.
  1940. Bugzilla Report 39492.
  1941. * AntClassLoader didn't set the proper CodeSource for loaded classes.
  1942. Bugzilla Report 20174.
  1943. * AntClassLoader.getResourceAsStream would return streams to
  1944. resources it didn't return with getResource and to classes it
  1945. failed to load.
  1946. Bugzilla Report 44103.
  1947. * Logging exceptions without a message would cause a
  1948. NullPointerException.
  1949. Bugzilla Report 47623.
  1950. * WeblogicDeploymentTool could fail on platforms with a file
  1951. separator other than "/".
  1952. Bugzilla Report 35649.
  1953. * The update attribute of the modified selector was ignored.
  1954. Bugzilla Report 32597.
  1955. * <manifest> and <jar> can now merge Class-Path attributes from
  1956. multiple sources and optionally flatten them into a single
  1957. attribute.
  1958. The default behaviour still is to keep multiple Class-Path
  1959. attributes if they have been specified and to only include the
  1960. attributes of the last merged manifest.
  1961. Bugzilla Report 39655.
  1962. * <delete> didn't work correctly with a <modified> selector because
  1963. it was scanning the same filesets more than once.
  1964. Bugzilla Report 43574.
  1965. * when using custom filterreaders with the <filterreader classname="">
  1966. syntax Ant could leak memory.
  1967. The problem didn't occur when using <typedef> or <componentdef> to
  1968. define the filterreader which is the recommended approach.
  1969. Bugzilla Report 45439.
  1970. * Ant didn't set the proper "magic" value for tar entries containing
  1971. long file names in GNU longfile mode.
  1972. Bugzilla Report 47653.
  1973. * The tar task failed to recognize that the archive had to be
  1974. (re-)created in some cases where the sources are filesystem based
  1975. resources but not filesets.
  1976. Bugzilla Report 48035.
  1977. * <sshexec>'s outputproperty was prefixed by the executed command
  1978. when the command attribute has been used, breaking backwards
  1979. compatibility to Ant 1.7.0.
  1980. Bugzilla Report 48040.
  1981. * different task instances of the same <scriptdef>ed tasks could
  1982. overwrite each others attributes/nested elements.
  1983. Bugzilla Report 41602.
  1984. * The Hashvalue algortihm implementation of the modified task could
  1985. fail to read the file(s) completely.
  1986. Bugzilla Report 48313.
  1987. Other changes:
  1988. --------------
  1989. * The get task now also follows redirects from http to https
  1990. Bugzilla Report 47433
  1991. * A HostInfo task was added performing information on hosts, including info on
  1992. the host ant is running on.
  1993. Bugzilla Reports 45861 and 31164.
  1994. * There is now a FileProvider interface for resources that act as a source
  1995. of filenames. This should be used by tasks that require resources
  1996. to provide filenames, rather than require that all resources
  1997. are instances or subclasses of FileResource.
  1998. Bugzilla Report 43348
  1999. * There is now a URLProvider interface for resources that act as a
  2000. source of URLs. This should be used by tasks that require resources
  2001. to provide URLs, rather than require that all resources are
  2002. instances or subclasses of URLResource.
  2003. * Fixcrlf now gives better error messages on bad directory attributes.
  2004. Bugzilla Report 43936
  2005. * a new property ant.project.default-target holds the value of the
  2006. current <project>'s default attribute.
  2007. * a new property ant.project.invoked-targets holds a comma separated
  2008. list of the targets that have been specified on the command line
  2009. (the IDE, an <ant> task ...) when invoking the current project.
  2010. * The <type> resource selector has had an "any" type added for better
  2011. configurability.
  2012. * Ant should detect the OS as both a Mac and a Unix system when
  2013. running on OpenJDK.
  2014. Bugzilla Report 44889.
  2015. * new protected getConnection and getStatement methods allow
  2016. subclasses of SQLExec more control - or access to the cached
  2017. instances when overriding other methods like runStatements.
  2018. Bugzilla Report 27178.
  2019. * <sql> has a new failOnConnectionError attribute that can be used to
  2020. keep a build going even if the task failed to connect to the
  2021. database.
  2022. Bugzilla Report 36712.
  2023. * A new attribute strictDelimiterMatching can be used to ignore case
  2024. or whitespace differences when <sql> searches for delimiters.
  2025. This is useful if you execute a SQL script that has contains "GO"
  2026. and "go" as delimiters.
  2027. Bugzilla Report 26459.
  2028. * A new showWarnings attribute of <sql> allows warnings to be logged.
  2029. Bugzilla Report 41836.
  2030. * A new treatWarningsAsErrors attribute of <sql> can be used to fail
  2031. a build if a warning occurs.
  2032. Bugzilla Report 41836.
  2033. * Ant now supports scoped properties (see Local task).
  2034. Bugzilla Report 23942.
  2035. * <sql>'s CSV output can be controlled via the new attributes
  2036. csvColumnSeparator and csvQuoteCharacter.
  2037. Bugzilla Report 35627.
  2038. * <ftp>'s logging has been improved.
  2039. Bugzilla Reports 30932, 31743.
  2040. * It is now possible to disable <ftp>'s remote verification.
  2041. Bugzilla Report 35471.
  2042. * <sshexec> now supports input in a way similar to <exec>
  2043. Bugzilla Report 39197.
  2044. * <scp> can now preserve the file modification time when downloading
  2045. files.
  2046. Bugzilla Report 33939.
  2047. * the new task sshsession can run multiple tasks in the presence of
  2048. an SSH session providing (local and remote) tunnels.
  2049. Bugzilla Report 43083.
  2050. * ZipOutputStream has been sped up for certain usage scenarios that
  2051. are not used by Ant's family of zip tasks.
  2052. Bugzilla Report 45396.
  2053. * <echo> supports an "output" Resource attribute as an alternative to "file".
  2054. * <sql> "output" attribute now supports any Resource in addition to a file.
  2055. * <scp> no longer requires a passphrase when using key based
  2056. authentication.
  2057. Bugzilla Report 33718.
  2058. * a new failOnEmptyArchive attribute on <unzip> and <untar> can now
  2059. make the task fail the build if it tries to extract an empty
  2060. archive.
  2061. * <unzip> and <untar> have a new attribute stripAbsolutePathSpec.
  2062. When set to true, Ant will remove any leading path separator from
  2063. the archived entry's name before extracting it (making the name a
  2064. relative file name).
  2065. Bugzilla Report 28911.
  2066. * <unzip> will now detect that it was asked to extract a file that is
  2067. not an archive earlier if the file is big.
  2068. Bugzilla Report 45463.
  2069. * New file and resource selectors <readable/> and <writable/> have
  2070. been added that select file which the current process can read or
  2071. write.
  2072. Bugzilla Report 45081.
  2073. * The filename file selector has a new attribute regex that allows
  2074. files to be selected by matching their names against a regular
  2075. expression.
  2076. Bugzilla Report 45284
  2077. * The name resource selector has a new attribute regex that allows
  2078. resources to be selected by matching their names against a regular
  2079. expression.
  2080. Bugzilla Report 45284
  2081. * Enhanced performance of Project.fireMessageLoggedEvent and DirectoryScanner
  2082. Bugzilla Reports 45651 and 45665
  2083. * The package list location for offline links can now be specified as
  2084. an URL.
  2085. Bugzilla Report 28881
  2086. * <echoxml> now supports XML namespaces.
  2087. Bugzilla Report 36804.
  2088. * A new listener for <junit> has been added that tries to invoke the
  2089. tearDown method of a TestCase if that TestCase was run in a forked
  2090. VM and the VM crashed or a timeout occurred. See the <junit> task's
  2091. manual page for details.
  2092. Bugzilla Report 37241.
  2093. * The Jar task now supports the addition of a jar index file in update mode.
  2094. Previously the absence of the index was not enough to trigger the rebuild;
  2095. some other update was necessary.
  2096. Bugzilla report 45098.
  2097. * <ant> has a new attribute "useNativeBasedir" that makes the child
  2098. build use the same basedir it would have used if invoked from the
  2099. command line. No matter what other attributes/properties have been
  2100. set.
  2101. Bugzilla Report 45711.
  2102. * <patch> has a new optional failOnError attribute.
  2103. Bugzilla Report 44772.
  2104. * Antlib descriptors will now be parsed by the configured
  2105. ProjectHelper if the implementation overrides the new
  2106. canParseAntlibDescriptor and parseAntlibDescriptor methods. If the
  2107. configured helper doesn't override the methods, a new instance of
  2108. ProjectHelper2 will be used just like in Ant 1.7.1.
  2109. Bugzilla Report 42208.
  2110. * It is now possible to explicitly set the executable used by
  2111. <signjar>.
  2112. Bugzilla Report 39189.
  2113. * <compositemapper>'s order of results is now predictable.
  2114. Bugzilla Report 44873
  2115. * a new <firstmatchmapper> has been added, which works similar to
  2116. <compositemapper> but only returns the results of the first nested
  2117. mapper that matches.
  2118. Bugzilla Report 44873
  2119. * <get> has a new maxtime attribute that terminates downloads that
  2120. are taking too long.
  2121. Bugzilla Report 45181.
  2122. * <ftp> now supports selectors for remote directories as well.
  2123. Bugzilla Report 44726.
  2124. * In some cases Ant fails to rename files if the source or target
  2125. file has just recently been closed on Windows. It will now try to
  2126. delete the offending file once again after giving the Java VM time
  2127. to really close the file.
  2128. Bugzilla Report 45960.
  2129. * two new properties can be used to set the MIME-Type and charset
  2130. used by MailLogger.
  2131. Bugzilla Report 27211.
  2132. * a new attribute of <mail> allows the task to succeed if it can
  2133. reach at least one given recipient.
  2134. Bugzilla Report 36446.
  2135. * two new properties allow MailLogger to send a fixed text instead of
  2136. the log file.
  2137. Bugzilla Report 38029.
  2138. * <cvsversion> is supposed to support CVSNT now.
  2139. Bugzilla Report 31409.
  2140. * <cvs>' port attribute should now work for all clients that use the
  2141. environment variable CVS_PSERVER_PORT instead of the "official"
  2142. CVS_CLIENT_PORT.
  2143. Bugzilla Report 30124.
  2144. * <cvsversion> now works for local repositories as well.
  2145. * <cvstagdiff> has an option to ignore removed files now.
  2146. Bugzilla Report 26257.
  2147. * <cvs> and friends now support modules with spaces in their names
  2148. via nested <module> elements.
  2149. * A new attribute "ignoreEmpty" controls how <concat> deals when
  2150. there are no resources to concatenate. If it is set to false, the
  2151. destination file will be created regardless, which reinstates the
  2152. behavior of Ant 1.7.0.
  2153. Bugzilla Report 46010.
  2154. * If the new remote attribute is set to true, <cvschangelog> can now
  2155. work against a remote repository without any working copy.
  2156. Bugzilla Report 27419.
  2157. * start and end tags can now be used instead of dates in
  2158. <cvschangelog>.
  2159. Bugzilla Report 27419.
  2160. * MailLogger and <mail> can now optionally enable support for
  2161. STARTTLS.
  2162. Bugzilla Report 46063.
  2163. * <import> has new attributes "as" and "prefixSeparator" that can be
  2164. used to control the prefix prepended to the imported targets'
  2165. names.
  2166. * a new task <include> provides an alternative to <import> that
  2167. should be preferred when you don't want to override any targets.
  2168. * delete has a new attribute removeNotFollowedSymlink. If set to
  2169. true, symbolic links not followed (because followSymlinks was false
  2170. or the number of symlinks was too big) will be removed.
  2171. Bugzilla Report 36658.
  2172. * the os and osfamily attributes of <chown>, <chgrp>, <chmod> and
  2173. <attrib> can now be used to run the commands on operating systems
  2174. other than their "native" environment, i.e. non-Unix or non-Windows
  2175. operating systems respectively.
  2176. Bugzilla Report 7624.
  2177. * a new resource collection <mappedresources> generalizes the prefix
  2178. and fullpath attributes of <zipfileset> to arbitrary mappers that
  2179. can be applied to arbitrary resource collections.
  2180. Bugzilla Report 4240.
  2181. * <tarfileset> and <zipfileset> have a new attribute
  2182. errorOnMissingArchive that allows "optional" filesets that don't
  2183. break the build if the archive doesn't exist.
  2184. Bugzilla Report 46091.
  2185. * <javadoc> has new attributes that correspond to the
  2186. -docfilessubdirs and -excludedocfilessubdir command line arguments.
  2187. Bugzilla Report 34455.
  2188. * <xslt> now fails early if a specified stylesheet doesn't exist.
  2189. Bugzilla Report 34525.
  2190. * <xslt> now has an option to suppress transformer warnings. This
  2191. option only has an effect for processors that support this feature;
  2192. the "trax" processor included with Ant does support it.
  2193. Bugzilla Report 18897.
  2194. * <xslt> has two new attributes failOnError and
  2195. failOnTransformationError that can be used to not make the build
  2196. process proceed if an error occurs.
  2197. Bugzilla Report 36260.
  2198. * <xslt> has a new attribute failOnNoResources that can be used to
  2199. make the build fail/continue if the collection of resources to
  2200. transform is empty.
  2201. Bugzilla Report 46274.
  2202. * It is now possible to define system properties that should be set
  2203. during xslt's transformation. This can be used to enable XInclude
  2204. processing in Xerces, for example.
  2205. Bugzilla Report 36653.
  2206. * a new resource collection <archives> can be used to specify
  2207. collections of ZIP and TAR archives as sources. It extracts them on
  2208. the fly. This is a generalization of the <zipgroupfileset> found
  2209. as nested element of <zip> and friends.
  2210. Bugzilla Report 46257.
  2211. * <dependset> has a new verbose attribute that makes the task list
  2212. all deleted targets and give a hint as to why it deleted them.
  2213. Bugzilla Report 13681.
  2214. * <replaceregexp> now supports arbitrary filesystem based resource
  2215. collections.
  2216. Bugzilla Report 46341.
  2217. * <replace> now supports arbitrary filesystem based resource
  2218. collections.
  2219. Bugzilla Report 24062.
  2220. * token and value of <replace>'s nested <replacefilter> can now also
  2221. be specified as nested elements to allow multiline content more
  2222. easily.
  2223. Bugzilla Report 39568.
  2224. * <replace> and <replaceregexp> can now optionally preserve the file
  2225. timestamp even if the file is modified.
  2226. Bugzilla Report 39002.
  2227. * The <replace> child-elements <replacetoken> and <replacevalue> have
  2228. a new attribute that controls whether properties in nested text get
  2229. expanded.
  2230. Bugzilla Report 11585.
  2231. * <replace> has a new attribute failOnNoReplacements that makes the
  2232. build fail if the task didn't do anything.
  2233. Bugzilla Report 21064.
  2234. * <sync>'s <preserveInTarget> has a new attribute that controls
  2235. whether empty directories should be kept.
  2236. Bugzilla Report 43159.
  2237. * ant -diagnostics now checks that it can read as much from the
  2238. temporary directory as it has written. This may help detecting a
  2239. full filesystem.
  2240. Bugzilla Report 32676.
  2241. * <pathconvert> has a new preserveduplicates attribute--historically
  2242. these were eliminated in the interest of behaving in the manner
  2243. of a "path."
  2244. * <javac>'s source and target attributes are no longer ignored when
  2245. using gcj.
  2246. Bugzilla Issue 46617.
  2247. * ant -diagnostics now outputs information about the default XSLT
  2248. processor.
  2249. Bugzilla Issue 46612.
  2250. * the ZIP library will now ignore ZIP extra fields that don't specify
  2251. a size.
  2252. Bugzilla Report 42940.
  2253. * CBZip2OutputStream now has a finish method separate from close.
  2254. Bugzilla Report 42713.
  2255. * the <zip> and <unzip> family of tasks has new options to deal with
  2256. file name and comment encoding. Please see the zip tasks'
  2257. documentation for details.
  2258. * <input ...><handler type="secure" /></input> now uses previously
  2259. undocumented SecureInputHandler shipped with Ant 1.7.1.
  2260. * Command line arguments for <exec> and similar tasks can now have
  2261. optional prefix and suffix attributes.
  2262. Bugzilla Report 47365
  2263. * <apply>'s srcfile and targetfile child elements can now have
  2264. optional prefix and suffix attributes.
  2265. Bugzilla Report 45625
  2266. * <jar> has a new attribute to enable indexing of META-INF
  2267. directories which is disabled for backwards compatibility reasons.
  2268. Bugzilla Report 47457
  2269. * <apt>'s executable attribute can be used to specify a different
  2270. executable.
  2271. Bugzilla Report 46230.
  2272. * <rmic>'s new executable attribute can be used to specify a
  2273. different executable.
  2274. Bugzilla Report 42132.
  2275. * <javac>, <rmic>, <javah> and <native2ascii> now provide a nested
  2276. element to specify a classpath that will be used when loading the
  2277. task's (compiler) adapter class.
  2278. Bugzilla Report 11143.
  2279. * <javac>, <rmic>, <javah> and <native2ascii> now provide a nested
  2280. element to specify the task's (compiler) adapter as an instance of
  2281. a class that has been defined via typedef/componentdef. This
  2282. allows more control over the classpath and allows adapters to be
  2283. defined in Antlibs easily.
  2284. * A new subclass org.apache.tools.ant.loader.AntClassLoader5 of
  2285. AntClassLoader has been added which overrides getResources
  2286. which became non-final in ClassLoader with Java5+ so
  2287. this method now behaves as expected.
  2288. The new subclass will be used by Ant internally if it is available
  2289. and Ant is running on Java5 or more recent.
  2290. Bugzilla Report 46752.
  2291. * a new attributes can chose a different request method than GET for
  2292. the http condition.
  2293. Bugzilla Report 30244
  2294. * <splash> now supports a configurable display text and a regular
  2295. expression based way to determine progress based on logged messages.
  2296. Bugzilla Report 39957.
  2297. * the number of retries on error in <get> is now configurable. <get>
  2298. can be told to not download files that already exist locally.
  2299. Bugzilla Report 40058.
  2300. * Ant now builds against commons-net 2.0 as well.
  2301. Bugzilla Report 47669.
  2302. * A new nested element connectionProperty of <sql> allows setting of
  2303. arbitrary JDBC connection properties.
  2304. Bugzilla Report 33452.
  2305. * A new islastmodified condition can check the last modified date of
  2306. resources.
  2307. * <rmic> has a new destDir attribute that allows generated files to
  2308. be written to a different location than the original classes.
  2309. Bugzilla Report 20699.
  2310. * <rmic> has a new listfiles attribute similar to the existing one of
  2311. <javac>.
  2312. Bugzilla Report 24359.
  2313. * It is now possible to suppress the "FAILED" lines sent to Ant's
  2314. logging system via <junit>'s new logFailedTests attribute.
  2315. Bugzilla Report 35073.
  2316. * <propertyfile> now can delete entries.
  2317. * The <resources> resource collection can now optionally cache its
  2318. contents.
  2319. * A new <resourceexists> condition can check whether resources exists.
  2320. * <sql> has two new attributes errorproperty and warningproperty that
  2321. can be set if an error/warning occurs.
  2322. Bugzilla Report 38807.
  2323. * <sql> has a new attribute rowcountproperty that can be used to set
  2324. a property to the number of rows affected by a task execution.
  2325. Bugzilla Report 40923.
  2326. * when Ant copies files without filtering, it will now use NIO
  2327. channels.
  2328. Bugzilla Report 30094.
  2329. * <get> has a new attribute that can be used to disable caching on
  2330. HTTP connections at the HttpUrlConnection level.
  2331. Bugzilla Report 41891.
  2332. * <tar> and <zip> (and tasks derived from <zip>) will now create the
  2333. parent directory of the destination archive if it doesn't exist.
  2334. Bugzilla Report 45377.
  2335. * A new filterreader <sortfilter> that sorts input lines has been
  2336. added.
  2337. Bugzilla Report 40504.
  2338. * A new token filter <uniqfilter> that suppresses tokens that match
  2339. their ancestor token has been added.
  2340. * <rootfileset>s nested into <classfileset>s can now use a dir
  2341. attribute different from the <classfileset>.
  2342. Bugzilla Report 37763.
  2343. * <path> can now optionally cache its contents.
  2344. * <property> can now specify values as nested text.
  2345. Bugzilla Report 32917.
  2346. * a new parentFirst attribute on <javaresource> allows resources to
  2347. be loaded from the specified classpath rather than the system
  2348. classloader.
  2349. Bugzilla Report 41369.
  2350. * <property location="from" basedir="to" relative="true"/> can now
  2351. calculate relative paths.
  2352. * The <name> selector supports a new handleDirSep attribute that
  2353. makes it ignore differences between / and \ separators.
  2354. Bugzilla Report 47858.
  2355. * <get> now supports resource collections (as long as the resources
  2356. contained provide URLs) and can get multiple resources in a single
  2357. task.
  2358. * <import> can now import non-File resources if they provide an URL
  2359. - as the <url> and <javaresource> resources do.
  2360. Bugzilla Report 29251
  2361. * <import> can now import multiple resources specified as resource
  2362. collections.
  2363. Bugzilla Report 22269.
  2364. * a new <resourcelist> type is similar to <filelist> but can read the
  2365. list of resources from non-file resources and may return resources
  2366. that are not files.
  2367. * a new filterreader appendtolines complements prefixlines.
  2368. * a new top level element extension-point allows build files to be
  2369. extended with custom targets more easily.
  2370. Changes from Ant 1.7.0 TO Ant 1.7.1
  2371. =============================================
  2372. Changes that could break older environments:
  2373. -------------------------------------------
  2374. * String resources only have properties single expanded. If you relied on
  2375. <string> resources being expanded more than once, it no longer happens.
  2376. Bugzilla report 42277.
  2377. * A String resource's encoding attribute was only taken into account when
  2378. set from the resource's OutputStream; the InputStream provided the String's
  2379. binary content according to the platform's default encoding. Behavior has
  2380. been modified to encode outgoing (InputStream) content as well as encoding
  2381. incoming (OutputStream) content.
  2382. * <java> with fork now returns gives -1 instead of 0 as result when failonerror
  2383. is false and some exception (including timeout) occurs. Br 42377.
  2384. * ant-type attribute has been marked as deprecated and a warning has been
  2385. issued if it is encountered in the build file.
  2386. Fixed bugs:
  2387. -----------
  2388. * The default logger was failing to print complete stack traces for exceptions
  2389. other than BuildException, thus omitting often important diagnostic
  2390. information. Bugzilla 43398.
  2391. * Error in FTP task
  2392. Bugzilla report 41724
  2393. * Regression: Locator fails with URI encoding problem when spaces in path
  2394. Bugzilla report 42222
  2395. * Regression in Locator: running Ant off a network share does not work:
  2396. message "URI has authority component" appears
  2397. Bugzilla report 42275
  2398. * Improvements in AntClassLoader Speed.
  2399. Bugzilla report 42259
  2400. * Error in handling of some permissions, most notably the AllPermission on
  2401. jdk 1.5
  2402. Bugzilla report 41776
  2403. * Replace task summary output incorrect.
  2404. Bugzilla report 41544
  2405. * Dependset crashes ant when timestamp on files change during Dependset
  2406. execution.
  2407. Bugzilla report 41284
  2408. * Bug in org.apache.tools.ant.types.resources.comparators.Date
  2409. Bugzilla report 41411
  2410. * <junit> in Ant 1.7.0 could throw NPE if no <classpath> was defined.
  2411. Bugzilla report 41422.
  2412. * In Ant 1.7.0, <fileset> in <javadoc> does not by default include only
  2413. **/*.java as the documentation claims and earlier revisions did.
  2414. Bugzilla report 41264.
  2415. * SPI support in jar was broken.
  2416. Bugzilla report 41201.
  2417. * jsch-0.1.30 causes SCP task to hang
  2418. Bugzilla report 41090.
  2419. * Target from imported file listed twice in projecthelp.
  2420. Bugzilla report 41226.
  2421. * <sql> task double-expands properties if expandproperties is true,
  2422. and expands properties if expandproperties is false.
  2423. Bugzilla report 41204.
  2424. * Rolling back Bugzilla 32927 (set a default description for a javadoc tag
  2425. if not set) as it caused a BC problem.
  2426. Bugzilla report 41268.
  2427. * <apt> forks properly and so memory settings are picked up.
  2428. Bug report 41280.
  2429. * Regression: NPE was thrown when using <pathconvert> against a
  2430. (third-party instantiated) fileset with null Project reference.
  2431. * Strip out all -J arguments to non forking rmic adapters, specifically
  2432. the Sun and Weblogic compilers.
  2433. Bug report 41349
  2434. * Synchonization issues in PropertyHelper. Bugzilla 41353.
  2435. * <concat binary="true" append="true"> did not append. Bugzilla 41399.
  2436. * -autoproxy turns Java1.5+ automatic proxy support on. Bugzilla 41904
  2437. * Handle null result of system getProperty(). Bugzilla 42334.
  2438. * Regression: concat fixlastline="true" should not have applied to
  2439. nested text, but did in Ant 1.7.0. Bugzilla 42369.
  2440. * Regression: ant.version was not passed down in <ant>, <subant>.
  2441. This worked in Ant 1.6.5, but not in 1.7.0.
  2442. ant.core.lib (added in 1.7.0) was also not being propagated.
  2443. Bugzilla bug 42263
  2444. * Regression: bzip2 task created corrupted output files for some inputs.
  2445. Bugzilla bug 41596.
  2446. * Regression: <available> with <filepath> did not work.
  2447. Bugzilla 42735.
  2448. * ant script, cd may output to stdout.
  2449. Bugzilla 42739.
  2450. * Modified selector doesn't update the cache if only one file has changed.
  2451. Bugzilla 42802.
  2452. * Regression: Path subclasses that overrode list() stopped working in
  2453. resourceCollection contexts in Ant 1.7.0. Bugzilla 42967.
  2454. * <property> supports loading from xml based property definition.
  2455. Bugzilla 42946
  2456. * <junit> supports collecting and rerunning failed test cases
  2457. (textXXX methods). Bugzilla 42984.
  2458. * War task failed with "No WEB-INF/web.xml file was added" when called
  2459. a second time. Bugzilla 43121.
  2460. * FilterMapper could throw an NPE.
  2461. Bugzilla 43292.
  2462. * Regession nested macrodefs with elements could cause StackOverFlow.
  2463. Bugzilla 43324.
  2464. * Some changes to <junit> broke third party tasks that extend it (like
  2465. Apache Cactus' Ant task). The changes have been modified so that
  2466. subclases should now work again - without any changes to the
  2467. subclass.
  2468. Other changes:
  2469. --------------
  2470. * Various small optimizations speed up common tasks such as <javac> on large
  2471. filesets, reducing both I/O and CPU usage.
  2472. * Profiling logger has been added with basic profiling capabilities.
  2473. * <script> now has basic support for JavaFX scripts
  2474. * SSH task can now take a command parameter containing the commands to execute.
  2475. This allows you to connect to a server and execute a number of commands
  2476. without constantly reconnecting for each command.
  2477. * Upgraded XML API to XML commons version 1.3.04.
  2478. * Upgraded to Xerces 2.9.0
  2479. * <script> can now work with bsf.jar and js.jar in its <classpath>.
  2480. * add errorProperty and updatedProperty to <javac>
  2481. Bugzilla 35637 and 28941.
  2482. * add classpathref attribute to <whichresource>
  2483. Bugzilla 41158.
  2484. * reduce logging noise of <apply skipemptyfilesets="true">
  2485. Bugzilla 29154
  2486. * Show Previous Revision in the tagdiff.xsl stylesheet
  2487. Bugzilla 29143
  2488. * Allow <mapper refid> to refer directly to a FileNameMapper instance.
  2489. * If you try and use a type in a namespace (or an antlib), and the type is not
  2490. recognized but there are other definitions in that namespace, Ant lists what
  2491. the known definitions are. This helps you find spelling errors.
  2492. * Add a <last> resource collection, corresponding to <first>.
  2493. * Add new <truncate> task.
  2494. * <junitreport> xsl stylesheets allow setting the title used in <title> and <h1> tags by
  2495. using <report><param> element. Bugzilla 41742.
  2496. * Add IgnoreDependenciesExecutor for weird cases when the user wants to run
  2497. only the targets explicitly specified.
  2498. * Patternset allows nested inverted patternsets using <invert>.
  2499. * <manifest> checks for validity of attribute names.
  2500. * JUnitVersionHelper.getTestCaseClassName is now public. Bugzilla 42231
  2501. * <string> resource supports nested text. Bugzilla bug 42276
  2502. * <scriptdef> now sources scripts from nested resources/resource collections. This lets you
  2503. define scripts in JARs, remote URLs, or any other supported resource. Bugzilla report 41597.
  2504. * <concat> is now usable as a single-element ResourceCollection.
  2505. * It is now possible to provide the value of a <striplinecomments> filter's
  2506. <comment> nested element as nested text instead of using the 'value'
  2507. attribute.
  2508. * A new logger, BigProjectLogger, lists the project name with every target
  2509. * Default text added to macrodef. Bugzilla report 42301.
  2510. * "rawblobs" attribute added to SQL task.
  2511. * Add new retry task container.
  2512. * <jar> has a new strict attribute that checks if the jar complies with
  2513. the jar packaging version specification.
  2514. * <javac> has a new attribute - includeDestClasses.
  2515. Bugzilla 40776.
  2516. * <fileset> has a new attribute - errorOnMissingDir.
  2517. Bugzilla 11270.
  2518. * <javac> handles package-info.java files, there were repeatedly compiled.
  2519. Bugzilla 43114.
  2520. * SecureInputHandler added to use Java 6 System.console().readPassword()
  2521. when available.
  2522. Changes from Ant 1.6.5 to Ant 1.7.0
  2523. ===================================
  2524. Changes that could break older environments:
  2525. -------------------------------------------
  2526. * Initial support for JDK 6 (JSR 223) scripting.
  2527. <*script*> tasks will now use javax.scripting if BSF is
  2528. not available, or if explicitly requested by using
  2529. a "manager" attribute.
  2530. * Removed launcher classes from nodeps jar.
  2531. * <classconstants> filter reader uses ISO-8859-1 encoding to read
  2532. the java class file. Bugzilla report 33604.
  2533. * Defer reference process. Bugzilla 36955, 34458, 37688.
  2534. This may break build files in which a reference was set in a target which was
  2535. never executed. Historically, Ant would set the reference early on, during parse
  2536. time, so the datatype would be defined. Now it requires the reference to have
  2537. been in a bit of the build file which was actually executed. If you get
  2538. an error about an undefined reference, locate the reference and move it somewhere
  2539. where it is used, or fix the depends attribute of the target in question to
  2540. depend on the target which defines the reference/datatype.
  2541. As a result of testing on real live build scripts, a fall-back mechanism
  2542. was put it place to allow references that are out-of-band to be resolved. If
  2543. this happens a big warning message is logged. This fall-back mechanism will
  2544. be removed in Ant 1.8.0.
  2545. * <script> and <scriptdef> now set the current thread context.
  2546. * Unrestrict the dbvendor names in the websphere element of the ejbjar task.
  2547. Bugzilla Report 40475.
  2548. * <env> nested element in <java>, <exec> and others is now case-insensitive
  2549. for windows OS. Bugzilla Report 28874.
  2550. * Removed support for xalan1 completely. Users of Xalan1 for Ant builds will
  2551. have to stay at ant 1.6.5 or upgrade to xalan2.
  2552. * Use org.apache.log4j.Logger instead of org.apache.log4j.Category.
  2553. Category has been deprecated for ~2 years and has been removed from
  2554. the log4j code. Logger was introduced in log4j 1.2 so users of
  2555. log4j 1.1 and log4j 1.0 need to upgrade to a newer version of log4j.
  2556. Bugzilla Report 31951.
  2557. * build.sysclasspath now also affects the bootclasspath handling of
  2558. spawned Java VMs. If you set build.sysclasspath to anything other
  2559. than "ignore" (or leave it unset, since "ignore" is the default when
  2560. it comes to bootclasspath handling), then the bootclasspath of the
  2561. VM running Ant will be added to the bootclasspath you've specified.
  2562. * The <java fork="false"> now as per default installs a security manager
  2563. using the default permissions. This is now independent of the
  2564. failonerror attribute. Bugzilla report 33361.
  2565. * <signjar> now notices when the jar and signedjar are equal, and switches
  2566. to the same dependency logic as when signedjar is omitted. This may break
  2567. something that depended upon signing in this situation. However, since
  2568. invoking the JDK jarsigner program with -signedjar set to the source jar
  2569. actually crashes the JVM on our (Java1.5) systems, we don't think any
  2570. build files which actually worked will be affected by the change.
  2571. * <signjar> used to ignore a nested fileset when a jar was also provided as an
  2572. attribute, printing a warning message; now it signs files in the fileset.
  2573. * An improved method of handling timestamp granularity differences between
  2574. client and server was added to the <ftp> task. FTP servers typically
  2575. have HH:mm timestamps whereas local filesystems have HH:mm:ss timestamps.
  2576. Previously, this required tweaking with the timediffmillis attribute
  2577. which also was used to handle timezone differences. Now, there is a new
  2578. timestampgranularity attribute. The default value for get operations is 0
  2579. since the user has the more powerful preservelastmodified attribute to work
  2580. with. Since this is not available on put operations the default value
  2581. adds a minute to the server timestamp in order to account for this,
  2582. Scripts which previously used timediffmillis to do this compensation may
  2583. need to be rewritten. timediffmillis has now been deprecated.
  2584. * Support for the XSL:P XML parser has been removed.
  2585. Bugzilla Report 23455.
  2586. * Visual Age for Java optional tasks removed as the required library is no
  2587. longer available.
  2588. * Testlet (test) optional task removed as the required library is no
  2589. longer available.
  2590. * IContract optional task removed as the required library is no
  2591. longer available.
  2592. * Metamata (maudit, mmetrics, and mparse tasks) removed as the required
  2593. library is no longer available.
  2594. * Sitraka (jpcoverage, jpcovmerge, jpcovreport) tasks suppressed as the
  2595. required library is no longer available.
  2596. * <fixcrlf> used \r (Mac) line endings on OS X, whose proper line separator
  2597. is \n (Unix). Bugzilla report 39585.
  2598. * <scp> now optionally supports the sftp protocol, you may need a
  2599. newer jsch.jar. Bugzilla Report 39373.
  2600. * Ant launcher program prints errors to stderr, and exits with a 2 exit code
  2601. value if, for any reason, it cannot actually start Ant proper. This will only
  2602. affect programs/scripts that called the launcher and which did not want to
  2603. receive an error if Ant itself would not start
  2604. * All .NET tasks are now deprecated in favor of the new .NET Antlib:
  2605. http://ant.apache.org/antlibs/dotnet/index.html
  2606. Fixed bugs:
  2607. -----------
  2608. * Directory deletion did not work properly.
  2609. Bugzilla 40972.
  2610. * docletpath attribute of javadoc was ignored.
  2611. Bugzilla 40900.
  2612. * Fixed incorrect recursion in DOMUtil.listChildNodes().
  2613. Bugzilla 40918.
  2614. * CompressedResource.compareTo() did not
  2615. take comparison with another CompressedResource into account.
  2616. Bugzilla 40949.
  2617. * Avoid possible NPE in Jar.java.
  2618. Bugzilla 40847.
  2619. * regression in attribute prefix (+ others) for refid in zipfileset and tarfileset.
  2620. Bugzilla 41004, 30498.
  2621. * dependset failed if the basedir of a target fileset did not exist.
  2622. Bugzilla 40916.
  2623. * Recursive filtering encountered NullPointerExceptions under certain
  2624. circumstances. Bugzilla 41086.
  2625. * XmlProperty overrides previously set property value when handling duplicate
  2626. elements. Bugzilla 41080.
  2627. * Having many tasks causes OOM. Bugzilla 41049.
  2628. * Regression: <path> was evaluating nested content only once, so that it could
  2629. not e.g. pick up files that didn't exist the first time through.
  2630. Bugzilla 41151.
  2631. * OOM caused by IH holding on to classes and thus their classloaders.
  2632. Bugzilla 28283 and 33061.
  2633. * <delete> doesn't delete when defaultexcludes="false" and no includes is set
  2634. fixed. Bugzilla 40313.
  2635. * Behavior change of DirectoryScanner/AbstractFileset when conditional include
  2636. patterns are used. Bugzilla 40722.
  2637. * <javac> fails with NPE when compiling with eclipse ecj 3.1.x.
  2638. Bugzilla 40839.
  2639. * JUnitTestRunner had a NPE when unable to create parser, the exception
  2640. containing the error did not get reported. Bugzilla 36733.
  2641. * <checksum> with file and todir option failed. Bugzilla report 37386.
  2642. * <path location="loc"> was broken (Regression from beta1).
  2643. Bugzilla report 40547.
  2644. * Nested fileset in <cab> did not work. Bugzilla report 39439.
  2645. * The ant wrapper script should now correctly locate the java
  2646. executable in more recent IBM JDKs for AIX as well.
  2647. * URLResource did not close jar files, and also did not disconnect HTTPConnection (s).
  2648. * Error calling junitreport. Bugzilla 40595.
  2649. * <junittask/> created junitvmwatcher*.properties files but did not close and delete them.
  2650. * <xmlproperty> did not create properties for empty leaf elements.
  2651. Bugzilla report 26286.
  2652. * UnknownElement.maybeConfigure always configured.
  2653. Bugzilla report 40641.
  2654. * No check for refid when prefix attribute is set in zipfileset.
  2655. Bugzilla report 30498.
  2656. * Fix for junit4 issue introduced since beta2.
  2657. Bugzilla report 40682.
  2658. * Error in duplicate project name with <import> and <antcall>.
  2659. Bugzilla report 39920.
  2660. * junit4 did not work with fork=no and junit4 in $ANT_HOME/lib.
  2661. Bugzilla report 40697.
  2662. * PathConvert on Windows should process forward and back slashes equivalently.
  2663. Bugzilla report 32884.
  2664. * ant.bat now looks in %USERPROFILE% and %HOMEDRIVE%%HOMEPATH% in addition to
  2665. %HOME% for pre/post batch files. Bugzilla report 39298.
  2666. * The inheritance hierarchy of the legacy <path> type was changed; code built
  2667. against Ant 1.7 would therefore no longer execute on older versions of Ant.
  2668. Since <path> is historically heavily used this was undesirable, and since it
  2669. is also avoidable, the change to <path>'s taxonomy was reverted.
  2670. * <zip filesonly="true"> included empty directories. Bugzilla report 40258.
  2671. * Invalid hash code of Target causes XmlLogger to fail.
  2672. Bugzilla report 40207.
  2673. * Macro element did not include top level Text. Bugzilla report 36803.
  2674. * AntClassLoader did not isolate resources when isolate was set. Bugzilla report 38747.
  2675. * Diagnostics broken when using java 1.4. Bugzilla report 40395.
  2676. * Exception reporting in <copy> was broken. Bugzilla report 40300.
  2677. * Handling of corrupt tar files, TarInputStream.read() never returns EOF.
  2678. Bugzilla report 39924.
  2679. * Some bugs in ReaderInputStream. Bugzilla report 39635.
  2680. * <antlr> did not recognise whether the target is up-to-date for html option.
  2681. Bugzilla report 38451.
  2682. * Documented minimal version of jsch now 0.1.29.
  2683. Bugzilla report 40333.
  2684. * <available> searched parent directories for files.
  2685. Bugzilla report 37148.
  2686. * The build could be halted if a file path contained more ".." components than
  2687. the actual depth of the preceding path. Now such paths are left
  2688. alone (meaning they will likely be treated as nonexistent
  2689. files). Bugzilla Report 40281.
  2690. * Converting a <dirset> to a string was broken. Bugzilla Report 39683.
  2691. * Manifests have improved line length handling, taking care of encoding.
  2692. Bug reports 37548 / 34425.
  2693. * <manifest> now closes the inputstream explicitly. Bug report 39628.
  2694. * <rpm> now also correctly searches the first element of the path.
  2695. Bug report 39345.
  2696. * ant.bat now handles classpath set to "". Bug report 38914.
  2697. * <junit> now supports JUnit 4. Bugzilla Report 38811.
  2698. * <junit> can now work with junit.jar in its <classpath>. Bugzilla
  2699. Report 38799.
  2700. * Some potential NullPointerExceptions, Bugzilla Reports 37765 and 38056.
  2701. * Problem when adding multiple filter files, Bugzilla Report 37341.
  2702. * Problem referencing jars specified by Class-Path attribute in manifest
  2703. of a ant task jar file, when this ant task jar file is located in
  2704. a directory with space, Bugzilla Report 37085.
  2705. * Backward incompatible change in ZipFileSet, Bugzilla Report 35824.
  2706. * Wrong replacement of file separator chars prevens junitbatchtest
  2707. from running correctly on files from a zipfileset. Bugzilla Report 35499.
  2708. * Calling close twice on ReaderInputStream gave a nullpointer exception.
  2709. Bugzilla Report 35544.
  2710. * Memory leak from IntrospectionHelper.getHelper(Class) in embedded
  2711. environments. Bugzilla Report 30162.
  2712. * Translate task does not remove tokens when a key is not found.
  2713. It logs a verbose message. Bugzilla Report 13936.
  2714. * Incorrect task name with invalid "javac" task after a "presetdef".
  2715. Bugzilla reports 31389 and 29499.
  2716. * <manifest> was not printing warnings about invalid manifest elements.
  2717. Bugzilla report 32190.
  2718. * <replace> got out of memory on large files (part of report 32566).
  2719. <replace> can now handle files as long as there is enough disk space
  2720. available.
  2721. * Commandline.describeCommand() methods would attempt to describe
  2722. arguments even when none, other than the executable name, were present.
  2723. * Create signjar's helper ExecTask instance directly rather than by
  2724. typedef discovery mechanisms. Bugzilla report 33433.
  2725. * FileUtils.resolveFile() promised to return absolute files but
  2726. did not always do so.
  2727. * <ftp> failed to retrieve a file when the path towards the file contained
  2728. an element starting with . Bugzilla report 33770.
  2729. * "<rmic> always compiles on Java1.5" bugzilla report=33862. Fixed default
  2730. stub version to always be "compat", even on Java1.5+.
  2731. * The .NET compilation tasks failed if filenames given as references
  2732. contained spaces. Bugzilla Report 27170.
  2733. * SQL task would try access result sets of statements that didn't
  2734. return any, causing problems with Informix IDS 9.2 and IBM DB2 8.1
  2735. FixPak 6 (or later). Bugzilla Reports 27162 and 29954.
  2736. * Task.init() was called twice for most tasks. Bugzilla Report 34411.
  2737. * JavaTest testcases sometimes fail on windows. Bugzilla Report 34502.
  2738. * Targets with identical name work in imported project. Bugzilla Report 34566.
  2739. * DemuxOutputStream now uses a WeakHashMap to store the thread-stream mapping,
  2740. to avoid holding on to thread references after they terminate.
  2741. * <xmlvalidate> and <schemavalidate> create a new parser for every file in a
  2742. fileset, and so validate multiple files properly. Bugzilla Report 32791.
  2743. * <tar> / <untar> now accepts files upto 8GB, <tar> gives an error if larger
  2744. files are to be included. This is the POSIX size limit.
  2745. * <junitreport> removed line-breaks from stack-traces. Bugzilla
  2746. Report 34963.
  2747. * Off-by-one error in environment setup for execution under OpenVMS fixed.
  2748. * Bugzilla report 36171: -noclasspath crashes ant if no system
  2749. classpath is set.
  2750. * <pvcs> used wrong switch for retrieving revisions by label.
  2751. Bugzilla Report 36359.
  2752. * <sshexec> closed System.out, disabling output on second and subsequent
  2753. invocations. Bugzilla report 36302.
  2754. * <cvschangelog> was crashing with CVS versions >= 1.12.x due to change in
  2755. the date format. Bugzilla report 30962.
  2756. * The same IntrospectionHelper instance was continuously added as a listener
  2757. to project. Bugzilla report 37184.
  2758. * FileUtils.toURI() was not encoding non-ASCII characters to ASCII,
  2759. causing impossibility to process XML entities referenced by XML
  2760. documents in non ASCII paths. Bugzilla report 37348.
  2761. * > 1 ssh invocations to a given host would fail. Bugzilla report 36207.
  2762. * EmailTask was eating SMTP error messages. Bugzilla report 37547.
  2763. * PropertySet API setMapper(...) didn't properly set up the Mapper.
  2764. Bugzilla report 37760.
  2765. * Proper return code for ant.bat. Bugzilla report 13655.
  2766. * Project not set on ChainReaderHelpers used by the Redirector.
  2767. Bugzilla report 37958.
  2768. * Copy task would fail on locked (or otherwise uncopyable) files even if
  2769. failonerror set to false. Bugzilla report 38175.
  2770. * <junit> task did not print all the Test names when using forkmode='once'.
  2771. Bugzilla report 37426.
  2772. * <available> could leak resources, Bugzilla Report 38260.
  2773. * Redirector called Thread.sleep in a synchronized block. Bugzilla
  2774. report 37767.
  2775. * CCUnlock's objselect attribute could exhibit unpredictable behavior;
  2776. standardized improperly included objselect and objsel property accessors to
  2777. delegate to the inherited objSelect property accessor. Bugzilla report 37766.
  2778. * <unzip> and <untar> now correctly merge multiple nested patternsets.
  2779. Bugzilla Report 38973.
  2780. * On case-insensitive filesystems, a <move> to change filename case
  2781. erroneously deleted the "destination" file before attempting to rename
  2782. the source file. Bugzilla 37701.
  2783. * <scp> can now handle uris with @s other than the final one denoting the
  2784. domain. Bugzilla 38082.
  2785. * If the class invoked by the <java> task threw a ClassNotFoundException,
  2786. this was misinterpreted as the specified class itself not being found.
  2787. * <echoproperties> setPrefix javadoc claimed null or empty prefix would be
  2788. ignored; instead an error was thrown. Bugzilla report 39954.
  2789. * <get> would fetch files that were up to date, because it used > in a
  2790. remote/local timestamp comparison, not >=. Bugzilla 35607.
  2791. * <xslt> passes the current file (name + directory) to the
  2792. stylesheet/transformation. xsl-parameter name is configurable.
  2793. Bugzilla report 21042.
  2794. * The <zip> API allowed creation of directories in file-only archives; a
  2795. habitual offender was the subclassed <jar>, which included META-INF/ in
  2796. the destination file regardless of whether filesonly was set to true.
  2797. * <rmic> has a new adapter, xnew, to use the -XNew back end on java1.5+.
  2798. By forking rmic, this works on java1.6+. Bugzilla report 38732.
  2799. * Copy of UnknownElement in macroinstance was not recursive.
  2800. Bugzilla report 40238.
  2801. * Mixing of add and addConfigured methods in Mapper/ChainedMapper
  2802. causes incorrect chaining. Bugzilla report 40228.
  2803. Other changes:
  2804. --------------
  2805. * Warn user when a reference in the form "${refid}" cannot be resolved as this
  2806. is a sign they probably meant "refid" (misuse of property expansion syntax).
  2807. * Add dtd to javadoc for junit.
  2808. Bugzilla 40754.
  2809. * Add quiet attribute to loadfile/resource.
  2810. Bugzilla 38249.
  2811. * Make Locator#fromURI also append the drive letter when running under Windows
  2812. with JDK 1.3 or 1.2.
  2813. * Do not uppercase the drive letters systematically in FileUtils#normalize.
  2814. * Java 5 enumerations may now be used as values in XML attributes in place of
  2815. EnumeratedAttribute. Bugzilla 41058.
  2816. * Create a pom file for ant-testutil and add ant-testutil.jar to the ant
  2817. distribution. Bugzilla 40980.
  2818. * Roll back automatic proxy enabling on Java 1.5. It broke things like
  2819. Oracle JDBC drivers, and Ant itself on IBM's JVM on AIX, and didn't
  2820. seem to work to well the rest of the time.
  2821. To enable the feature, use the -autoproxy command line option.
  2822. * Upgraded XML API and parser to Xerces 2.8.1
  2823. * A code review of some threaded logic has tightened up the synchronization
  2824. of Watchdog, ExecuteWatchdog and ExecuteJava, which could reduce the occurrence
  2825. of race conditions here, especially on Java1.5+.
  2826. * Allow broken reference build files. The defer reference processing would
  2827. break too many files - so allow them with a warning.
  2828. * Removed dependency on sun.misc.UUEncoder for UUMailer.
  2829. * Added regex attribute to the echoproperties task.
  2830. Bugzilla 40019.
  2831. * <war> task now allows you to omit the web.xml file. as this is optional
  2832. in the servlet 2.5 and Java EE 5 APIs. set needxmlfile="false" to
  2833. avoid a missing web.xml file from halting the build.
  2834. * Diagnostics catches and logs security exceptions when accessing system properties.
  2835. * <javadoc> useexternalfile now applies to all command line arguments
  2836. of javadoc. Bugzilla report 40852.
  2837. * javadoc/tag@description is now set to the name if description is
  2838. not specified. Bugzill report 32927.
  2839. * Some performance improvements, including Bugzilla report 25778.
  2840. * Add <matches> condition. Bugzilla report 28883.
  2841. * Extending JAR-Task for SPI. Bugzilla report 31520.
  2842. * Added <tokens> resource collection for convenient creation of string
  2843. resources from other resources' content. Inspired by Bugzilla 40504.
  2844. * Added <compare> resource selector to select resources based on the
  2845. results of their comparison to other resources.
  2846. * Added outputtoformatters attribute to <junit> to allow suppression
  2847. of noisey tests. Bugzilla report 12817.
  2848. * Log level of message 'Overriding previous definition of reference to'
  2849. set to Verbose. Bugzilla report 17240.
  2850. * Added setbeans attribute to <script> to allow <script>'s to be
  2851. run without referencing all references.
  2852. Bugzilla report 37688.
  2853. * Added classpath attribute and nested element to <script> to allow
  2854. the language jars to be specified in the build script.
  2855. Bugzilla report 29676.
  2856. * Trim the driver attribute on the <sql> task. Bugzilla report 21228.
  2857. * Allow (jar) files as well as directories to be given to jdepend.
  2858. Bugzilla report 28865.
  2859. * Convert SplashTask to use NOT sun internal classes.
  2860. Bugzilla report 35619.
  2861. * Made PatternSet#hasPatterns public to allow custom filesets access.
  2862. Bugzilla report 36772.
  2863. * Added searchparents attribute to <available>. Bugzilla report 39549.
  2864. * Tasks that don't extend Ant's Task class will now get the build file
  2865. location reflected into a method of the signature void setLocation(Location)
  2866. - if such a method exists.
  2867. * Remove needless synchronization in DirectoryScanner.
  2868. Bugzilla report 40237.
  2869. * Improved recursion detection for lines with multiple matches of same token
  2870. on a single line. Bugzilla report 38456.
  2871. * Task will now log correctly even if no project is set.
  2872. Bugzilla report 38458.
  2873. * Use alternative names for the command line arguments in javac. Bugzilla
  2874. Report 37546.
  2875. * The Reference class now has a project field that will get
  2876. used (if set) in preference to the passed in project, when
  2877. dereferencing the reference. Bugzilla Report 25777.
  2878. * On DOS and Netware, filenames beginning with a drive letter
  2879. and followed by a colon but with no directory separator following
  2880. the colon are no longer (incorrectly) accepted as absolute pathnames
  2881. by FileUtils.normalize() and FileUtils.isAbsolutePath(). Netware
  2882. volumes can still be specified without an intervening separator.
  2883. UNC pathnames on Windows must include a server and share name, i.e.
  2884. "\\a\b" to be considered valid absolute paths.
  2885. * A bug in SQLExec would prevent the execution of trailing,
  2886. non-semicolon-delimited statements. Bugzilla Report 37764.
  2887. * InputHandler implementations may now call InputRequest.getDefaultValue()
  2888. if they wish. The default handler uses this also. Bugzilla report 28621.
  2889. * Took in bugzilla report 39320, "Simple code cleanups"
  2890. * Improve compatibility with GNU Classpath and java versions prior to
  2891. 1.5. Bugzilla 39027.
  2892. * ${ant.core.lib} may now be used to refer to the library containing the
  2893. Ant classes, for instance useful when compiling tasks.
  2894. * Minor performance improvements Bugzilla report 37777
  2895. * New task <manifestclasspath> converts a path into a property
  2896. suitable as the value for a manifest's Class-Path attribute.
  2897. * Fixed references to obsoleted CVS web site. Bugzilla Report 36854.
  2898. * Log fine-grained events at verbose level from JUnit. Bugzilla report 31885.
  2899. * <WsdlToDotnet> and <style> are now deprecated in favor of <wsdltodotnet> and
  2900. <xslt>, respectively. Bugzilla report 25832.
  2901. * <echoproperties> now (alphanumerically) sorts the property list
  2902. before echoing. Bugzilla report 18976.
  2903. * A new base class DispatchTask has been added to facilitate elegant
  2904. creation of tasks with multiple actions.
  2905. * Major revision of <wsdltodotnet>. Supports mono wsdl and the microsoft
  2906. wsdl run on mono, as well as most of the .NET WSE2.0 options. Extra
  2907. schemas (files or urls) can be named in the <schema> element.
  2908. Compilers can be selected using the compiler attribute, which defaults
  2909. to "microsoft" on windows, and "mono" on everything else.
  2910. * It is now possible to specify the pattern created/parsed by <checksum>.
  2911. Bugzilla Report 16539.
  2912. * Added a new "failall" value for the onerror attribute of <typedef>.
  2913. Bugzilla report 31685.
  2914. * unzip/unwar/unjar/untar now supports a nested mapper, which lets you unzip
  2915. in useful ways.
  2916. * Junit task -- display suite first.
  2917. Bugzilla report 31962.
  2918. * Added isSigned condition and signedselector selector
  2919. Bugzilla report 32126.
  2920. * Added preserveLastModified attribute to signjar task.
  2921. Bugzilla report 30987.
  2922. * Added <scriptcondition> condition, for inline scripted conditions
  2923. * Added <xor> condition for exclusive-or combining of nested conditions.
  2924. * Added <scriptselector> selector for scripted file selection
  2925. * ant -diagnostics lists contents of ${user.home}/.ant/lib , and
  2926. checks that the java.io.tmpdir directory exists and is writeable.
  2927. * mail task accepts nested header element. Bugzilla report 24713.
  2928. * zip/jar/war/ear supports level attribute for deflate compression level.
  2929. Bugzilla report 25513.
  2930. * Added loginputstring attribute to the redirector type.
  2931. * Tighten security by sending storepass and keypass to signjar
  2932. via the input stream of the forked process.
  2933. * New task <schemavalidate> extends <xmlvalidate> with extra support
  2934. for XML Schema (XSD) files.
  2935. * <fixcrlf> supports a file attribute for easy fixup of a single file.
  2936. * New condition <parsersupports> which can look for XML parser feature or
  2937. property support in the parser Ant is using.
  2938. * fixcrlf can be used in a filterchain.
  2939. * <sync> has a new nested element <preserveInTarget> that can be used
  2940. to protect extra-content in the target directory. Bugzilla Report
  2941. 21832.
  2942. * <signjar> now supports:
  2943. -nested filesets at the same time as the jar attribute
  2944. -a destDir attribute with the appropriate dependency logic, which
  2945. can be used with the jar attribute or nested filesets
  2946. -a mapper to permit filename remapping on signing
  2947. -tsaurl and tsacert attributes for timestamped JAR signing
  2948. -nested <sysproperty> elements, which can be used for proxy setup
  2949. and the like
  2950. * The linecontains and linecontainsregexp filterreaders now support a
  2951. negate attribute to select lines -not- containing specified text.
  2952. Bugzilla Report 34374.
  2953. * <os> condition adds "winnt" as a family which can be tested. This is
  2954. all windows platforms other than the Win9x line or Windows CE.
  2955. * <exec> (and hence, <apply> and any other derived classes) have an OsFamily
  2956. attribute, which can restrict execution to a single OS family.
  2957. * Added "backtrace" attribute to macrodef. Bugzilla report 27219.
  2958. * Ant main provides some diagnostics if it ever sees a -cp or -lib option,
  2959. as this is indicative of a script mismatch. Bugzilla report 34860
  2960. * <junitreport> prints a special message if supplied an empty XML File. This
  2961. can be caused by the test JVM exiting during a test, either via a
  2962. System.exit() call or a JVM crash.
  2963. * Project name is now used for *all* targets so one can write consistent import
  2964. build files. Bugzilla report 28444.
  2965. * New condition <typefound> that can be used to probe for the declaration
  2966. and implementation of a task, type, preset, macro, scriptdef, whatever.
  2967. As it tests for the implementation, it can be used to check for optional
  2968. tasks being available.
  2969. * Check for 1.5.* Ant main class. (weblogic.jar in classpath reports)
  2970. * New condition <isfailure> that tests the return-code of an executable. This
  2971. contains platform-specific logic and is better than comparing the result with
  2972. "0".
  2973. * Added initial support for Resource Collections, including the
  2974. resourcecount task.
  2975. * property attribute of pathconvert is now optional. If omitted the
  2976. result will be written to the log.
  2977. * New mapper, <scriptmapper>, supports scripted mapping of source files/strings
  2978. to destination strings.
  2979. * Add the echoxml task. This will echo nested XML to a file, with
  2980. the normal <?xml ?> processor instruction. UTF-8 encoding only; no-namespace
  2981. support.
  2982. * Try to make subprojects of custom Project subclasses instances of the
  2983. same type. Bugzilla report 17901.
  2984. * <ssh> and <scp> support keyboard-interactive authentication now.
  2985. * <javadoc> now supports -breakiterator for custom doclets if Ant is
  2986. running on JSE 5.0 or higher. Bugzilla Report: 34580.
  2987. * New logger, TimestampedLogger, that prints the wall time that a build
  2988. finished/failed. Use with
  2989. -logger org.apache.tools.ant.listener.TimestampedLogger
  2990. * <junitreport> now generates pages alltests-errors.html and
  2991. alltests-fails.html, that list only the errors and failures, respectively.
  2992. Bugzilla Report: 36226
  2993. * New task <makeurl> that can turn a file reference into an absolute file://
  2994. url; and nested filesets/paths into a (space, comma, whatever) separated
  2995. list of URLs. Useful for RMI classpath setup, amongst other things.
  2996. * <xslt> now accepts nested FileNameMappers e.g. <globmapper>.
  2997. Bugzilla report 37604.
  2998. * New task <loadresource> that accompanies <loadfile> for non file resources.
  2999. * <echo> now supports an encoding when saving to a file.
  3000. * New GreedyInputHandler added.
  3001. * Add textfile attribute to the <filesmatch> condition. When true, the text
  3002. contents of the two files are compared, ignoring line ending differences.
  3003. * New <resourcesmatch> condition.
  3004. * Added the onmissingfiltersfile attribute to filterset. Bugzilla report 19845.
  3005. * Added the inline handler element to the input task.
  3006. * <sql> supports property expansion if you set the expandProperties
  3007. attribute. By default it does not expand properties, something we
  3008. dare not change for fear of breaking complex SQL operations in
  3009. existing files.
  3010. * <javadoc>'s packagenames attribute is now optional and defaults to "*".
  3011. * <javac>'s source and target attributes as well as <javadoc>'s source
  3012. attribute will read default values from the properties
  3013. ant.build.javac.source and ant.build.javac.target.
  3014. * Handling of ' ', '#' in CLASSPATH and '#' in -lib (cannot use ' '
  3015. in -lib on UNIX at the moment). Bugzilla Report 39295.
  3016. * <scp> now optionally supports the sftp protocol. Bugzilla Report 39373.
  3017. * Resources can now be used to indicate the location of the stylesheet to use
  3018. in <xslt>. Bugzilla Report 39407.
  3019. * New <antversion> condition. Bugzilla report 32804.
  3020. * ReplaceTokens should allow properties files. Bugzilla report 39688.
  3021. * FTP Account could not be specified in ant FTP task. Bugzilla report 39720.
  3022. * Minor performance updates. Bugzilla report 39565.
  3023. * New deleteonexit attribute for the <tempfile> task. Bugzilla report 39842.
  3024. Remember that the exit of the JVM can be a long time coming,
  3025. especially under an IDE. Don't rely on this being called.
  3026. * <scriptdef>-created scripts have support for nested text. All text
  3027. passed to a scripted task can be accessed via self.text.
  3028. * <fixcrlf> now supports an outputencoding attribute. Bugzilla report 39697.
  3029. * <junitreport> now supports nested XSL parameters. Bugzilla report 39708.
  3030. * <javacc> has a jdkversion attribute to pass the desired JDK version
  3031. down to javacc. Bugzilla report 38715.
  3032. * <cvs> prints passfile info at -verbose level instead of -info. Bugzilla
  3033. report 35268
  3034. * When <javac> can't find the compiler class, it prints out java.home for
  3035. immediate diagnostics
  3036. * Ant launcher now supports a -main attribute so that you can specify
  3037. an extension class to the built in org.apache.tools.ant.Main
  3038. class. This class must implement the interface AntMain
  3039. Changes from Ant 1.6.4 to Ant 1.6.5
  3040. ===================================
  3041. Changes that could break older environments:
  3042. --------------------------------------------
  3043. Fixed bugs:
  3044. -----------
  3045. * <move> was unable to replace existing files or write into
  3046. existing directories. Bugzilla report 34962.
  3047. * <macrodef> with redefined default values was incorrect. (Fix for
  3048. 31215 had a bug). Bugzilla report 35109.
  3049. * <javadoc> will convert backslashes to forwardslashes when generating file
  3050. list by useexternalfile. Bugzilla report 27814.
  3051. Changes from Ant 1.6.3 to Ant 1.6.4
  3052. ===================================
  3053. Changes that could break older environments:
  3054. --------------------------------------------
  3055. * <ftp> task has had a number of changes. Uptodate calculation previously
  3056. did not call a file uptodate if the source timestamp and the destination
  3057. timestamp were equal. Bugzilla report 34941. Any script that attempted
  3058. to compensate for this by using the timediffmillis attribute might need
  3059. to be tweaked.
  3060. Fixed bugs:
  3061. -----------
  3062. * Sun javah failed with java.lang.NoClassDefFoundError.
  3063. Bugzilla report 34681.
  3064. * DirectoryScanner.slowScan() was broken. Bugzilla report 34722.
  3065. * DirectoryScanner.scan() could throw a NullPointerException on
  3066. case-insensitive filesystems (read Windows or MacOS X).
  3067. * Get w/authentication failed with ArrayOutOfBoundsExceptions.
  3068. Bugzilla report 34734.
  3069. * Granularity attribute for <sync> task was undocumented.
  3070. Bugzilla report 34871.
  3071. * <unzip> and <untar> could leave file handles open on invalid
  3072. archives. Bugzilla report 34893.
  3073. * propertyset threw NPE with nested, mapped propertysets.
  3074. Other changes:
  3075. --------------
  3076. * AntXMLContext.setCurrentTargets() is now public. Bugzilla report 34680.
  3077. Changes from Ant 1.6.2 to Ant 1.6.3
  3078. ===================================
  3079. Changes that could break older environments:
  3080. --------------------------------------------
  3081. * The subant task used the canonical version of a file path. This
  3082. has been changed to use the absolute path. Bugzilla 30438.
  3083. * Tar now writes two EOF blocks rather than one.
  3084. Bugzilla report 28776
  3085. * The Reference object now has a project field which it uses in preference
  3086. to the project passed in. This allows composite references to be
  3087. handled to nested projects.
  3088. Bugzilla report 25777
  3089. * <junit> with filtertrace="true" will now also swallow lines for the
  3090. sun.reflect package. If you need to see them in your stack trace,
  3091. you must set filtertrace to false.
  3092. Bugzilla Report 22758
  3093. * The jikes compiler adapter now supports -bootclasspath, -extdirs and
  3094. -sourcepath and also uses the same logic for debug flags as javac.
  3095. This means, the jikes compiler adapter now requires Jikes 1.15 or later.
  3096. Bugzilla Reports 25868, 26404 and 32609.
  3097. * The gcj compiler adapter used to include the Java runtime classes
  3098. even if includeJavaRuntime was set to false, unless the
  3099. bootclasspath has been specified as well. It will now always adhere
  3100. to includeJavaRuntime, you may need to set it to true explicitly now
  3101. if you relied on the old behavior.
  3102. Other changes:
  3103. --------------
  3104. * <javadoc> can now take an attribute 'executable'. Bugzilla report 30606.
  3105. * New attribute ignorecontents for <different> selector
  3106. * Javadoc fixes for Location, Project, and RuntimeConfigurable
  3107. Bugzilla 30160.
  3108. * Enable to choose the regexp implementation without system property.
  3109. Bugzilla Report 15390.
  3110. * Expose objects and methods in IntrospectionHelper. Bugzilla Report 30794.
  3111. * Allow file attribute of <move> to rename a directory.
  3112. Bugzilla Report 22863.
  3113. * Add xmlcatalog nested element to XmlProperty. Bugzilla report 27053.
  3114. * New attribute alwayslog for <redirector> type.
  3115. * Added <target> nested elements to <ant> and <antcall> to allow
  3116. specification of multiple sub-build targets, which are executed
  3117. with a single dependency analysis.
  3118. * Refactored Target invocation into org.apache.tools.ant.Executor
  3119. implementations. Bugzilla Reports 21421, 29248.
  3120. * <rmic> now also supports Kaffe's rmic version shipping with Kaffe
  3121. 1.1.2 and above.
  3122. * added casesensitive attribute to <globmapper> and <regexpmapper>
  3123. Bugzilla report 16686
  3124. * added handledirsep attribute to <globmapper> and <regexpmapper>
  3125. Bugzilla report 32487
  3126. * added a new mapper <filtermapper>
  3127. * When a BuildListener tried to access System.err or System.out, Ant
  3128. would have thrown an exception - this has been changed. Ant now
  3129. silently ignores the message. BuildListeners still should avoid
  3130. accessing either stream.
  3131. * Added a comment attribute to the zip task.
  3132. Bugzilla report 22793.
  3133. * Overloaded FileUtils.createNewFile with a boolean mkdirs attribute
  3134. to create nonexistent parent directories.
  3135. * <apply> has a new "force" attribute that, when true, disables
  3136. checking of target files.
  3137. * Made the dest attribute of the apply task optional; mapped target
  3138. filenames will be interpreted as absolute pathnames when dest is omitted.
  3139. * Changed default tempdir for <javac> from user.dir to java.io.tmpdir.
  3140. * Added searchpath attribute to <exec> for searching path variable(s)
  3141. when resolveexecutable = true.
  3142. * Added revision and userid attributes to <pvcs> documentation.
  3143. * Added support to the touch task for a mkdirs attribute to create
  3144. nonexistent parent directories before touching new files.
  3145. * Added support to the touch task for a pattern attribute to allow
  3146. alternate datetime formats.
  3147. * Added support to the touch task to map touched files using a nested
  3148. mapper element.
  3149. * Added support to the touch task for a verbose attribute to suppress
  3150. logging of new file creation.
  3151. * bad link in docs to the enhancement page in bugzilla.
  3152. Bugzilla report 33252.
  3153. * Added length task to get strings' and files' lengths.
  3154. * <native2ascii> and <javah> now also support Kaffe's versions.
  3155. * Recursive token expansion in a filterset can now be disabled by
  3156. setting its recurse attribute to false.
  3157. * Pathconvert no longer requires that one of (targetos|pathsep|dirsep)
  3158. be set; platform defaults are used when this is the case.
  3159. * Added preservelastmodified attribute to fixcrlf task. Bugzilla 25770.
  3160. * Added isfileselected condition.
  3161. * Added verbose="true|false" attribute to <subant>. When verbose is enabled,
  3162. the directory name is logged on entry and exit of the sub-build.
  3163. Bugzilla 33787.
  3164. * Added -nouserlib option to allow running ant without automatically loading
  3165. up ${user.home}/.lib/ant. This is useful when compiling ant, and antlibs.
  3166. Modified the build.sh and build.bat to use the option.
  3167. * Added -noclasspath option to allow running ant WITHOUT using CLASSPATH env
  3168. variable. Modified ant.bat to do this so that %CLASSPATH% is not looked at.
  3169. * Add else attribute to the condition task, which specifies an
  3170. optional alternate value to set the property to if the nested
  3171. condition evaluates to false. Bugzilla report 33074.
  3172. * Ant generated jar files should now be detected as jar files by
  3173. Solaris. Bugzilla Report 32649.
  3174. * <rexec> with a single command should now work with unusal login
  3175. dialogs without special read/write pairs. Bugzilla Report 26632.
  3176. * <csc>'s extraoptions can now contain multiple arguments.
  3177. Bugzilla Report 23599.
  3178. * <macrodef> with default values set by properties would be
  3179. seen as new definitions when called twice with different properties.
  3180. This was confusing so the definitions are now treated as similar.
  3181. Bugzilla Report 31215.
  3182. * <javadoc> has a new attribute "includenosourcepackages" that can be
  3183. used to document packages that don't hold source files but a
  3184. package.html file. Bugzilla Report 25339.
  3185. * <rpm> has new attributes failonerror and quiet.
  3186. * Added two tutorials
  3187. - beginner: introduction into Ant
  3188. - task developers: using path, fileset etc
  3189. * a number of new attributes that allow the user to handle non-standard
  3190. server listing formats and time zone differences have been added in
  3191. the <ftp> task.
  3192. Fixed bugs:
  3193. -----------
  3194. * Do not pass on ThreadDeath when halting <java fork="false">. Bugzilla
  3195. 32941.
  3196. * Killing a thread running <java fork="true"> (e.g. from an IDE) would
  3197. not stop the forked process. Bugzilla 31928.
  3198. * Programs run with <java fork="true"> can now accept standard input
  3199. from the Ant console. (Programs run with <java fork="false"> could
  3200. already do so.) Bugzilla 24918.
  3201. * AbstractCvsTask prematurely closed its outputStream and errorStream.
  3202. Bugzilla 30097.
  3203. * Impossible to use implicit classpath for <taskdef>
  3204. when Ant core loader != Java application loader and
  3205. Path.systemClassPath taken from ${java.class.path} Bugzilla 30161.
  3206. * MacroInstance did not clean up nested elements correctly in the execute
  3207. method, causing multiple use of the same macro instance with nested
  3208. elements to fail.
  3209. * checksum fileext property doc wrong. Bugzilla 30787.
  3210. * FTP task, getTimeDiff method was returning wrong value. Bugzilla 30595.
  3211. * make sure that Zip and its derivatives call the createEmptyZip method when
  3212. there are no resources to zip/jar/...
  3213. * Zip task was not zipping when only empty directories were found.
  3214. Bugzilla 30365.
  3215. * Jar task was not including manifest files when duplicate="preserve" was
  3216. chosen. Bugzilla 32802.
  3217. * ant.bat was missing runAntNoClasspath label for goto.
  3218. Bugzilla 34510.
  3219. * Classpath was treated in the same way as -lib options. Bugzilla 28046.
  3220. * Manual page for cvsversion contained incorrect attributes and did not
  3221. say since 1.6.1. Bugzilla 31408.
  3222. * Typo in definition of <cvsversion> task causing it not to be defined.
  3223. Bugzilla 31403.
  3224. * Execution of top level tasks in imported files get delayed by targets.
  3225. Bugzilla report 31487.
  3226. * ExecTask executes checkConfiguration() even though os does not match.
  3227. Bugzilla report 31805.
  3228. * Concat task instance could not be run twice.
  3229. Bugzilla report 31814.
  3230. * NPE using XmlLogger and antlib.
  3231. Bugzilla report 31840.
  3232. * Properties.propertyNames() should be used instead of .keys().
  3233. Bugzilla report 27261.
  3234. * Target location is not set for default target.
  3235. Bugzilla report 32267.
  3236. * Incorrect classloader parent in junittask when using with
  3237. ant-junit.jar and junit.jar not in the project classloader. Bugzilla
  3238. report 28474.
  3239. * getResources() on the classloader returned by ClasspathUtils would
  3240. see each resource twice - if the resource is in the project
  3241. classpath and if the classloader is requested with a null path.
  3242. * XMLValidate used URL#getFile rather than the ant method FileUtils#fromURI
  3243. Bugzilla report 32508
  3244. * fixed Regexp-Mapper docs which gave outdated instructions (optional.jar)
  3245. Bugzilla report 28584
  3246. * <scp> using <fileset> didn't work with OpenSSH 3.9 and later.
  3247. Bugzilla report 31939
  3248. * <setproxy> failed to set user/password on some JDKs.
  3249. Bugzilla report 32667
  3250. * untar would go into infinite loop for some invalid tar files.
  3251. Bugzilla report 29877
  3252. * forked <javac> won't pass -source to a JDK 1.1 or 1.2 javac anymore.
  3253. Bugzilla report 32948
  3254. * propertyset references did not handle nested propertyset references.
  3255. * oata.types.Description.getDescription(Project) would throw a
  3256. NullPointerException when the "ant.targets" reference was unset.
  3257. * Wrapper scripts did not detect WINNT value of dynamic OS environment
  3258. variable when logged into workstations using Novell authentication.
  3259. Bugzilla Report 30366.
  3260. * DependScanner.getResource() always returned nonexistent resources,
  3261. even when the resource actually existed. Bugzilla Report 30558.
  3262. * <apply> was broken with classfilesets. Bugzilla Report 30567.
  3263. * <available> returned false positives when checking a file
  3264. passed in with the current basedir leading twice:
  3265. e.g. ${basedir}${file.separator}${basedir}${file.separator}foo .
  3266. * The first file open that took place when using input files with the
  3267. <exec>, <apply>, or <java> tasks was always logged to System.out
  3268. instead of to the managing Task.
  3269. * <telnet> and <rexec> would try to disconnect from servers they never
  3270. connetced to, potentially leading to exceptions in commons-net.
  3271. Bugzilla Report 33618.
  3272. * <zip> would drop files matched by defaultexcludes during updates.
  3273. Bugzilla Report 33412.
  3274. * <zip> couldn't store files with size between 2GB and 4GB (the
  3275. upper limit set by the ZIP format itself). Bugzilla Report 33310.
  3276. * NPE when when <presetdef> tries to configure a task that
  3277. cannot be instantiated. Bugzilla Report 33689.
  3278. * <javac debug="false"> created an invalid command line when running
  3279. the Symantec Java compiler.
  3280. * Get with usetimestamp did not work on Java 1.2.
  3281. * Get with usetimestamp did not work when local timestamp roughly >= now.
  3282. * The framed JUnit report now handles multiple reports for the same
  3283. testcase properly. Bugzilla Report 32745.
  3284. * <cab> didn't work for files with spaces in their names on Windows.
  3285. Bugzilla Report 17182.
  3286. * The VAJ tasks could fail if the project name contained characters
  3287. that need to get URL encoded. Bugzilla Report 23322.
  3288. * TarInputStream#read() wasn't implemented correctly. Bugzilla Report
  3289. 34097.
  3290. * <xslt> failed to process file-hierarchies of more than one level if
  3291. scanincludeddirectories was true. Bugzilla Report 24866.
  3292. * forkmode="perBatch" or "once" would ignore extension attributes that
  3293. had been specified for <formatter>s. Bugzilla Report 32973.
  3294. * The refid attribute of the I/O redirector was not functional.
  3295. Changes from Ant 1.6.1 to Ant 1.6.2
  3296. ===================================
  3297. Changes that could break older environments:
  3298. --------------------------------------------
  3299. * The import task used the canonical version of a file path. This
  3300. has been changed to use the absolute path. Bugzilla 28505.
  3301. * ant-xalan2.jar has been removed since the only class contained in it
  3302. didn't depend on Xalan-J 2 at all. Its sole dependency has always
  3303. been TraX and so it has been merged into ant-trax.jar.
  3304. * All exceptions thrown by tasks are now wrapped in a buildexception
  3305. giving the location in the buildfile of the task.
  3306. * Nested elements for namespaced tasks and types may belong to the
  3307. Ant default namespace as well as the task's or type's namespace.
  3308. * <junitreport> will very likely no longer work with Xalan-J 1.
  3309. Note that Xalan-J 1 has been deprecated for a very long time and we
  3310. highly recommend that you upgrade.
  3311. If you really need to continue using Xalan-J 1, please copy the
  3312. junit-frames-xalan1.xsl from the distribution's etc directory as
  3313. junit-frames.xsl into a new directory and use the task's styledir
  3314. attribute to point to. This is the last version of the XSLT
  3315. stylesheet that is expected to be compatible with Xalan-J 1.
  3316. Fixed bugs:
  3317. -----------
  3318. * eliminate memory leak in AntClassLoader. Bugzilla Report 8689.
  3319. * subant haltonfailure=false did not catch all failures. Bugzilla Report 27007.
  3320. * macrodef @@ escaping was broken. Bugzilla Report 27069.
  3321. * MacroDef did not allow attributes named 'description'. Bugzilla Report 27175.
  3322. * Throw build exception if name attribute missing from patternset#NameEntry.
  3323. Bugzilla Report 25982.
  3324. * Throw build exception if target repeated in build file, but allow targets
  3325. to be repeated in imported files.
  3326. * <apply> didn't compare timestamps of source and targetfiles when
  3327. using a nested <filelist>. Bugzilla Report 26985.
  3328. * tagdiff.xml was broken in ant 1.6.1. Bugzilla Report 27057.
  3329. * if the basedir contained .. or . dirs, and the build file name contained
  3330. .. or ., the basedir was set incorrectly. Bugzilla Report 26765.
  3331. * regression from ant 1.5, exec task outputted two redundant trailing newlines.
  3332. Bugzilla Report 27546.
  3333. * NPE when running commons listener. Bugzilla Report 27373.
  3334. * <java> swallowed the stack trace of exceptions thrown by the
  3335. executed program if run in the same VM.
  3336. * -projecthelp swallowed (configuration) errors silently.
  3337. Bugzilla report 27732.
  3338. * filterset used by filtertask doesn't respect loglevel. Bugzilla Report 27568.
  3339. * wrong compare used in ProjectComponent for logging. Bugzilla Report 28070.
  3340. * failOnAny attribute for <parallel> was broken. Bugzilla Report 28122.
  3341. * If <javac> uses gcj and any of the nested <compilerarg>s implies
  3342. compilation to native code (like -o or --main), Ant will not pass
  3343. the -C switch to gcj. This means you can now compile to native code
  3344. with gcj which has been impossible in Ant < 1.6.2.
  3345. * <import optional="false"> and <import optional="true">
  3346. behaved identically.
  3347. * <xslt> now sets the context classloader if you've specified a nested
  3348. <classpath>. Bugzilla Report 24802.
  3349. * <zip> and friends would delete the original file when trying to update
  3350. a read-only archive. Bugzilla Report 28419.
  3351. * <junit> and <assertions> are working together. Bugzilla report 27218
  3352. * AntClassLoader#getResource could return invalid URLs. Bugzilla
  3353. Report 28060.
  3354. * Ant failed to locate tools.jar if the jre directory name wasn't all
  3355. lowercase. Bugzilla Report 25798.
  3356. * Redirector exhibited inconsistent behavior with regard to split
  3357. output. When sent to file only, files would be created in all
  3358. cases; when split file-property, files were only created if
  3359. writes were performed.
  3360. * fixed case handling of scriptdef attributes and elements.
  3361. * UNC pathnames did not work for ANT_HOME or -lib locations on Windows.
  3362. Bugzilla report 27922.
  3363. * replacestring tokenfilter only replaced the first occurrence.
  3364. * AntLikeTasksAtTopLevelTest failed on cygwin.
  3365. * I/O-intensive processes hung when executed via <exec spawn="true">.
  3366. Bugzilla reports 23893/26852.
  3367. * JDependTask did not close an output file. Bugzilla Report 28557.
  3368. * Using <macrodef> could break XmlLogger. Bugzilla Report 28993.
  3369. * <genkey> no longer requires keytool to be in your PATH. Bugzilla
  3370. Report 29382.
  3371. * <symlink> could create cyclic links. Bugzilla Report 25181.
  3372. * <zip whenempty="skip"> didn't work in a common situation. Bugzilla
  3373. Report 22865.
  3374. * <scp> now properly handles remote files and directories with spaces
  3375. in their names. Bugzilla Report 26097.
  3376. * <scp> now has (local|remote)tofile attributes to rename files on the
  3377. fly. Bugzilla Report 26758.
  3378. * <telnet> and <rexec> didn't close the session. Bugzilla Report 25935.
  3379. * <subant> and XmlLogger didn't play nicley together.
  3380. Other changes:
  3381. --------------
  3382. * doc fix concerning the dependencies of the ftp task
  3383. Bugzilla Report 29334.
  3384. * <xmlvalidate> has now a property nested element,
  3385. allowing to set string properties for the parser
  3386. Bugzilla Report 23395.
  3387. * Docs fixes for xmlvalidate.html, javadoc.html, starteam.
  3388. Bugzilla Reports 27092, 27284, 27554.
  3389. * <pathconvert> now accepts nested <mapper>s. Bugzilla Report 26364.
  3390. * Shipped XML parser is now Xerces-J 2.6.2.
  3391. * Added nested file element to filelist.
  3392. * spelling fixes, occurred. Bugzilla Report 27282.
  3393. * add uid and gid to tarfileset. Bugzilla Report 19120.
  3394. * <scp> has a verbose attribute to get some feedback during the
  3395. transfer and new [local|remote][File|Todir] alternatives to file and
  3396. todir that explicitly state the direction of the transfer.
  3397. * The OS/2 wrapper scripts have been adapted to use the new launcher.
  3398. Bugzilla Report 28226.
  3399. * <sshexec> now also captures stderr output. Bugzilla Report 28349.
  3400. * <xslt> now supports a nested <mapper>. Bugzilla Report 11249.
  3401. * <touch> has filelist support.
  3402. * <nice> task lets you set the priority of the current thread; non-forking
  3403. <java> code will inherit this priority in their main thread.
  3404. * New attribute "negate" on <propertyset> to invert selection criteria.
  3405. * Target now supports a Location member. Bugzilla Report 28599.
  3406. * New "pattern" attribute for <date> selector.
  3407. * <junit> has a new forkmode attribute that controls the number of
  3408. Java VMs that get created when forking tests. This allows you to
  3409. run all tests in a single forked JVM reducing the overhead of VM
  3410. creation a lot. Bugzilla Report 24697.
  3411. * <jar> can now optionally create an index for jars different than the
  3412. one it currently builds as well. See the new <indexjars> element
  3413. for details. Bugzilla Report 14255.
  3414. * Permit building under JDK 1.5. Bugzilla Report 28996.
  3415. * minor Javadoc changes. Bugzilla Report 28998.
  3416. * Misc. corrections in SignJar.java. Bugzilla Report 28999.
  3417. * Remove redundant <hr> from javah.html. Bugzilla Report 28995.
  3418. * Ignore built distributions. Bugzilla Report 28997.
  3419. * A new roundup attribute on <zip> and related task can be used to
  3420. control whether the file modification times inside the archive will
  3421. be rounded up or down (since zips only store modification times with
  3422. a granularity of two seconds). The default remains to round up.
  3423. Bugzilla Report 17934.
  3424. * A binary option has been added to <concat>. Bugzilla Report 26312.
  3425. * Added DynamicConfiguratorNS, an namespace aware version of
  3426. DynamicConfigurator. Bugzilla Report 28436.
  3427. * Add implicit nested element to <macrodef>. Bugzilla Report 25633.
  3428. * Add deleteonexit attribute to <delete>.
  3429. * Added Target.getIf/Unless(). Bugzilla Report 29320.
  3430. * <fail> has a status attribute that can be used to pass an exit
  3431. status back to the command line.
  3432. * <fail> accepts a nested <condition>.
  3433. * <loadproperties> supports loading from a resource.
  3434. Bugzilla Report 28340.
  3435. * Nested file mappers and a container mapper implementation have been
  3436. introduced. Additionally, the <mapper> element now accepts "defined"
  3437. nested FileNameMapper implementations directly, allowing a usage
  3438. comparable to those of <condition>, <filter>, and <selector>.
  3439. * New <redirector> type introduced to provide extreme I/O flexibility.
  3440. Initial support for <exec>, <apply>, and <java> tasks.
  3441. * <apply> has a new ignoremissing attribute (default true for BC)
  3442. which will allow nonexistent files specified via <filelist>s to
  3443. be passed to the executable. Bugzilla Report 29585.
  3444. * <junitreport> now also works with Xalan XSLTC and/or JDK 1.5.
  3445. Bugzilla Report 27541.
  3446. * <jspc> doesn't work properly with Tomcat 5.x. We've implemented a
  3447. work-around but don't intend to support future changes in Tomcat
  3448. 5.x. Please use the jspc task that ships with Tomcat instead of
  3449. Ant's.
  3450. Changes from Ant 1.6.0 to Ant 1.6.1
  3451. =============================================
  3452. Changes that could break older environments:
  3453. --------------------------------------------
  3454. * License is now Apache License 2.0
  3455. see http://www.apache.org/licenses/ for more information
  3456. Fixed bugs:
  3457. -----------
  3458. * Remove a recursive template call in the junit xsls that could trigger a stack
  3459. overflow. It now uses Xalan extensions to call a Java class directly.
  3460. Bugzilla Report 19301
  3461. * Fix spurious infinite loop detection for filters (introduced in ant 1.6.0).
  3462. Bugzilla Report 23154.
  3463. * Fix handling of default ant namespace for nested elements.
  3464. * Fix jboss element of ejb task (introduced in ant 1.6.0).
  3465. * <whichresource> failed to load classes correctly.
  3466. * Ant could fail to start with a NullPointerException if
  3467. ANT_HOME/lib/ant-launcher.jar was part of the system CLASSPATH.
  3468. * presetdef'ed types did not work with the ant-type attribute
  3469. * fixed case handling of macrodef attributes and elements. Bugzilla
  3470. Reports 25687 and 26225.
  3471. * <java> ignored the append attribute, Bugzilla Report 26137.
  3472. * The gcj compiler adapter for <javac> failed if the destination
  3473. directory didn't exist. Bugzilla Report 25856.
  3474. * Ant now fails with a more useful message if a new process will be
  3475. forked in a directory and that directory doesn't exist.
  3476. * <splash> used to break the build on non-GUI environments. Bugzilla
  3477. report 11482.
  3478. * Ant 1.6.0 cannot run build scripts in directories with non-ASCII names.
  3479. Bugzilla Report 26642.
  3480. Other changes:
  3481. --------------
  3482. * Shipped XML parser is now Xerces-J 2.6.1
  3483. * Translate task logs a debug message specifying the number of files
  3484. that it processed. Bugzilla Report 13938.
  3485. * <fixcrlf> has a new attribute - fixlast. Bugzilla Report 23262.
  3486. * <p4submit> has 2 new attributes, needsresolveproperty and changeproperty.
  3487. Bugzilla Report 25711.
  3488. * add description attributes to macrodef attributes and elements.
  3489. Bugzilla Report 24711.
  3490. * Extending ClearCase Tasks :
  3491. - Added an extra option to 'failonerr' to each ClearCase task/command.
  3492. - Extended the functionality of cccheckout. It can check (notco) to see if
  3493. the desired element is already checked out to the current view. Thus it
  3494. won't attempt to check it out again.
  3495. - Added three new ClearCase commands: ccmkattr, ccmkdir, ccmkelem
  3496. Bugzilla Report 26253.
  3497. * added nested text support to <macrodef>
  3498. * added initial support for Java 1.5. Java 1.5 is now correctly
  3499. detected by Ant and treated just like Java 1.4. You can now specify
  3500. source="1.5" in the <javac> task.
  3501. * created new task <cvsversion>
  3502. * added support for branch logging via the tag attribute in <cvschangelog>
  3503. Bugzilla Report 13510.
  3504. * added support the groovy language in the script and scriptdef tasks
  3505. Changes from Ant 1.5.4 to Ant 1.6.0
  3506. ===================================
  3507. Changes that could break older environments:
  3508. --------------------------------------------
  3509. * This version of Ant can not be built with JDK 1.1 and requires at
  3510. least Java 1.2 at runtime as well. Compiling for a 1.1 target is
  3511. still supported.
  3512. * Targets cannot have the empty string as their name any longer.
  3513. * ant.jar's manifest does no longer include a Class-Path entry, so it
  3514. is no longer possible to run Ant via "java -jar ant.jar" without
  3515. manually altering the CLASSPATH. Instead of that a file
  3516. ant-bootstrap.jar is included in the etc directory of the binary
  3517. distribution, copy this to the lib directory and use
  3518. "java -jar ant-bootstrap.jar" instead if you want to run Ant without
  3519. the wrapper script (not recommended).
  3520. * The <script> task now requires Apache BSF instead of the older IBM
  3521. version. See <http://jakarta.apache.org/bsf/>
  3522. * <xmlproperty> will no longer fail if the file to be loaded doesn't exist.
  3523. * XML namespaces are now enabled in the XML parser, meaning XML namespace
  3524. declarations no longer cause errors. However task names containing colons
  3525. will cause errors unless there is a corresponding namespace uri.
  3526. * The <ftp> and <telnet> tasks now require Jakarta Commons Net instead
  3527. of the older ORO Netcomponents version. See
  3528. <http://jakarta.apache.org/commons/net/index.html>.
  3529. * <input> will no longer prompt the user and wait for input if the
  3530. addproperty attribute is set to a property that has already been
  3531. defined in the project. If you rely on the task waiting for input,
  3532. don't use the addproperty attribute.
  3533. * The Class-Path attribute in manifests will no longer merge the
  3534. entries of all manifests found, but will be treated like all other
  3535. manifest attributes - the most recent attribute(s) will be used.
  3536. * New Launch mechanism implemented. This moves some functionality from
  3537. the batch files / shell scripts into Java. This removes environment
  3538. limitations, for command issues, directory depth issues on Windows. Also
  3539. allows a per-user library location to be used if the main Ant install
  3540. is locked down.
  3541. * The Entry nested element of PropertyFile will not any more have its value
  3542. attribute (actually increment) overwritten with the new value of the entry
  3543. after execution.
  3544. * Output stored from a <java> or <exec> task is now exactly as generated. No
  3545. conversion to platform end-of-line characters is performed.
  3546. * <translate> will now preserve line endings.
  3547. * <ftp> followsymlinks="false" in nested fileset definitions is explicitly
  3548. required in order to exclude remote symbolic links (when doing a get, chmod,
  3549. delete, rmdir).
  3550. * The values of the Copy#fileCopyMap variable has changed from String to
  3551. String[]. (In java 1.5 terms it was Hashtable<String, String> and
  3552. is now Hashtable<String, String[]>). This will affect third party code
  3553. that extend Copy and override Copy#doFileOperations.
  3554. * <loadproperties> didn't expand properties while <property file="..."/>
  3555. does, so they were not equivalent. This has been fixed, which means
  3556. that propetries may get expanded twice if you use an
  3557. <expandproperties> filterreader. Bugzilla Report 17782.
  3558. * User defined tasks and typedefs are now handled internally in the
  3559. same way as predefined tasks and typedefs. Also tasks and typedefs
  3560. are resolved at a later stage. This causes some
  3561. differences especially for user defined task containers.
  3562. * <checksum> log message "Calculating checksum ..." has been degraded
  3563. from INFO to VERBOSE.
  3564. Fixed bugs:
  3565. -----------
  3566. * Filter readers were not handling line endings properly. Bugzilla
  3567. Report 18476.
  3568. * Filtersets were also not handling line endings properly.
  3569. * Expand tasks did not behave as expected with PatternSets.
  3570. * <property environment=... /> now works on OS/400.
  3571. * <cab> could hang listcab on large <fileset>s.
  3572. * The starteam stcheckout, stcheckin tasks now correctly compute
  3573. status of files against whatever local tree they are run against
  3574. and, optionally, will not process a file if it is current.
  3575. Previously you had to process everything unless you ran against the
  3576. default folder which wasn't the normal use-case for ant-starteam.
  3577. The stlist task now similarly displays that status correctly making
  3578. it a more generally useful tool.
  3579. * entity includes would cause exceptions if path names included spaces.
  3580. * addConfiguredXXX would not work for TaskAdapter wrapped tasks
  3581. * Fix <ilasm> outputfile testing so that the output file does not need
  3582. to exist beforehand.
  3583. * Ant will now exit with a return code of 1 if it encounters problems
  3584. with the command line arguments.
  3585. * ClassLoader creation changes to use a factory method in Project. A new
  3586. class AntClassLoader2 implemented for 1.2+ specific features including
  3587. Package information and addition of classes specified in the Class-Path
  3588. element of a Jar's manifest.
  3589. * It is now possible in <exec> to resolve the executable to a project
  3590. basedir or execution dir relative executable. The resolveExecutable
  3591. must be used to pick up such executables.
  3592. * splash screen wouldn't disappear when build was finished.
  3593. * <exec> output and error streams can now be redirected independently
  3594. to either a property or a file (or both)
  3595. * TarEntry's File-arg constructor would fail with a
  3596. StringIndexOutOfBoundsException on all OSes where os.name is shorter
  3597. than seven characters. Bugzilla Report 18105.
  3598. * <copy> and <move>'s failonerror didn't apply to filesets pointing to
  3599. non-existent directories. Bugzilla Report 18414.
  3600. * The <stripjavacomments> filter sometimes removed parts of string
  3601. constants. Bugzilla Report 17441.
  3602. * <antlr> will now recompile your grammar if the supergrammar has
  3603. changed. Bugzilla Report 12691.
  3604. * <property env> will now work on Unices with /bin/env instead of
  3605. /usr/bin/env. Bugzilla Report 17642.
  3606. * <jar index="on"> could include multiple index lists. Bugzilla 10262.
  3607. * The index created by <jar> didn't conform to the spec as it didn't
  3608. include the top-level entries. Bugzilla Report 16972.
  3609. * <tar> and <zip> didn't honor the defaultexcludes attribute for the
  3610. implicit fileset. Bugzilla Report 18637.
  3611. * The <replacetokens> filter would throw an exception if the token's
  3612. value was an empty string. Bugzilla Report 18625.
  3613. * Perforce tasks relying on output from the server such as <p4change>
  3614. and <p4label> were hanging. Bugzilla Reports 18129 and 18956.
  3615. * Improve exception and logging behavior of Perforce tasks.
  3616. Bugzilla report 18154.
  3617. * build.sh install had a problem on cygwin (with REALANTHOME).
  3618. Bugzilla Report 17257
  3619. * <replaceregexp> didn't work for multi-byte encodings if byline was false.
  3620. Bugzilla Report 19187.
  3621. * <replaceregexp> was altering unnecessarily the timestamp of the directories
  3622. containing the files to process
  3623. Bugzilla Report 22541.
  3624. * file names that include spaces need to be quoted inside the @argfile
  3625. argument using forked <javac> and (all JDKS). Bugzilla Report 10499.
  3626. NB : a first correction was only introducing quotes for JDK 1.4
  3627. It has been changed to quote for all external compilers when paths
  3628. contain spaces.
  3629. Also the backslashes need to be converted to forward slashes
  3630. Bugzilla Report 17683.
  3631. * Setting filesonly to true in <zip> and related tasks would cause the
  3632. archives to be always recreated. Bugzilla Report 19449.
  3633. * file names that include spaces need to be quoted inside the @argfile
  3634. argument using <javadoc> and JDK 1.4. Bugzilla Report 16871.
  3635. * <junit> didn't work with custom formatters that were only available
  3636. on the user specified classpath when a timeout occurred. Bugzilla
  3637. Report 19953.
  3638. * <different> selector : make ignoreFileTimes effectively default to true
  3639. and fix a bug in the comparison of timestamps. Bugzilla Report 20205.
  3640. * <different> selector can now be nested directly under a fileset
  3641. Bugzilla Report 20220.
  3642. * <cvstagdiff> had a problem with "dd-MM-yy hh:mm:ss" formats
  3643. Bugzilla Report 15995.
  3644. * <cvstagdiff> cvsroot and package attributes added to the root
  3645. element tagdiff of the xml output
  3646. Bugzilla Report 16081.
  3647. * <cvstagdiff> had a problem with aliased modules and with requests for
  3648. multiple modules. Bugzilla Reports 21373 and 22877.
  3649. * <cvstagdiff> could not parse properly the revision number of new files with
  3650. CVS 1.11.9 or higher. Bugzilla Report 24406.
  3651. * <fixcrlf> make fixcrlf create its temporary files in the default directory
  3652. of FileUtils#createTempFile instead of the destination dir of fixcrlf.
  3653. Bugzilla Report 20870.
  3654. * <ejbjar> implementation for Borland.
  3655. Prevent the task from being blocked by error messages coming from java2iiop.
  3656. Bugzilla Report 19385.
  3657. * <unzip>'s and <untar>'s nested patternsets didn't work as documented
  3658. when the pattern ended in a slash or backslash. Bugzilla Report 20969.
  3659. * <fixcrlf> will now create the parent directories for the destination
  3660. files if necessary. Bugzilla Report 20840.
  3661. * <xmlproperty> now handles CDATA sections. BugZilla Report 17195
  3662. * <translate> now translate tokens that are placed close together.
  3663. Bugzilla Report 17297
  3664. * Nested websphere element for ejbjar does not support spaces in file name.
  3665. Bugzilla Report 21298
  3666. * Don't multiply Class-Path attributes when updating jars. Bugzilla
  3667. Report 21170.
  3668. * Do not overwrite the value (increment) attribute of PropertyFile nested
  3669. Entry element. Bugzilla Report 21505.
  3670. * Prevent sysproperties with no key or no value from being added in <junit>.
  3671. Bugzilla Report 21684.
  3672. * Allow references to be properly inherited via antcall
  3673. Bugzilla Report 21724.
  3674. * ftp chmod failed when the remote system was UNIX and local system Windows
  3675. Bugzilla Report 21865.
  3676. * ftp put with chmod failed when the remote system was UNIX and local system
  3677. Windows. Bugzilla Report 23143.
  3678. * ftp did not set the ascii mode explicitly, causing problems with ftp servers
  3679. having binary as default
  3680. * ftp was not able to download files when they were pointed to by symbolic
  3681. links. Bugzilla Report 14063.
  3682. * ftp is able to download also directories pointed to by symbolic links.
  3683. * replace would change \r\n into \r\r\n under Windows.
  3684. * junitreport with frames did not display a link for classes without a package
  3685. or in the top package.
  3686. Bugzilla Report 21915.
  3687. * Project.toBoolean(String) now handles null as argument and does not throw a
  3688. NullPointerException any more.
  3689. * The socket condition will now close the socket created to test.
  3690. Bugzilla Report 23040.
  3691. * <junit includeantruntime="true" fork="true"> replaced the CLASSPATH instead
  3692. of adding to it. Bugzilla Report 14971.
  3693. * <splash> could fail on JVMs that use null to indicate the system classloader.
  3694. Bugzilla Report 23320.
  3695. * <xmlcatalog>s only worked when defined inside of tasks. Bugzilla
  3696. Report 20965.
  3697. * <csc> and siblings (<vbc> <jsharpc>) handle large filesets by
  3698. automatic use of response files. Bugzilla report #19630
  3699. Other changes:
  3700. --------------
  3701. * Shipped XML parser is now Xerces 2.6.0
  3702. * All tasks can be used outside of <target>s. Note that some tasks
  3703. will not work at all outside of targets as they would cause infinite
  3704. loops (<antcall> as well as <ant> and <subant> if they invoke the
  3705. current build file).
  3706. * Six new Clearcase tasks added.
  3707. * A new filter reader namely tokenfilter has been added. Bugzilla
  3708. Report 18312.
  3709. * A new attribute named skip is added to the TailFilter and
  3710. HeadFilter filter readers.
  3711. * The filesetmanifest attribute of <jar> has been reenabled.
  3712. * The start and end tokens for <translate> may now be longer than a
  3713. single character.
  3714. * <setproxy> lets you set the username and password for proxies that
  3715. want authentication
  3716. * <loadproperties> has a new encoding attribute.
  3717. * <echoproperties> can now create XML output.
  3718. * <echoproperties> has a new srcfile attribute that can make it read
  3719. properties files and output them instead of Ant's properties.
  3720. * <filterset> will now resolve filters recursively.
  3721. * <input> has a new attribute that allows you to specify a default value.
  3722. * Added <image> task (requires JAI).
  3723. * <image> task has now proportions attribute in the <scale/> nested element
  3724. instead of keepproportions (bringing in more functionality)
  3725. * New condition <isreference>
  3726. * <ftp> now has a preservelastmodified attribute to preserve the
  3727. timestamp of a downloaded file.
  3728. * new rmdir action for <ftp> that removes directories from a fileset.
  3729. * <ftp> has attributes timediffauto and timediffmillis to use together
  3730. with the newer attribute to tell ant to take into account a time difference
  3731. between client and remote side.
  3732. Bugzilla Report 19358.
  3733. * <ftp> has been optimized to go directly to the include patterns.
  3734. This reduces scanning time under UNIX when followsymlinks="true"
  3735. and casesensitive="true" (the default)
  3736. Bugzilla Report 20103.
  3737. * The SOS and VSS tasks will no longer unconditionally prepend a $ to
  3738. vsspath or projectpath.
  3739. * OS/400 now gets detected by the os condition.
  3740. * <arg> has a new attribute pathref that can be used to reference
  3741. previously defined paths.
  3742. * <xmlproperty> has been improved, you can now expand ${properties},
  3743. define ids or paths and use Ant's location magic for filename resolutions
  3744. in the XML file.
  3745. * <xmlcatalog> will now support external catalogs according to the
  3746. OASIS "Open Catalog" standard - if resolver.jar (newer than version
  3747. 1.0) from Apache's xml-commons is in your CLASSPATH.
  3748. * Starteam tasks now have support for revision labels and build labels.
  3749. Checkouts now have the option of using repository timestamps, instead
  3750. of current.
  3751. * new task <symlink> that creates and maintains symbolic links.
  3752. * new tasks <chown> and <chgrp> which are wrappers of the Unix commands.
  3753. * new task <attrib> to change file attributes on Windows systems.
  3754. * <style> has a new attribute reloadstylesheet to work around a
  3755. bug in widespread Xalan versions.
  3756. * <tarfileset> has a new dirmode attribute to specify the permissions
  3757. for directories.
  3758. * <fixcrlf>'s eol attribute now also understands "mac", "unix" and "dos".
  3759. * <classfileset> now picks up dependencies of the form MyClass.class. This
  3760. works for the code generated by the Sun java compiler. It may not work for
  3761. all compilers.
  3762. * a new attribute "globalopts" can be added to all Perforce tasks.
  3763. You can put in it all the strings described by p4 help usage. Refer to
  3764. the docs for more information.
  3765. * new Perforce tasks <p4integrate> , <p4resolve>, and <p4labelsync>
  3766. * <p4submit> will change the property p4.change if the Perforce server
  3767. renumbers the change list.
  3768. It will set the property p4.needsresolve if the submit fails,
  3769. and the message says that file(s) need to be resolved.
  3770. * <replaceregexp> now has an optional encoding attribute to support
  3771. replacing in files that are in a different encoding than the
  3772. platform's default.
  3773. * The <exec> task may now have its input redirected from either a file
  3774. or a string from the build file. The error output can be separated
  3775. to a different file when outut is redirected. standard error may be
  3776. logged to the Ant log when redirecting output to a file
  3777. * The <java> task also supports the input redirection and separate
  3778. error streams introduced to the <exec> task. In addition, it is now
  3779. possible to save the output into a property for use within the build
  3780. file as was possible with <exec> in Ant 1.5
  3781. * The <javadoc> task <tag> subelement has been enhanced to allow files
  3782. with tag mappings to be used.
  3783. * New tasks: <scp> supports file transfers, <sshexec> executes a
  3784. command over SSH. They require jsch, a BSD licensed SSH library that
  3785. can be found at http://www.jcraft.com/jsch/index.html
  3786. * New filterreader <escapeunicode/>.
  3787. * Support for HP's NonStop Kernel (Tandem) OS has been added.
  3788. * <cab>'s basedir attribute is now optional if you specify nested
  3789. filesets. Bugzilla Report 18046.
  3790. * New task <sync> that synchronizes two directory trees.
  3791. * <apply> has new forwardslash attribute that can force filenames to
  3792. use forward slashes (/) as file separators even on platforms with a
  3793. different separator. This is useful if you want to run certain
  3794. ported Unix tools.
  3795. * Copy has a new outputencoding attribute that can be used to change
  3796. the encoding while copying files. Bugzilla Report 18217.
  3797. * The xml formatter for JUnit will now honor test case names set with
  3798. setName. Bugzilla Report 17040.
  3799. * JUnit now has an attribute reloading, which, when set to false,
  3800. makes the task reuse the same class loader for a series of tests.
  3801. * <concat> now supports filtering and can check timestamps before
  3802. overriding a file. Bugzilla Report 18166.
  3803. * <junit> has a new attribute tempdir that controls the placement of
  3804. temporary files. Bugzilla Report 15454.
  3805. * <jdepend> now supports a new nested element <classespath> which is
  3806. the same as <sourcespath> but point to compiled classes (the
  3807. preferred mode of operation for JDepend > 2.5). Additionally, nested
  3808. <exclude> elements can be used to exclude certain packages from
  3809. being parsed. Bugzilla Report 17134.
  3810. * The JProbe tasks now also work with JProbe 4.x. Bugzilla Report 14849.
  3811. * <javacc> and <jjtree> will now autodetect JavaCC 3.x and can use it.
  3812. * <sql> has a new attribute to control escape processing.
  3813. * <sql> is able to display properly several resultsets if you are
  3814. running a compound sql statement. Bugzilla Report 21594.
  3815. * A new <containsregexp> selector has been added, that selects files
  3816. if their content matches a certain regular expression.
  3817. * <antlr>'s debug attribute has been enabled. Bugzilla Report 19051.
  3818. * <mail> has a new attribute charset. Bugzilla Report 15434.
  3819. * <mail> has new attributes user and password for SMTP auth.
  3820. maillogger can also use this.
  3821. The implementation only works with JavaMail (encoding="MIME").
  3822. Implementation with plain mail remains to do.
  3823. Bugzilla Report 5969.
  3824. * <mail> and mailloger support SMTP over TLS/SSL
  3825. Bugzilla Report 19180.
  3826. * <mail> the attributes from, replyto ,tolist, cclist, bcclist
  3827. can now contain email addresses of the form name <address@xyz.com>
  3828. or (name) address@xyz.com
  3829. Bugzilla Report 22474.
  3830. * <mail> (version PlainMail)
  3831. prevent blank headers from being sent,
  3832. make the order of the headers of plain mail messages predictable
  3833. Bugzilla Report 22088.
  3834. * <zipfileset> can now be defined in the main body of a project
  3835. and referred to with refid="xyz". Bugzilla Report 17007.
  3836. * A wrapper script for OS/2 has been added.
  3837. * <unzip> will now detect and successfully extract self-extracting
  3838. archives. Bugzilla Report 16213.
  3839. * <stcheckout> has a new attribute "converteol" that can be used to
  3840. control the automatic line-end conversion performed on ASCII files.
  3841. Bugzilla Report 18884.
  3842. * Users can now modify the list of default excludes using the new
  3843. defaultexcludes task. Bugzilla Report 12700.
  3844. * There is a new data type <propertyset> that can be used to collect
  3845. properties. It is supported by <ant>, <antcall>, <subant>, <java>,
  3846. <echoproperties> and <junit>.
  3847. * <concat> can now control the encoding of the output as well and optionally
  3848. add new-line characters at the end of files that get concatenated but
  3849. don't end in newlines. Bugzilla Report 12511.
  3850. * <rpm> will detect the rpmbuild executable of RedHat 8.0 and newer
  3851. and use that if it is on your PATH. Bugzilla Report 14650.
  3852. * A new task <rexec> has been added that requires commons-net to work.
  3853. Bugzilla Report 19541.
  3854. * <javadoc> now supports a nested <arg> element in addition to the
  3855. additionalparams attribute.
  3856. * You can now determine the order of standard tags in <javadoc> via
  3857. <tag> elements - you must not use the description attribute for them.
  3858. Bugzilla Report 18912.
  3859. * <javadoc> now supports the -noqualifier switch. Bugzilla Report 19288.
  3860. * <javac>'s executable attribute can now also be used to specify the
  3861. executable for jikes, jvc, sj or gcj. Bugzilla Report 13814.
  3862. * <javac> has a new attribute tempdir that can control the placement
  3863. of temporary files. Bugzilla Report 19765.
  3864. * A new magic property build.compiler.jvc.extensions has been added
  3865. that can be used to turn of Microsoft extensions while using the jvc
  3866. compiler. Bugzilla Report 19826.
  3867. * You can now limit the parallelism of <apply> and <chmod> by using the new
  3868. maxparallel attribute.
  3869. * With the new addsourcefile attribute, you can make <apply> ommit the
  3870. source file names from the command line. Bugzilla Report 13654.
  3871. * <apply> and <chmod> now support nested <filelist>s as well as <dirset>s.
  3872. Bugzilla Reports 15929 and 20687.
  3873. * <apply> and <chmod> will display a summary if you set the new
  3874. verbose attribute to true. Bugzilla Report 19883.
  3875. * <copy>/<move>'s failonerror attribute can now also be used to
  3876. continue the build if an I/O error caused a problem. Bugzilla
  3877. Report 12999.
  3878. * new selector <type/> allowing to select only files or only directories.
  3879. Bugzilla Report 20222.
  3880. * <java> and <junit> now support a nested <bootclasspath> element that
  3881. will be ignored if not forking a new VM.
  3882. * <junit>'s nested <formatter> elements now support if/unless clauses.
  3883. * <ejbjar>
  3884. cmpversion attribute added
  3885. jboss element will look for jbosscmp-jdbc.xml descriptor
  3886. if ejbjar has cmpversion="2.0" set
  3887. Bugzilla Reports 14707 and 14709.
  3888. * <pvcs> config attribute added to set the location of a specific PVCS
  3889. .cfg file
  3890. Bugzilla Report 9752
  3891. * <mapper> has an "unpackage" mapper
  3892. Bugzilla Report 18908
  3893. * Added <scriptdef> task allowing tasks to be defined using any BSF-supported
  3894. scripting language.
  3895. * <touch>'s datetime attribute can now accept time with a granularity
  3896. of seconds as well. Bugzilla Report 21014.
  3897. * <checksum> has two new properties: totalproperty and todir.
  3898. * FileUtils#createTempFile will now create temporary files in the
  3899. directory pointed to by the property java.io.tmpdir
  3900. * <unzip> and friends now supports an optional encoding attribute to
  3901. enable it to expand archives created with filenames using an encoding
  3902. other than UTF8. Bugzilla Report 10504.
  3903. * <patch> has a new attribute destfile that can be used to create a new
  3904. file instead of patching files in place.
  3905. * OpenVMS is detected as a valid OS family.
  3906. * DirectoryScanner has been optimized for cases where include patterns do not
  3907. start with wildcards. Bugzilla Report 20103.
  3908. * DirectoryScanner begins to be optimized not to scan excluded directories.
  3909. Bugzilla Report 21941.
  3910. * Added keep-going feature. Bugzilla Report 21144
  3911. * The archives generated by <zip> and friends will now contain CRC and
  3912. size information in the "local file header", thereby providing this
  3913. information to applications that read the archives using
  3914. java.util.ZipInputStream. Bugzilla Report 19195.
  3915. * <copy> and <move> can now handle mappers that return multiple
  3916. mappings per source path. This behaviour is enabled by using
  3917. an enablemultiplemapping attribute. Bugzilla Report 21320.
  3918. * <exec> will now work on OpenVMS (please read the notes in
  3919. <exec>'s manual page). Bugzilla Report 21877.
  3920. * <exec> will now have a new attribute spawn (default false).
  3921. If set to true, the process will be spawned. Bugzilla Report 5907.
  3922. * <java> will now have a new attribute spawn (default false).
  3923. If set to true, the process will be spawned. Bugzilla Report 5907.
  3924. * <parallel> now supports a timeout which can be used to recover
  3925. from deadlocks, etc in the parallel threads. <parallel> also
  3926. now supports a <daemons> nested element. This can be used to
  3927. run tasks in daemon threads which the parallel task will not
  3928. wait for before completing. A new attribute failonany will cause
  3929. <parallel> to throw an exception if any thread fails without
  3930. waiting for all other threads to complete.
  3931. * <zip> and friends will consume far less memory than they used to
  3932. when run with compress="false". Bugzilla Report 21899.
  3933. * <if/> and <unless/> attributes added to <param/> element of <style>
  3934. Bugzilla Report 22044
  3935. * <zip> and friends have a new attribute "keepcompression" that can be
  3936. used to incrementally build an archive mixing compressed and uncompressed
  3937. entries.
  3938. * <junit>'s XML formatter adds a new classname attribute to the <testcase>
  3939. elements.
  3940. * new <permissions> type add permission handling to the code
  3941. this type can be nested in the <java> and <junit> tasks.
  3942. Bugzilla Report 22533.
  3943. * additional shortcuts for ant options (-d --> -debug, -e --> -emacs,
  3944. -h --> -help, -p --> -projecthelp, -s --> -find).
  3945. * new selector <modified>. "cache" was renamed to "modified".
  3946. Bugzilla Report 20474.
  3947. * <stcheckout> and <stlist> have a new asofdate attribute that can be
  3948. used to checkout/list files based on a date instead of a label.
  3949. Bugzilla Report 20578.
  3950. * New filter <concatfilter>. Adds the content of file at the beginning
  3951. or end of a file. Discussion started at
  3952. http://marc.theaimsgroup.com/?l=ant-user&m=106366791228585&w=2
  3953. * New task <import>
  3954. * New task <macrodef>
  3955. * New task <presetdef>
  3956. * Ant libraries that can make use of namespaces to avoid name
  3957. clashes of custom tasks
  3958. * <java> and <junit> now support <assertions>, which let you enable
  3959. and disable Java1.4 assertions on a package or class basis. These
  3960. only work when fork=true, currently.
  3961. * .NET tasks expanded with VB support <vbc> and J#, via <jsharp>,
  3962. <importtypelib> and <ilasm>. <csc> supports nested <src> types,
  3963. <defines> for (potentially conditional) definitions, <reference>
  3964. filesets for references. The executable attribute lets you switch to
  3965. mono or other implementations -<csc> has been tested with Mono on
  3966. Linux and OSX.
  3967. Changes from Ant 1.5.3 to Ant 1.5.4
  3968. ===================================
  3969. Changes that could break older environments:
  3970. --------------------------------------------
  3971. * If the Visual Age tasks used to work for you, they may stop doing so
  3972. now - and we'd like to know about it. The current set of tasks is
  3973. supposed to work with any version of VAJ starting with 3.0.
  3974. Fixed bugs:
  3975. -----------
  3976. * The Visual Age for Java tasks didn't work (at least for versions 3.0
  3977. and higher). Bugzilla Report 10016.
  3978. * URL-encoding in <vaj*port> didn't work properly.
  3979. * VAJRemoteUtil called getAbsolutePath instead of getPath
  3980. causing problems when using a Windows VAJ server from a UNIX server.
  3981. Bugzilla Report 20457.
  3982. * VAJImport task failed with NullPointerException when using DirectoryScanner.
  3983. Bugzilla Report 22080.
  3984. Other changes:
  3985. --------------
  3986. * Shipped XML parser is now Xerces 2.5.0
  3987. * <javah> will invoke oldjavah on JDK 1.4.2. Bugzilla Report 18667.
  3988. * The VAJ tasks now support a haltonfailure attribute to conditionally
  3989. keep building even if they fail.
  3990. * It is now possible to use the latest (versioned or unversioned) edition
  3991. in <vajload> by using special wildcard characters. Also fixes
  3992. Bugzilla Report 2236.
  3993. Changes from Ant 1.5.2 to Ant 1.5.3
  3994. ===================================
  3995. Changes that could break older environments:
  3996. --------------------------------------------
  3997. * The <zip> task and friends have again changed a method signature
  3998. (sorry, was necessary to fix bug 17780). The return type of
  3999. getResourcesToAdd has changed.
  4000. Fixed bugs:
  4001. -----------
  4002. * <zipfileset>'s filemode would get ignored and the dirmode was used
  4003. for the included files as well. As a side effect, WinZIP was unable
  4004. to extract or display the files, so they seemed to be missing from
  4005. the archive. Bugzilla Report 17648.
  4006. * <ftp> could use the wrong path separator when trying to change the
  4007. remote working directory. Bugzilla Report 17735.
  4008. * <jar update="true"> would loose all original files if you didn't
  4009. specify any nested <(zip)fileset>s and the manifest had changed.
  4010. Bugzilla Report 17780.
  4011. * If you used a value starting with \ on Windows for the appxml
  4012. attribute of <ear> or the webxml attribute of <war>, it would be
  4013. ignored. Bugzilla Report 17871.
  4014. * Ant will no longer implicitly add Sun's rt.jar in <javac> when you
  4015. use jvc and don't specify a bootclasspath. Bugzilla Report 18055.
  4016. * The prefix attribute of <zipfileset> would not generate directory
  4017. entries for the prefix itself. Bugzilla Report 18403.
  4018. * starteam checkout can now handle deleted labels. Bugzilla Report 17646.
  4019. * The Unix wrapper script failed if you invoked it as a relative
  4020. symlink and ANT_HOME has not been set. Bugzilla Report 17721.
  4021. Other Changes:
  4022. --------------
  4023. * Added ability to specify manifest encoding for the <jar> and
  4024. <manifest> tasks
  4025. Changes from Ant 1.5.1 to Ant 1.5.2
  4026. =============================================
  4027. Changes that could break older environments:
  4028. --------------------------------------------
  4029. * ANT_OPTS environment variable is now applied at the start of the
  4030. Java command line, allowing position specific parameters of some
  4031. JVMs, such as -classic to be specified.
  4032. * ZipScanner#getIncludedFiles will now return the names of the ZipEntries
  4033. that have been matched instead of the name of the archive.
  4034. * The <zip> task and friends have been heavily modified, almost every
  4035. method signature of the Zip class has changed. If you have subclassed
  4036. Zip (or one of its subclasses), your class will most likely not
  4037. compile against the current code base. If it still compiles, it will
  4038. probably not work as in Ant 1.5.1.
  4039. Fixed bugs:
  4040. -----------
  4041. * <translate> was not ignoring comment lines.
  4042. * <manifest> wouldn't update an existing manifest if only an attribute
  4043. of an existing section changed.
  4044. * ant.bat now supports the ANT_ARGS and JAVACMD environment variables
  4045. again (like Ant 1.5 did).
  4046. * The "plain" <junit> <formatter> could throw a NullPointerException
  4047. if an error occurred in setUp.
  4048. * <junit> will now produce output when a test times out as well.
  4049. * <replace> would count some internal character replacements when
  4050. reporting the number of replaced tokens.
  4051. * <concat> would cause an exception if a <filelist> pointed to files
  4052. that do not exist.
  4053. * <javadoc> will now pass -source to custom doclets as well.
  4054. * <cvstagdiff> would throw a NullPointException if there had been no
  4055. differences.
  4056. * <cvschangelog> could miss today's changes.
  4057. * <concat> could append newline characters between concatenated files.
  4058. * <xmlvalidate> ignored the specified encoding of the files to
  4059. validate.
  4060. * the errorsbeginat attribute of the <http> condition didn't work.
  4061. * Ant will try to force loading of certain packages like com.sun.*
  4062. from the system classloader. The packages are determined by the
  4063. version of the JVM running Ant.
  4064. * Ant didn't find the runtime libraries on IBM's JDK 1.4 for Linux.
  4065. * random component of temporary files is now always a positive integer.
  4066. * Ant could incorrectly try to use the 1.4 regexp implementation even
  4067. if it isn't available if you run the JVM with -Xverify:none.
  4068. * Ant would die with an exception if you used nested <reference>
  4069. elements in Ant and the refid attribute didn't point to an existing
  4070. project reference.
  4071. * The <get> task can now be compiled (and Ant thus bootstrapped) using
  4072. Kaffee.
  4073. * build.sysclasspath will now be honored by more tasks.
  4074. * The signjar keystore attribute has been reverted to a String allowing
  4075. it to once again accept URLs. This should not affect current File based usage
  4076. unless you are extending the Signjar task.
  4077. * <jar update="true"> would remove the original manifest.
  4078. * fix up folder creation in PVCS task
  4079. * <tar>'s up-to-date check didn't work for nested <(tar)fileset>s.
  4080. * Corrected a problem in XMLLogger where it would not associated
  4081. messages with a taskdef'd task
  4082. * <uptodate> now works when using attributes (i.e. not filesets) and pointing
  4083. to the same file
  4084. * Java task (and output system) now stores output which doos not end
  4085. with a line feed.
  4086. * splash screen wouldn't disappear when build was finished.
  4087. * <exec> now supports OS/2.
  4088. * <zip> and friends would only update/recreate existing archives if
  4089. the files to add/update have been newer than the archive.
  4090. * <javadoc>'s <link> element could fail for offline="true" on some JDKs.
  4091. Other changes:
  4092. --------------
  4093. * MailLogger now sets the Date header correctly.
  4094. * Shipped XML parser is now Xerces 2.3.0
  4095. * signjar now accepts a maxmemory attribute to allow the memory allocated to the
  4096. jarsigner tool to be specified. The jarsigner from the JDK's JAVA_HOME bin
  4097. dir is now used rather than the first jarsigner on the path.
  4098. * **/.DS_Store has been added to the list of default pattern excludes.
  4099. * The Created-By header in the default manifest now contains the JVM
  4100. vendor and version according to the jar specification. A new header,
  4101. Ant-Version provides the Ant version used to create the jar.
  4102. * <zip> can now store Unix permissions in a way that can be
  4103. reconstructed by Info-Zip's unzip command.
  4104. Changes from Ant 1.5.1Beta1 to 1.5.1
  4105. ====================================
  4106. Fixed bugs:
  4107. -----------
  4108. * <tstamp>'s prefix attribute failed to apply to nested <format> elements.
  4109. * <junitreport> created an empty junit-noframes.html if no format had
  4110. been specified.
  4111. * <basename> would remove more than it should if the file name
  4112. contained more than one dot.
  4113. * <filterset>s nested into <filterset>s didn't work.
  4114. Other changes:
  4115. --------------
  4116. * Shipped XML parser is now Xerces 2.2.0
  4117. * Filesets now support a 'file' attribute, allowing a single-file
  4118. fileset to be constructed without having to specify its parent
  4119. directory separately.
  4120. * <junit> will now return the result of a call to getName instead of
  4121. "unknown" for Test implementations that don't extend TestCase but have
  4122. a public String getName() method.
  4123. Changes from Ant 1.5 to 1.5.1Beta1
  4124. ==================================
  4125. Fixed bugs:
  4126. -----------
  4127. * Date/time in CvsChangeLog was in local timezone and 12 hour format leading
  4128. to a problem when sorting by time. It is now UTC (GMT) and in 24-hour
  4129. format as per cvs 'specifications'.
  4130. * CvsTagDiff now supports ampersand modules or modules that have a different
  4131. root directory than their name.
  4132. * EjbJar threw NPEs for the Websphere element. The property 'websphere.home'
  4133. was not documented.
  4134. * Mail example in the documentation was not correct.
  4135. * Checksum was broken in the following scenario:
  4136. (using verifyproperty OR in a condition) AND using filesets
  4137. with multiple files.
  4138. * The ExpandProperties filter threw NPEs when defined using
  4139. the <filterreader> format.
  4140. * The sh wrapper script didn't work under Cygwin if ANT_HOME wasn't
  4141. set with a Unix style filename.
  4142. * The sh wrapper script could fail if you started Ant from a directory
  4143. with whitespace in its name.
  4144. * ant -diagnostics was not working properly when the task dependency
  4145. was missing and was just printing the missing dependency.
  4146. * If a task got redefined via <taskdef>, it lost its child elements.
  4147. * <property>'s classpathref attribute was broken.
  4148. * <arg line="''" /> would result in no command line argument, will now
  4149. be a single empty argument. Use <arg value="''"/> if you need the
  4150. quotes literally.
  4151. * <replaceregexp> could append a newline character at the end of the
  4152. file.
  4153. Other changes:
  4154. --------------
  4155. * Appendix E of Java Development with Ant (Loughran/Hatcher) was
  4156. contributed to the docs.
  4157. * <available> will only print deprecration warnings if it is actually
  4158. used to change the value of a property.
  4159. Changes from Ant 1.5beta3 to Ant 1.5
  4160. ====================================
  4161. Changes that could break older environments:
  4162. --------------------------------------------
  4163. * The filesetmanifest attribute added to <jar> after the 1.4.1
  4164. release has been removed for now. This change may affect only
  4165. the 1.5Beta/1.6Alpha users. An attempt will be made to add this
  4166. feature back into Ant 1.6.
  4167. Fixed bugs:
  4168. -----------
  4169. * <zip> and friends would always update existing archive if you set
  4170. the update attribute to true.
  4171. * To support backward compatibility with older versions, <pathconvert>
  4172. will once again set the property, even if the result is the empty
  4173. string, unless the new 'setonempty' attribute is set to false|no|off
  4174. (default is "true").
  4175. * The manifest task would crash XmlLogger
  4176. Other changes:
  4177. --------------
  4178. * added **/.svn and **/.svn/** to the default excludes
  4179. Changes from Ant 1.5beta2 to Ant 1.5beta3
  4180. =========================================
  4181. Changes that could break older environments:
  4182. --------------------------------------------
  4183. * <pvcs> default filenameformat has been different from Ant 1.4.1.
  4184. Now it is different from 1.5beta1 and 1.5beta2.
  4185. * <pathconvert> won't set the property if the result is the empty string.
  4186. Fixed bugs:
  4187. -----------
  4188. * <available> could fail to find files or directories that happen to
  4189. start with the name of the project's basedir but are not children of
  4190. the basedir.
  4191. * Nested <property>'s inside <ant> can now be overriden by subsequent
  4192. <ant> and <antcall> tasks.
  4193. * <xslt>'s outputtype attribute wouldn't do anything.
  4194. * <linecontains> filterreader could swallow lines.
  4195. * <sequential> used to configure the tasks (set their attributes)
  4196. before the first task has been executed. This means that properties
  4197. that have been set by nested task seemed to be unset for the other
  4198. tasks in the same <sequential> element.
  4199. * <javac>'s sourcepath setting has been ignored by some compiler
  4200. implementations.
  4201. * <javadoc>'s packagelist attribute didn't work.
  4202. * the plain mailer would always use port 25 in <mail>.
  4203. * Ant's default logger could swallow empty lines.
  4204. * ejbjar's iPlanet nested element now can process multiple descriptors.
  4205. * IPlanetEjbc was looking in the wrong place for four iiop files.
  4206. * <javac> would pass the -source switch to JDK 1.3's javac, even
  4207. though it doesn't support it.
  4208. Other changes:
  4209. --------------
  4210. * <checksum> now uses a buffer (of configurable size).
  4211. * The "Trying to override task definition" warning has been degraded
  4212. to verbose level if the two task definitions only differ in the class
  4213. loader instance that has loaded the definition.
  4214. * Add a jvmargs to the ejbjar's weblogic element to allow additional
  4215. arguments to be provided to the VM runnign ejbc. Document the
  4216. jvmdebuglevel attribute which can be used to avoid warnings about
  4217. interface classess being found on the classpath. Document the new
  4218. <sysproperty> element which allows JVM properties to be defined.
  4219. Added an outputdir attribute to allow the destination to be a
  4220. directory into which the exploded jar is written.
  4221. * ejbjar now supports Borland Enterprise Server 5 and Jonas 2.5
  4222. Changes from Ant 1.5beta1 to Ant 1.5beta2
  4223. =========================================
  4224. Changes that could break older environments:
  4225. --------------------------------------------
  4226. * Properties will now be expanded in mail message bodies. This means
  4227. that one $ sign will be stripped if your mail message contains the text $$.
  4228. * org.apache.tools.ant.taskdefs.Expand no longer extends MatchingTask.
  4229. * Available#setFile now again uses a File argument as it did in 1.4,
  4230. this may break environments that have been adapted to the String
  4231. argument version present in 1.5beta1.
  4232. Fixed bugs:
  4233. -----------
  4234. * When <move> attempts a rename, it deletes the destination file, if it
  4235. exists, before renaming the source file. However, <move> was not
  4236. checking if the destination file was actually a directory before
  4237. trying to delete it.
  4238. * Make CVS Tasks to work under Cygwin.
  4239. * Fix LineContains to handle huge files elegantly without causing
  4240. Stack Overflows.
  4241. * if you ask for the "classic" compiler on Java1.4, you get upgraded to
  4242. "modern" because there is no classic compiler any more.
  4243. * the <http> condition was viewing 404 'not found' exceptions as success. Now
  4244. it defaults to viewing any response >=400 as an error, and has an
  4245. errorsBeginAt attribute you can use if you want a higher or lower value.
  4246. * <get> throws a build exception on an http authorization error, unless you
  4247. have set ignoreerrors to true.
  4248. * <wsdltodotnet> was spelt in Wintel case: <WsdlToDotnet>. It is now lower
  4249. case, though the old spelling is retained for anyone who used it.
  4250. * Merging of Manifests in jar now works as documented.
  4251. * paths that have been separated by colons would be incorrectly parsed
  4252. on NetWare.
  4253. * runant.pl now supports NetWare.
  4254. * <tempfile> and <setproxy> tasks were in beta1, but not defined by
  4255. default; They now are. <tempfile> fills a property with the name of a
  4256. temporary file; <setproxy> lets you set the JVM's http, ftp and socks proxy
  4257. settings.
  4258. * <available classname="foo" ignoresystemclasses="true"> failed for
  4259. JDK 1.1 and 1.2, even if the class could be found on the
  4260. user-specified classpath.
  4261. * <property environment=... /> now works on z/OS.
  4262. * forked <javac> failed for the wrong reason on JDK 1.1 - Ant would
  4263. use a temporary file to hold the names of the files to compile under
  4264. some conditons, but 1.1 doesn't support this feature. Ant will no
  4265. longer try this, but you may run into problems with the length of the
  4266. command line now.
  4267. * the refid attribute for <property>s nested into <ant> or <param>s
  4268. nested into <antcall> didn't work.
  4269. * <replaceregexp> didn't work for nested <fileset>s.
  4270. * <javadoc> dropped sourcepath entries if no "interesting" .java
  4271. source files could be found below them. This has been backwards
  4272. incompatible and caused problems with custom doclets like xdoclet.
  4273. * Using the doclet, docletpath or docletpathref attributes of
  4274. <javadoc> may have caused NullPointerExceptions.
  4275. * nested <filesets> of <javadoc> would include too much.
  4276. * <dependset> will no longer choke on <targetfileset>s that point to
  4277. non-existing directories.
  4278. * <patch> didn't work at all.
  4279. * <replace> and <replaceregexp> now fail if the file they are working
  4280. on is locked.
  4281. * <javadoc> would pick up the wrong executable in the combination JDK
  4282. 1.2 and AIX.
  4283. Other changes:
  4284. --------------
  4285. * z/OS now gets detected by the os condition.
  4286. * <fileset> and <dirset> now have an optional followsymlink attribute
  4287. that can prevent Ant from following symbolic links on some platforms.
  4288. * BeanShell is now supported in the <script> task.
  4289. * <ejbjar> under Weblogic attempts to use the ejbc20 compiler for 2.0 beans
  4290. based on the deployment descriptor's DTD reference. Under weblogic 7.00 Beta
  4291. this ejbc class has been deprecated. To avoid the deprecation warning use
  4292. ejbcclass="weblogic.ejbc".
  4293. * <ejbjar> will add a manifest to the generated jar based on the naming
  4294. convention in use. This overrides the manifest specified in the
  4295. <ejbjar> attribute
  4296. Changes from Ant 1.4.1 to 1.5beta1
  4297. ==================================
  4298. Changes that could break older environments:
  4299. --------------------------------------------
  4300. * Important: Single $ signs are no longer silently stripped!
  4301. Before you panic that we have broken all your build files, we have kept
  4302. the old "$$" -> "$" behaviour. So only build files which accidentally had
  4303. a $ sign in a string that was being silently stripped may break.
  4304. We added this fix to stop newbie confusion; if you want to write a
  4305. build file which works on ant versions 1.4.1 or earlier, stay with
  4306. the double $$ sign rule.
  4307. * Project.getBuildListeners now returns a clone of the listener
  4308. list. Changes to the returned list will not affect the listeners
  4309. currently attached to the Project. It also means that it is safe to
  4310. iterate over the returned list if listeners are added or removed
  4311. during the traversal.
  4312. * <pvcs> default filenameformat has been different from Ant 1.4.1.
  4313. * Some messages that are printed during startup will not be
  4314. written to the logfile specified via -logfile as they might destroy
  4315. the format of the file for special BuildLoggers (like XmlLogger).
  4316. * The filesetmanifest attribute added to <jar> after the 1.4.1
  4317. release has been removed for now. This change may affect only
  4318. the 1.5Beta/1.6Alpha users. An attempt will be made to add this
  4319. feature back into Ant 1.6.
  4320. * Shipped XML parser is now Xerces 2.0.1 along with the XML Parser APIs.
  4321. XML Parser APIs is a separate jar that contains the necessary
  4322. JAXP/DOM/SAX classes.
  4323. * <telnet> was fixed to expand properties inside nested <read> and
  4324. <write> elements; before this only happened when you assigned the text
  4325. to the string attribute. If you had $ signs in the string, they may
  4326. need escaping.
  4327. * the RegexpMatcher interface has been extended to support case
  4328. insensitive matches and other options - custom implementations of
  4329. this interface won't work any longer. We recommend to use the new
  4330. Regexp interface that also supports substitution instead of the
  4331. RegexpMatcher interface in the future.
  4332. * <gzip> will throw an exception if your src attribute points to a directory.
  4333. * Unjar, Unzip and Unwar will throw an exception if the Src attribute
  4334. represents a directory. Support for nested filesets is provided
  4335. instead.
  4336. * It is no longer possible to overwrite a property using tasks like
  4337. <condition>, <exec>, <pathconvert>, or <tstamp>. In some exceptional
  4338. cases it will generate a warning if you attempt to overwrite an
  4339. existing property.
  4340. * Taskwriters please note: Whenever tasks had any overloaded set* methods,
  4341. Ant's introspection mechanism would select the last overloaded method
  4342. provided to it by the Java Runtime. A modification has now been made such
  4343. that when the Java Runtime provides a method with a String as its argument,
  4344. a check is made to see if there is another overloaded method that takes in
  4345. some other type of argument. If there is one such method, then the method
  4346. that takes in String as an argument is not selected by the Introspector.
  4347. * The pattern definition **/._* has been included into the Default
  4348. Excludes list.
  4349. * <propertyfile>'s <entry> element was modified to remove "never" as a value
  4350. as its behavior was undocumented and flakey.
  4351. * The -projecthelp flag now only prints out targets that include the
  4352. 'description' attribute, unless the -verbose or -debug flag is included
  4353. on the Ant command line.
  4354. * Ant's testcases now require JUnit 3.7 or above, as they now use the new
  4355. assertTrue method instead of assert.
  4356. * If the 'output' attribute of <ant> is set to a simple filename or a
  4357. relative path, the file is created relative to ${basedir}, not ${user.dir}.
  4358. * The default value for build.compiler is now javac1.x with x
  4359. depending on the JDK that is running Ant instead of classic/modern.
  4360. Fixed bugs:
  4361. -----------
  4362. * <available> could fail to find files or directories that happen to
  4363. start with the name of the project's basedir but are not children of
  4364. the basedir.
  4365. * Nested <property>'s inside <ant> can now be overriden by subsequent
  4366. <ant> and <antcall> tasks.
  4367. * <xslt>'s outputtype attribute wouldn't do anything.
  4368. * <linecontains> filterreader could swallow lines.
  4369. * <sequential> used to configure the tasks (set their attributes)
  4370. before the first task has been executed. This means that properties
  4371. that have been set by nested task seemed to be unset for the other
  4372. tasks in the same <sequential> element.
  4373. * <javac>'s sourcepath setting has been ignored by some compiler
  4374. implementations.
  4375. * <javadoc>'s packagelist attribute didn't work.
  4376. * the plain mailer would always use port 25 in <mail>.
  4377. * Ant's default logger could swallow empty lines.
  4378. * ejbjar's iPlanet nested element now can process multiple descriptors.
  4379. * IPlanetEjbc was looking in the wrong place for four iiop files.
  4380. * <javac> would pass the -source switch to JDK 1.3's javac, even
  4381. though it doesn't support it.
  4382. * <zip> and friends would always update existing archive if you set
  4383. the update attribute to true.
  4384. * To support backward compatibility with older versions, <pathconvert>
  4385. will once again set the property, even if the result is the empty
  4386. string, unless the new 'setonempty' attribute is set to false|no|off
  4387. (default is "true").
  4388. * The manifest task would crash XmlLogger
  4389. * A bug existed that prevented generated log files from being deleted as
  4390. part of the build process itself. This has now been fixed.
  4391. * Fixed bug where <move> ignored <filterset>s.
  4392. * Ant works properly with the combination of Java1.4/WindowsXP.
  4393. * Fixed bug where <java> used to sometimes invoke class constructors twice.
  4394. * Fixed bug with 4NT shell support.
  4395. * Fixed bug where ant would not perform ftp without remotedir being
  4396. specified even though this was not mandatory.
  4397. * Fixed bug where ant would not copy system properties into new Project
  4398. in ant/antcall tasks when inheritall="false" is set.
  4399. * <propertyfile> would not close the original property file.
  4400. * <ant> will no longer override a subbuild's basedir with inheritall="true".
  4401. * Fixed problem with the built-in <junit> formatters which assumed
  4402. that only one test could be running at the same time - this is not
  4403. necessarily true, see junit.extensions.ActiveTestSuite.
  4404. * <jar>'s whenEmpty attribute is useless as JARs are never empty, they
  4405. contain at least a manifest file, therefore it will now print a
  4406. warning and do nothing.
  4407. * <typedef> hasn't been all that useful as it couldn't be used outside
  4408. of targets (it can now) and nested "unknown" elements have always
  4409. been considered to be tasks (changed as well).
  4410. * <fixcrlf> would fail for files that contained lines longer than 8kB.
  4411. * Some junit formatters incorrectly assumed that all testcases would
  4412. inherit from junit.framework.TestCase.
  4413. * <fixcrlf> dropped the first characters from Mac files.
  4414. Other changes:
  4415. --------------
  4416. * <checksum> now uses a buffer (of configurable size).
  4417. * The "Trying to override task definition" warning has been degraded
  4418. to verbose level if the two task definitions only differ in the class
  4419. loader instance that has loaded the definition.
  4420. * Add a jvmargs to the ejbjar's weblogic element to allow additional
  4421. arguments to be provided to the VM runnign ejbc. Document the
  4422. jvmdebuglevel attribute which can be used to avoid warnings about
  4423. interface classess being found on the classpath. Document the new
  4424. <sysproperty> element which allows JVM properties to be defined.
  4425. Added an outputdir attribute to allow the destination to be a
  4426. directory into which the exploded jar is written.
  4427. * ejbjar now supports Borland Enterprise Server 5 and Jonas 2.5
  4428. * added **/.svn and **/.svn/** to the default excludes.
  4429. * Selector Elements now provide a way to create filesets based on
  4430. sophisticated selection criteria.
  4431. * Gzip and Bzip2 files can now be constructed in the fly when using
  4432. the tar task without having to create the intermediate tar file on
  4433. disk. The Untar task can also untar GZip and BZip2 files on the fly
  4434. without creating the intermediate tar file.
  4435. * New optional type, <classfileset> added.
  4436. * <ejbjar> now allows control over which additional classes and interfaces
  4437. are added to the generated EJB jars. A new attribute "dependency" can be
  4438. defined which controls what classes are added. The addition of classes now
  4439. uses the Jakarta-BCEL library rather than reflection, meaning bean classes are
  4440. no longer loaded into Ant's JVM. The default dependency analyzer is known as
  4441. the ancestor analyzer. It provides the same behaviour as the 1.4.1 version of
  4442. <ejbjar>. If the BCEL library is not present, a warning will be issued stating
  4443. the ancestor analyzer is not available. In this case <ejbjar> will continue
  4444. to function but will not add super classes to the jar.
  4445. * <available> has a new attribute named ignoreSystemClasses.
  4446. * New task <cvschangelog/> generates an XML report of changes that occur
  4447. on CVS repository.
  4448. * New filter readers: ClassConstants, ExpandProperties, HeadFilter,
  4449. LineContains, LineContainsRegExp, PrefixLines, ReplaceTokens,
  4450. StripJavaComments, StripLineBreaks, StripLineComments, TabsToSpaces,
  4451. TailFilter.
  4452. * <copy>, <loadfile>, <loadproperties>, <move> support FilterChains
  4453. of FilterReaders.
  4454. * New task <loadproperties> to load contents of file as Ant properties,
  4455. with nested <filterchain> elements.
  4456. * New task <loadfile> to load a whole file into a property.
  4457. * New task <echoproperties> to list your current properties to the screen
  4458. or a file.
  4459. * New tasks <bzip2> and <bunzip2> to pack and unpack files using the
  4460. BZip2 algorithm.
  4461. * New tasks <replaceregexp>, <checksum>, <translate>, <waitfor>,
  4462. <manifest>, <vsscp>, <vssadd>, <vsscreate>, <splash>, <basename>, <dirname>,
  4463. <concat>, <sourceoffsite>, <jarlib-available>, <jarlib-display>,
  4464. <jarlib-manifest>, <jarlib-resolve>.
  4465. * A new combined <mail> task, which replaces the old <mail> and
  4466. <mimemail> tasks, has been added. The <mimemail> task, and
  4467. old SendEmail and MimeMail classes have been deprecated.
  4468. * Mail task allows specification of port number.
  4469. * Users can control what <zip> and <jar> must do when duplicate files
  4470. are found. A new element <zipgroupfileset> allows for multiple zip
  4471. files to be merged into the archive. In addition, <jar> also has
  4472. another new attribute: filesetmanifest. The existing manifest
  4473. attribute of <jar> now also accepts the name of a jar added through
  4474. a fileset.
  4475. * gzip now checks that the zipfile is older than the source file
  4476. before rebuilding the zipfile.
  4477. * TarFileset takes in three new attributes - fullpath, prefix
  4478. and preserveLeadingSlashes.
  4479. * <move> attempts to rename the directory, if everything inside it is
  4480. included, before performing file-by-file moves. This attempt will
  4481. be done only if filtering is off and if mappers are not used. This
  4482. is a performance improvement and there is no change otherwise in
  4483. the functionality of this task.
  4484. * Exec task has extra attribute "resultproperty" to get the return code
  4485. into a property.
  4486. * Exec task prints a message when a timed-out process is killed.
  4487. * Added optional attributes - name, arch and version to the <os> task.
  4488. * Unjar, Untar, Unwar and Unzip now support patternsets to
  4489. select files from an archive for extraction. Filesets may be
  4490. used to select archived files for unarchival.
  4491. * Javac task allows debug levels to be specified. Debug levels
  4492. will have an effect only when the modern compiler or the
  4493. classic compiler (version 1.2 and higher) is used and debugging
  4494. is enabled.
  4495. * Added support for specifying CVS_RSH in the <cvs/> task
  4496. * The attributes zipfile, jarfile, warfile and earfile (from the Zip,
  4497. Jar, War and Ear tasks) have been deprecated and superseded by a
  4498. new attribute "destfile".
  4499. * Added new conditions <isset>, <checksum>, <http>, <socket>, <contains>,
  4500. <filesmatch>.
  4501. * <taskdef> and <typedef> will now emit a warning if a task/type of
  4502. the given name already exists.
  4503. * A new revision of VAJ tasks: The most important new feature
  4504. is the ability to execute VAJ tasks from the command line by
  4505. exploiting the Remote Tool Access feature of VAJ.
  4506. * Improved support for Novell NetWare.
  4507. * Added an optional encoding attribute to <fixcrlf>.
  4508. * <apply> has a new attribute relative that allows users to pass the
  4509. filenames as relative instead of absolute paths on the command line.
  4510. * References can now be copied into the child build by <ant> and
  4511. <antcall> using nested <reference> elements or the new inheritRefs
  4512. attribute.
  4513. * <fail> now supports builds to fail based on conditions via if and
  4514. unless attributes.
  4515. * Ant now comes with two new BuildLogger implementations - one that
  4516. can send emails containing a log of the build process (MailLogger),
  4517. and one that colorizes the output based on message levels, using
  4518. ANSI color code escape sequences (AnsiColorLogger).
  4519. * A "package" mapper type has been added to allow package directory
  4520. names replaced with the dotted form.
  4521. * You can now specify environment variables in the <java> and <junit> tasks
  4522. if the fork attribute has been set to true.
  4523. * -propertyfile command-line option has been added to load an entire
  4524. property file just as -D properties are declared (as user properties).
  4525. -D properties take precedence over -propertyfile specified ones.
  4526. * You can now set an ANT_ARGS environment variable to hold arguments you
  4527. always want passed to the 'ant' command -- for example, if you always
  4528. want to use a different logger or the -find flag.
  4529. * <tstamp> now supports a new "prefix" attribute to prefix properties set.
  4530. * You can now specify the -sourcepath for <javac> explicitly.
  4531. * <javac> now supports a new "listfiles" attribute to list the source
  4532. files it's handing off to the compiler.
  4533. * The compiler implementation for <javac> can now be chosen on a task by
  4534. task basis. The new "compiler" attribute of <javac> can be used to override
  4535. the value of the build.compiler property, if set.
  4536. * <javac> has a new nested element, <compilerarg>, which allows you
  4537. to specify additional args for the specific compiler you're using.
  4538. * <javac>'s "source" attribute is now enabled for jikes as well.
  4539. * <propertyfile>'s <entry> now has a 'unit' attribute to specify the
  4540. increment/decrement unit on date operations.
  4541. * <property> now supports a 'prefix' attribute when loading from a file
  4542. or resource.
  4543. * In Ant 1.4, a feature has been added to the <junit> task that would
  4544. add ant.jar, optional.jar and junit.jar implicitly to the classpath -
  4545. this feature can now be disabled by setting the new includeantruntime
  4546. attribute to false.
  4547. * <style> behaves differently from any other directory-based task, as it
  4548. processes all files that it finds in included directories in
  4549. addition to the files matched by your patterns. There is now a new
  4550. attribute, 'scanincludeddirectories', to suppress this behavior.
  4551. * <javadoc> now supports a <tag> nested element to provide the -tag option
  4552. to the standard Java 1.4 doclet. The element is ignored when not running
  4553. on Java 1.4.
  4554. * <ftp> can now chmod files on a remote server that supports
  4555. "site chmod", as well as set the umask before transferring files, if
  4556. the server supports "site umask".
  4557. * New <serverdeploy> "optional" task.
  4558. * <patternset> now supports nested patternsets.
  4559. * Perforce tasks now support a "failonerror" attribute (defaults to "true").
  4560. * Open Source application server JOnAS support:
  4561. EJB hot deploy and deploy with <serverdeploy> and <ejbjar>
  4562. * Added new DirSet (<dirset>) datatype.
  4563. * <path> now supports nested <dirset> and <filelist> elements.
  4564. * <pathconvert> now supports nested <dirset> and <filelist> elements.
  4565. * <pathconvert>'s "dirsep" and "pathsep" attributes now accept
  4566. multi-character values.
  4567. * <copy> task now has a 'failonerror' attribute to allow keep-going
  4568. behaviour when the file to be copied is not found (defaults to "true").
  4569. * <uptodate> now has a 'srcfile' attribute to allow specifying a
  4570. full-path filename.
  4571. * <exec>, <sql> and <java> now support append attributes to allow
  4572. appending the output to an existing file.
  4573. * <java> now supports a timeout attribute analog to <exec> - it is
  4574. highly recommended to only use it together with fork="true".
  4575. * <javadoc> now supports a source attribute to enable javadoc to
  4576. handle assertions present in JDK 1.4 source code.
  4577. * <replace> supports a new replacefilterfile attribute that
  4578. automatically turns all properties of a given file into
  4579. replacefilters.
  4580. * An alias of <xslt> has been added to refer to the <style> task.
  4581. * The compiler implementation for <rmic> can now be chosen on a task by
  4582. task basis. The new "compiler" attribute of <rmic> can be used to override
  4583. the value of the build.rmic property, if set.
  4584. * <rmic> has a new nested element, <compilerarg>, which allows you
  4585. to specify additional args for the specific compiler you're using.
  4586. * org.apache.tools.ant.XmlLogger now is a BuildLogger, rather than just
  4587. a BuildListener. It can operate in either mode successfully.
  4588. * <junit> has a new attribute "showoutput". If set to true, output
  4589. generated by tests will be sent to Ant's logging system as well as
  4590. to the formatters (instead of sending it to the formatters
  4591. exclusively).
  4592. * Ant has now a pluggable way to prompt users for input, which is used
  4593. by the new <input> task. IDE integrators can provide an
  4594. implementation of the InputHandler interface to decouple Ant's input
  4595. from the console. An implementation that gets its input from a file
  4596. for unattended builds is part of Ant's distribution.
  4597. For more details see docs/manual/inputhandler.html.
  4598. * <patch> has a new attribute that selects the directory in which to
  4599. run the command.
  4600. * <javadoc> now supports two new nested elements, <fileset> and <packageset>.
  4601. Changes from Ant 1.4 to Ant 1.4.1
  4602. ===========================================
  4603. Fixed bugs:
  4604. -----------
  4605. * <ant>'s antfile attribute will now also be considered an absolute path on
  4606. Windows systems, if it starts with a \ and no drive specifier.
  4607. * The fullpath attribute of <zipfileset> has been ignored if you used
  4608. the src attribute at the same time.
  4609. * The manifest file is now always placed as the second entry (after /META-INF)
  4610. in generated jars. This allows the manifest to be read by JarInputStreams
  4611. * Fixed bug in depend task which would fail with a NullPointerException if no
  4612. dependency cache was specified.
  4613. * sql task now handles REM statements correctly so that lines starying with rem
  4614. but which are not comments are actually processed.
  4615. * XMLLogger now uses the task's name rather than the classname
  4616. * <mapper>s will now work as expected if the to pattern expands to an
  4617. absolute pathname.
  4618. * <javac> didn't ignore memory settings in non-fork mode
  4619. * <cab> didn't split the options attribute into several command line
  4620. arguments correctly.
  4621. Other changes:
  4622. --------------
  4623. * New source attribute for <javac> to enable assertion in JDK 1.4
  4624. * XmlLogger and <antstructure> now add an encoding declaration to the
  4625. XML files they generate.
  4626. * <fileset> has a new attribute "casesensitive" to make it match
  4627. filenames in a case insensitive way (if you set it to false) - by
  4628. default filesets remain case sensitive.
  4629. Changes from Ant 1.3 to Ant 1.4
  4630. ===========================================
  4631. Changes that could break older environments:
  4632. --------------------------------------------
  4633. * JUnitReport now uses the xalan redirect extension for multi-output.
  4634. With Xalan 1.2.2 it forces the use of bsf.jar in the classpath.
  4635. (Available in the xalan distribution). It is recommended to switch
  4636. to Xalan 2.x that do not need it.
  4637. * Zip.setWhenempty() has changed its signature.
  4638. * <rmic> is now implemented using a factory. This makes extending
  4639. rmic to use a new compiler a lot easier but may break custom
  4640. versions of this task that rely on the old implementation.
  4641. * several Zip methods have changed their signature as we now use a Zip
  4642. package of our own that handles Unix permissions for directories.
  4643. Furthermore <zip> will now use the platform's default character
  4644. encoding for filenames - this is consistent with the command line
  4645. ZIP tools, but causes problems if you try to open them from within
  4646. Java and your filenames contain non US-ASCII characters. Use the new
  4647. encoding attribute of the task and set it to UTF8 to get the old
  4648. behavior.
  4649. * The <pvcs> task has been moved to a package of its own.
  4650. * JUnitResultFormater has two additional methods that must be
  4651. implemented by custom formatters.
  4652. * Ant will no longer use the canonical version of a path internally -
  4653. this may yield different results on filesystems that support
  4654. symbolic links.
  4655. * The output generated by the xml formatter for <junit> has changed
  4656. again, it doesn't format the numeric value in the time attribute anymore.
  4657. * Pattern matching rules have changes slightly, the pattern foo*
  4658. doesn't match files contained in a directory named foo - use foo/*
  4659. instead.
  4660. * <fixcrlf> will not remove trailing whitespace at the end of lines anymore.
  4661. * The Classloader usage has been changed for the taskdef, property, available
  4662. and sql tasks so that it delegates to the parent classloader. This may cause
  4663. ClassNotFoundExceptions to be thrown if a system class attempts to load a
  4664. class in the taskdef's classpath (typically factory objects).
  4665. * Ant now allows multithreading of tasks and the containment of tasks within
  4666. other tasks. This can break customer listeners which do not expect messages
  4667. from a task before the previous task has finished.
  4668. * Ant now installs its own output stream into System.out to route output to the
  4669. task currently executing on the current thread. This also means that all
  4670. output is now routed as Ant message events. Customer listeners and loggers
  4671. should not call System.out at any time. This has always been true but such
  4672. usage now will cause problems due to possible recursion.
  4673. * Invalid manifest files will now cause build failures in the <jar> task.
  4674. * Ant Introspection now looks for methods with method names starting with
  4675. addConfigured. When called these methods are passed an argument after it has
  4676. been configured from the build file. Custom tasks supporting nested elements
  4677. starting with the name configured will no longer function.
  4678. * The environment variable JAVACMD that can be used to specify the
  4679. java executable to Ant's wrapper scripts must not contain additional
  4680. command line parameters any longer - please use the environment
  4681. variable ANT_OPTS for such parameters now.
  4682. * Ant's wrapper scripts now quote the CLASSPATH environment variable, thus
  4683. supporting classpaths which refer to directories containing spaces. This means
  4684. that the CLASSPATH environment variable cannot have quotes. Any quotes should
  4685. be removed. This will not affect the operation of the CLASSPATH environment
  4686. variable in other contexts.
  4687. * A delete task like
  4688. <delete includeEmptyFilesets="true">
  4689. <fileset dir="somedir" />
  4690. </delete>
  4691. will now remove "somedir" as well, unless there are still files left
  4692. in it (matched by the default excludes).
  4693. * The copy task will now fail if the file to be copied is not found.
  4694. * Ant properties defined in properties files now behave the same way as
  4695. properties defined in the build file. In particular the $ character needs
  4696. to be escaped in property values by doubling it to $$. So, to define a
  4697. property with the value $hello, you need to define it in a properties file
  4698. as
  4699. test.prop=$$hello
  4700. This was not the case in Ant 1.3
  4701. Other changes:
  4702. --------------
  4703. * New tasks: ear, p4counter, record, cvspass, vsscheckin, vsscheckout,
  4704. typedef, sleep, mimemail, set of tasks for Continuus/Synergy, dependset,
  4705. condition, maudit, mmetrics, jpcoverage, jpcovreport, jpcovmerge
  4706. * Ant now uses JAXP 1.1
  4707. * rmic now supports Kaffe's and Weblogic's version of rmic.
  4708. * new magic property build.rmic to chose the rmic implementation
  4709. * <tar> will now add empty directories as well
  4710. * you can now specify a description for <p4change>
  4711. * <touch> can now work on <fileset>s
  4712. * <uptodate> now supports a value attribute
  4713. * <fail> supports nested text
  4714. * <fixcrlf> won't override files that are already in the correct
  4715. format.
  4716. * <sql> now supports REM comments as well as // and --
  4717. * <jar> now has a nested <metainf> element following the same idea as
  4718. <war>'s <webinf>.
  4719. * <pvcs> can now handle multiple projects.
  4720. * <available> now has a "type" attribute you can use in conjunction
  4721. with the "file" attribute to specify whether the "file" you're
  4722. looking for is a file or a directory.
  4723. * New <junit> formatter named "brief"
  4724. * <ejbjar> changes
  4725. * Add support for Borland Application Server to the <ejbjar> task using
  4726. a <borland> nested element.
  4727. * Add support for iPlanet Application Server to the <ejbjar> task. Also
  4728. includes some iPlanet utility tasks
  4729. * Add support for JBoss Application Server to the <ejbjar> task.
  4730. * Add a naming attribute to control the naming scheme that
  4731. ejbjar uses to name the generated EJB jars.
  4732. * Weblogic element now sets the compiler class for EJB 2.0 beans
  4733. * <dtd> elements can be specified at the <ejbjar> level for building generic
  4734. beans
  4735. * <dtd> elements can now be URLs
  4736. * Allow the manifest to be specified for the generated jars
  4737. * The weblogic element now supprts an attribte noEJBC to skip the processing
  4738. of the jar by ejbc. The ejbc step will then occur at deployment
  4739. * weblogic will tell ejbc to use Jikes compiler if build.compiler is set to
  4740. jikes. It can be restored to the default, javac, operation if desired.
  4741. * Allow the <sql> Delimiter to be set in the so that Oracle stored procs may be
  4742. entered
  4743. * <execon> and <apply> can now optionally skip empty filesets.
  4744. * <javadoc> has a new useexternalfile attribute that makes it use a
  4745. temporary file for sourcefile and package names - helps to defeat
  4746. command line length limitations.
  4747. * Data types like <path> can now be defined inside of <target>s
  4748. * you can now specify a classpath for <style> - the XSLZ processor
  4749. will be loaded from this path
  4750. * added a force attribute to <style> to support dependencies that the
  4751. task cannot determine itself (dependency on parameters, not file
  4752. modification times for example)
  4753. * added vmlauncher attribute to exec tasks. This defaults to true. If
  4754. it is set to false, the VM's ability to launch commands in bypassed
  4755. and the OS shell, either directly or through the auxiliary antRun
  4756. scripts is used.
  4757. * regexp mapper now supports the java.util.regex package of JDK 1.4.
  4758. * New filesonly attribute for <zip> and friends to suppress directory
  4759. entries.
  4760. * New update attribute for <zip> and friends - update an existing
  4761. archive instead of creating a new one.
  4762. * <apply> and <execon> have been merged into a single task.
  4763. * added vssver.scc to the default excludes
  4764. * <available> has a new filepath attribute/nested element that allows
  4765. you top search for a file in a given path.
  4766. * <junit> can now optionally set a property on test failure.
  4767. * <taskdef> can now define several tasks at once, reading the
  4768. name/classname pairs from a property file or resource.
  4769. * <unzip/unjar/unwar> and <untar> now have an overwrite attribute that
  4770. defaults to true. If set to false, files that are newer than the
  4771. files in the archive will not be replaced.
  4772. * <patternset> and <fileset> now support nested <in/excludesfile>
  4773. elements - using these you can have more than one in/excludes file
  4774. per <patternset>.
  4775. * Three new supported compilers for javac: kjc for kopi, gcj for the
  4776. gcc frontend and sj for Symantec's compiler.
  4777. In addition extJavac or the new fork attribute can be
  4778. used to run the JDK's javac in a JVM separate from Ant.
  4779. * <fixrlf> can now with CR only line-ends and can use an arbitraty
  4780. between 2 and 80.
  4781. * The .NET tasks have been adapted to the beta2 release of the framework.
  4782. * <move> will now try to rename() files before copying them byte by
  4783. byte - only if filtering is of, of course.
  4784. * <ant> and <antcall> tasks now support a new attribute inheritAll. When set to
  4785. false, only user properties are passed through to the target Ant instance.
  4786. This includes properties set on the command line and properties explicitly
  4787. passed
  4788. * <javadoc> now skips off line links if the package list cannot be found.
  4789. * <wlrun> now allows the security policy file to exist outside the weblogic
  4790. directory.
  4791. * <java> task will set the Thread contextClassLoader under JDKs 1.2+ to the
  4792. classloader for the class being executed.
  4793. * Introduce the concept of a TaskContainer - a task or element which can contain
  4794. Ant Tasks.
  4795. * Add new tasks implementing the TaskContainer interface <parallel> and
  4796. <sequential> which allow parallel execution of tasks to be specified.
  4797. * <depend> task will now take into account dependencies on jar files and class
  4798. files from a given classpath.
  4799. * <jar> manifest entries may now be specified in the build file either
  4800. completely or to be merged with a manifest file.
  4801. * <tstamp> task custom formats now support locales.
  4802. * Added a listner which will forward events to Log4J. The log4j configuration
  4803. file should be in the directory from which Ant is run or passed as a system
  4804. property using a JVM argument.
  4805. * Introduced the concept of <filtersets> to allow for more control in which
  4806. filters get applied in a <copy> or <move> operation.
  4807. * Added nowarn attribute to javac and deprecated the Jikes-magic property
  4808. build.compiler.warnings.
  4809. * The <depend> task cache format has changed and all dependency information is
  4810. now stored in a single file.
  4811. Fixed bugs:
  4812. -----------
  4813. * Testcases have been made independent of current working directory.
  4814. * Input ZIP-Files will be closed when using a <zipfileset>.
  4815. * p4 tasks now don't fail if user, port or client have been omitted
  4816. (and this is acceptable for the context of the command).
  4817. * <javah>'s outputfile attribute will be resolved as relative to the
  4818. projects basedir.
  4819. * <antstructure> should create a valid DTD for propertyfile.operation.entry
  4820. and omit tasks it fails to load.
  4821. * won't try to pass a -bootclasspath flag to javac 1.1 anymore
  4822. * <style>'s style attribute no handles absolute paths correctly.
  4823. * <delete includeemptydirs="true"> now deletes more than just the leaf
  4824. directories.
  4825. * You can now specify a <fileset> for a directory that doesn't exist at
  4826. declaration time but will created before the fileset gets used for the
  4827. first time.
  4828. * If the quiet attribute has been set, <delete> will handle <fileset>s
  4829. with non-existing directories gracefully.
  4830. * Output written by testcases will now be captured by the <junit> task
  4831. and passed to the formatters.
  4832. * Quote the -group parameter to Javadoc as per the specification
  4833. * Initialise classes when loaded through the AntClassLoader - that is, run
  4834. static initializers
  4835. * Implement getResource() and getResources() in AntClassLoader
  4836. * Create the <ejbjar> weblogic command line as a set of arguments rather than
  4837. as a single line. Avoids problems with paths which contain spaces.
  4838. * <ejbjar> now fails when the weblogic ejbc compiler reports an error.
  4839. * Make the AntClassLoader load resources in the same order as it currently
  4840. loads classes.
  4841. * Handle classpaths with spaces
  4842. * Make sure XSLT processors close their output files in <style>.
  4843. * perform proper uptodate check in <rmic> when compiling for IIOP.
  4844. * <jjtree>'s uptodate test works even if outputdirectory is not the
  4845. parent dir of target
  4846. * <copy> will remove target file (if it exists) before writing to it -
  4847. this avoids problems with links on filesystems that support them.
  4848. * <ftp> now properly recurses remote directories.
  4849. * <ftp> closes remote connection when it's done.
  4850. * <junit> tries to include all necessary classes for the task itself
  4851. to the classpath when running in fork mode - doesn't work for JDK 1.1
  4852. * <apply> and <execon> do now execute the command only once, if you
  4853. specify the parallel attribute - instead of once per fileset.
  4854. * directory based tasks and fileset could miss some included files in
  4855. directories that have been excluded
  4856. * <fixcrlf> failed for large files.
  4857. * <move> removed files you tried to move to themselves.
  4858. * <sql> task will not trty to print the result set unless the query succeeded.
  4859. * Ant classloader will now ignore paths which are invalid relative to the
  4860. project base
  4861. * <ejbjar> weblogic elements check for jar file changes has been fixed.
  4862. Previously some changes would not be included.
  4863. * properties loaded from properties files are now resolved internally. This
  4864. removes the spurious warnings about usage of properties which have not been
  4865. set.
  4866. * <jar> task and friends now process the JAR manifest to ensure it is valid.
  4867. * The task finished event now includes any exception thrown by the task.
  4868. * <java> task now supports a jvmVersion attribute so that if another JVM is
  4869. being used, Ant can determine which options to use for features such as the
  4870. VM memory limits
  4871. Changes from Ant 1.2 to Ant 1.3
  4872. ===========================================
  4873. Changes that could break older environments:
  4874. --------------------------------------------
  4875. * Ant doesn't search for the buildfile anymore, unless you use the new
  4876. -find argument.
  4877. * <perforce> has been replaced by a number of new tasks.
  4878. * <javac> is now implemented using a factory. This makes extending
  4879. javac to use a new compiler a lot easier but may break custom
  4880. versions of this task that rely on the old implementation.
  4881. * The output generated by the xml formatter for <junit> has changed a
  4882. little, it doesn't append " sec" in the time attribute anymore.
  4883. Other changes:
  4884. --------------
  4885. * A GUI Frontend: Antidote. This is currently in development. At this
  4886. time, this is not part of the Ant release, although the source is
  4887. included if you are interested.
  4888. * New tasks: stylebook, propertyfile, depend, antlr, telnet, csc,
  4889. ilasm, apply, javah, several clearcase tasks, junitreport, sound
  4890. * Added output attribute to <java>.
  4891. * Added nested zipfileset element to <zip>
  4892. * Changed <sql> so that printing is at the task level rather than
  4893. the statement level.
  4894. * javadoc task will pass -d flag to any doclet if the destDir attribute is
  4895. given. If the doclet does not accept the -d flag then omit the destdir
  4896. attribute.
  4897. * <cab> can work on non-Windows platforms with the help of libcabinet.
  4898. See http://trill.cis.fordham.edu/~barbacha/cabinet_library/.
  4899. * <ftp> now supports passive mode.
  4900. * New <mapper> data type that can be used to get influence on the
  4901. target files for some tasks like <copy> or enable new types of tasks
  4902. like <apply>.
  4903. * <execon> provides more control over the command line now, the names
  4904. of the source files are no longer required to be at the end of the
  4905. command.
  4906. * Style tasks will now support TraX compliant XSL processors if one is present
  4907. in your classpath.
  4908. * Added a failonerror to the javac task. If set to false, the build will
  4909. continue even if there are compilation errors.
  4910. * Added nested format elements to the tstamp task allowing additional time
  4911. formats to be defined for arbitrary properties.
  4912. * Added classpath attribute and nested classpath element to <property>
  4913. to make the resource attribute more powerful.
  4914. * ${} property expansion will now be performed on the patterns read
  4915. from files specified as includesfile or excludesfile attributes.
  4916. * The <tar> and <untar> tasks now support GNU format for handling paths
  4917. which are greater than 100 characters in length. In addition the <tar>
  4918. task now supports nested filesets through which the file permissions
  4919. may be controlled.
  4920. * wlrun, wlstop and ejbjar now support Weblogic 6.0
  4921. * The MPasre task has been updated to work with MParse 2.0
  4922. * The documentation has been significantly updated.
  4923. Fixed bugs:
  4924. -----------
  4925. * <signjar> no longer uses deprecated methods.
  4926. * javadoc's failonerror attribute works again
  4927. * javadoc's additionalparam attribute will now be split into separate
  4928. parameters (on spaces) to allow for more than one parameter.
  4929. * Changed <sql> task so that printing result sets works on Oracle
  4930. * Changes to ddcreator and ejbc helper to respect the descriptor hierarchy
  4931. keppgenerated in ejbc can now be turned off
  4932. * ejbjar now correctly ignores <ejb-ref> elements in the deployment descriptor.
  4933. CMP files are included by parsing the weblogic deployment descriptor rather
  4934. than relying on the naming convention used in ant 1.2
  4935. * ejbjar includes super classes and super interfaces into the generated ejb
  4936. jar files. The <support> nested element allows support classes to be
  4937. included in the EJB jar. The toplink element should now correctly locate
  4938. the toplink descriptor.
  4939. * <vssget> now correctly deals with spaces in arguments
  4940. * <jar> fails early if a given manifest file doesn't exist
  4941. * <rmic> doesn't search for the _Skel file anymore when stubversion is
  4942. set to 1.2.
  4943. * <rmic> uses the the same classpath to verify a class can be rmic'd
  4944. as it passes to the compiler.
  4945. * org.apache.tools.mail.MailMessage (and therefore <mail>) can now
  4946. handle SMTP servers sending multi line responses.
  4947. * nested <classpath> elements of <taskdef> now work for <taskdef>s not
  4948. nested into <target> as well.
  4949. * <property> and <available> will search for the resource "foo" instead
  4950. of "/org/apache/tools/ant/taskdefs/foo" when given a relative resource
  4951. name foo.
  4952. * Handle build files in directories whose name contained a "#" character
  4953. * <junit> can now log to files whose name contains a comma as well.
  4954. * The AntClassLoader now refers to the loader which loaded it, any
  4955. requests it does not handle itself. Previously these went to the
  4956. primordial loader.
  4957. Changes from Ant 1.1 to Ant 1.2
  4958. ===============================
  4959. Changes that could break older environments:
  4960. --------------------------------------------
  4961. * Semantics of <property> has changed again in the hope to be more
  4962. intuitive. ${} expansion now happens at runtime and <property> tags
  4963. living inside of targets only take effect if they are visited at
  4964. runtime.
  4965. As a side effect of this change, task's attributes get set at runtime
  4966. not at parser time as well, which might change the results of
  4967. <script>s or other custom tasks that reference other tasks by their id
  4968. attribute.
  4969. * copying of support files in <javac> has been removed - as well as
  4970. the filtering attribute.
  4971. * the <expand> and <keysubst> tasks have been removed.
  4972. * the ignore and items attributes of directory based tasks have been removed.
  4973. * the command line switches _not_ starting with - have been removed.
  4974. * Path and EnumeratedAttribute have been moved from
  4975. org.apache.tools.ant to org.apache.tools.ant.types.
  4976. * the class attributes of <available>, <java>, <rmic> and <taskdef>
  4977. have been removed.
  4978. * the src attribute of <chmod> has been removed.
  4979. * <patch> and <javadoc> have lost some of their attributes.
  4980. * <java> and <cvs> have lost some undocumented attributes.
  4981. * the Unix antRun script would search for command.sh in the directory
  4982. it changed to and invoke this instead of command if present. This
  4983. behavior has been dropped.
  4984. * <ejbjar> task syntax has been changed significantly
  4985. * <exec> is no longer implemented by org.apache.tool.ant.taskdefs.Exec.
  4986. Custom tasks that rely on Project.createTask("exec") to return an
  4987. instance of this class are going to fail.
  4988. * nested <include> and <exclude> elements expect the value of their
  4989. name attribute to be a single pattern, they don't accept multiple
  4990. patterns anymore. Split them into multiple elements of the same type.
  4991. * <delete dir="somedir" /> will now delete the directory itself as
  4992. well as all included files. If you just want to clean out the
  4993. directory and keep the empty one, use a nested fileset.
  4994. Other changes:
  4995. --------------
  4996. * New tasks: antstructure, cab, execon, fail, ftp, genkey, jlink,
  4997. junit, sql, javacc, jjtree, starteam, war, unwar, uptodate,
  4998. native2ascii, copy, move, mparse.
  4999. * copydir, copyfile, deltree and rename are now deprecated. They
  5000. should be replaced with the new copy, delete and move tasks.
  5001. * <java> uses a ClassLoader of its own in no-fork mode if a classpath is
  5002. specified.
  5003. * <style> will create the necessary target directories and reprocess
  5004. all files if the stylesheet changes.
  5005. * New data types fileset and patternset - expected to get a broader use.
  5006. They, as well as PATH like structures, can now be defined on a global
  5007. level and later be referenced by their id attribute.
  5008. * You can specify environment variables to <exec>.
  5009. * <get> can check whether a remote file is actually newer than a local
  5010. copy before it starts a download (HTTP only).
  5011. * Added a -logger option to allow the class which performs logging to be
  5012. specified on the command line.
  5013. * Added a -emacs option to tell the logger to leave out taskname adornments
  5014. on log output.
  5015. * <chmod> works on all files in parallel and supports multiple filesets.
  5016. * <replace> can now use tokens and/or values that cross line boundaries.
  5017. * build.compiler supports now jvc as well.
  5018. * project specific help can now be obtained with the -projecthelp option.
  5019. * Added a -debug option to make -verbose less verbose (and more useful)
  5020. * Ant will now search for a file named build.xml in the parent directory
  5021. and above (towards the root of the filesystem) if you didn't specify
  5022. -buildfile and there is no build.xml in the current directory.
  5023. * <echo> can now write to a file and accepts nested text.
  5024. Fixed bugs:
  5025. -----------
  5026. * <chmod> didn't work when used as a directory based task.
  5027. * Path, Available, Property didn't resolve relative filenames with
  5028. respect to the Project's basedir.
  5029. * Project didn't interpret the basedir attribute correctly in all
  5030. cases.
  5031. * Nested <src> in <javac> caused NullPointerException.
  5032. * Corrupt Zip- and Jar-files ar now deleted if the task fails.
  5033. * many more fixes we've forgotten to document here ...
  5034. * The packagelistloc attribute of <javadoc>'s <link> child will be
  5035. resolved as a file (i.e. it is either absolute or relative to
  5036. basedir).