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.

external.html 134 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <!-- Content Stylesheet for Site -->
  3. <!-- start the processing -->
  4. <html>
  5. <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! -->
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
  8. <meta name="author" value="Stefan Bodewig">
  9. <meta name="email" value="bodewig@apache.org">
  10. <title>Apache Ant - External Tools and Tasks</title>
  11. </head>
  12. <body bgcolor="#ffffff" text="#000000" link="#525D76">
  13. <table border="0" width="100%" cellspacing="0">
  14. <!-- TOP IMAGE -->
  15. <tr>
  16. <td colspan="2">
  17. <a href="http://ant.apache.org/"><img src="./images/ant_logo_large.gif" alt="Apache Ant" border="0"/></a>
  18. </td>
  19. </tr>
  20. </table>
  21. <table border="0" width="100%" cellspacing="4">
  22. <tr><td colspan="2">
  23. <hr noshade="" size="1"/>
  24. </td></tr>
  25. <tr>
  26. <!-- LEFT SIDE NAVIGATION -->
  27. <td valign="top" nowrap="true">
  28. <p><strong>Apache Ant</strong></p>
  29. <ul>
  30. <li> <a href="./index.html">Front Page</a>
  31. </li>
  32. <li> <a href="./LICENSE">License</a>
  33. </li>
  34. <li> <a href="./antnews.html">News</a>
  35. </li>
  36. </ul>
  37. <p><strong>Documentation</strong></p>
  38. <ul>
  39. <li> <a href="./manual/index.html">Manual</a>
  40. </li>
  41. <li> <a href="./projects.html">Related Projects</a>
  42. </li>
  43. <li> <a href="./external.html">External Tools and Tasks</a>
  44. </li>
  45. <li> <a href="./resources.html">Resources</a>
  46. </li>
  47. <li> <a href="./faq.html">Ant FAQ</a>
  48. </li>
  49. <li> <a href="./problems.html">Having Problems?</a>
  50. </li>
  51. </ul>
  52. <p><strong>Download</strong></p>
  53. <ul>
  54. <li> <a href="./bindownload.cgi">Binary Distributions</a>
  55. </li>
  56. <li> <a href="./srcdownload.cgi">Source Distributions</a>
  57. </li>
  58. </ul>
  59. <p><strong>Get Involved</strong></p>
  60. <ul>
  61. <li> <a href="./mail.html">Mailing Lists</a>
  62. </li>
  63. <li> <a href="./cvs.html">CVS Repositories</a>
  64. </li>
  65. <li> <a href="http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Ant">Bug Database</a>
  66. </li>
  67. <li> <a href="http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Ant&bug_severity=Enhancement">Enhancement Requests</a>
  68. </li>
  69. </ul>
  70. <p><strong>Project Management</strong></p>
  71. <ul>
  72. <li> <a href="./contributors.html">Contributors</a>
  73. </li>
  74. <li> <a href="./mission.html">Mission</a>
  75. </li>
  76. <li> <a href="./guidelines.html">Guidelines Notes</a>
  77. </li>
  78. <li> <a href="./legal.html">Legal</a>
  79. </li>
  80. </ul>
  81. </td>
  82. <td align="left" valign="top">
  83. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  84. <tr><td bgcolor="#525D76">
  85. <font color="#ffffff" face="arial,helvetica,sanserif">
  86. <a name="External Tools and Tasks"><strong>External Tools and Tasks</strong></a>
  87. </font>
  88. </td></tr>
  89. <tr><td>
  90. <blockquote>
  91. <p>This page lists external resources for Apache Ant: tasks, IDE
  92. integration tools, loggers, you name it. If you've written
  93. something that should be included, please post all relevant
  94. information to one of the mailing lists.</p>
  95. <p>Nothing listed here is directly supported by the Ant
  96. developers, if you encounter any problems with them, please use
  97. the contact information.</p>
  98. </blockquote>
  99. </td></tr>
  100. </table>
  101. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  102. <tr><td bgcolor="#525D76">
  103. <font color="#ffffff" face="arial,helvetica,sanserif">
  104. <a name="Tasks"><strong>Tasks</strong></a>
  105. </font>
  106. </td></tr>
  107. <tr><td>
  108. <blockquote>
  109. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  110. <tr><td bgcolor="#828DA6">
  111. <font color="#ffffff" face="arial,helvetica,sanserif">
  112. <a name="AJC"><strong>AJC</strong></a>
  113. </font>
  114. </td></tr>
  115. <tr><td>
  116. <blockquote>
  117. <p><a href="http://aspectj.org">AspectJ</a> is an
  118. aspect-oriented extension to Java. This task compiles a
  119. source tree using the AspectJ compiler -- AJC.</p>
  120. <table>
  121. <tr>
  122. <td bgcolor="#039acc" colspan="" rowspan=""
  123. valign="top" align="left">
  124. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  125. Compatibility:
  126. </font>
  127. </td>
  128. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  129. valign="top" align="left">
  130. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  131. Ant 1.3
  132. </font>
  133. </td>
  134. </tr>
  135. <tr>
  136. <td bgcolor="#039acc" colspan="" rowspan=""
  137. valign="top" align="left">
  138. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  139. URL:
  140. </font>
  141. </td>
  142. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  143. valign="top" align="left">
  144. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  145. <a href="http://aspectj.org/dl">http://aspectj.org/dl</a>
  146. </font>
  147. </td>
  148. </tr>
  149. <tr>
  150. <td bgcolor="#039acc" colspan="" rowspan=""
  151. valign="top" align="left">
  152. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  153. Contact:
  154. </font>
  155. </td>
  156. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  157. valign="top" align="left">
  158. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  159. <a href="mailto:support@aspectj.org">support@aspectj.org</a>
  160. </font>
  161. </td>
  162. </tr>
  163. <tr>
  164. <td bgcolor="#039acc" colspan="" rowspan=""
  165. valign="top" align="left">
  166. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  167. License:
  168. </font>
  169. </td>
  170. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  171. valign="top" align="left">
  172. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  173. Apache Software License
  174. </font>
  175. </td>
  176. </tr>
  177. </table>
  178. </blockquote>
  179. </td></tr>
  180. </table>
  181. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  182. <tr><td bgcolor="#828DA6">
  183. <font color="#ffffff" face="arial,helvetica,sanserif">
  184. <a name="Anakia"><strong>Anakia</strong></a>
  185. </font>
  186. </td></tr>
  187. <tr><td>
  188. <blockquote>
  189. <p>Actually, Anakia is more than just an Ant task, it is a an
  190. XML transformation tool based on JDOM, Velocity and Ant.</p>
  191. <table>
  192. <tr>
  193. <td bgcolor="#039acc" colspan="" rowspan=""
  194. valign="top" align="left">
  195. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  196. Compatibility:
  197. </font>
  198. </td>
  199. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  200. valign="top" align="left">
  201. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  202. Ant 1.2 and later
  203. </font>
  204. </td>
  205. </tr>
  206. <tr>
  207. <td bgcolor="#039acc" colspan="" rowspan=""
  208. valign="top" align="left">
  209. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  210. URL:
  211. </font>
  212. </td>
  213. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  214. valign="top" align="left">
  215. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  216. <a href="http://jakarta.apache.org/velocity/anakia.html">http://jakarta.apache.org/velocity/anakia.html</a>
  217. </font>
  218. </td>
  219. </tr>
  220. <tr>
  221. <td bgcolor="#039acc" colspan="" rowspan=""
  222. valign="top" align="left">
  223. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  224. Contact:
  225. </font>
  226. </td>
  227. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  228. valign="top" align="left">
  229. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  230. <a href="http://jakarta.apache.org/site/mail2.html">Velocity mailing lists</a>
  231. </font>
  232. </td>
  233. </tr>
  234. <tr>
  235. <td bgcolor="#039acc" colspan="" rowspan=""
  236. valign="top" align="left">
  237. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  238. License:
  239. </font>
  240. </td>
  241. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  242. valign="top" align="left">
  243. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  244. Apache Software License
  245. </font>
  246. </td>
  247. </tr>
  248. </table>
  249. </blockquote>
  250. </td></tr>
  251. </table>
  252. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  253. <tr><td bgcolor="#828DA6">
  254. <font color="#ffffff" face="arial,helvetica,sanserif">
  255. <a name="Anteater"><strong>Anteater</strong></a>
  256. </font>
  257. </td></tr>
  258. <tr><td>
  259. <blockquote>
  260. <p>Anteater is a set of Ant tasks for the functional testing of websites
  261. and web services (functional testing being; hit a URL and ensure the
  262. response meets certain criteria). Can test HTTP params, response
  263. codes, XPath, regexp and Relax NG expressions. Includes HTML reporting
  264. (based on junitreport) and a hierarchical grouping system for quickly
  265. configuring large test scripts.
  266. </p>
  267. <table>
  268. <tr>
  269. <td bgcolor="#039acc" colspan="" rowspan=""
  270. valign="top" align="left">
  271. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  272. Compatibility:
  273. </font>
  274. </td>
  275. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  276. valign="top" align="left">
  277. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  278. Ant 1.5 and later
  279. </font>
  280. </td>
  281. </tr>
  282. <tr>
  283. <td bgcolor="#039acc" colspan="" rowspan=""
  284. valign="top" align="left">
  285. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  286. URL:
  287. </font>
  288. </td>
  289. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  290. valign="top" align="left">
  291. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  292. <a href="http://aft.sourceforge.net">http://aft.sourceforge.net</a>
  293. </font>
  294. </td>
  295. </tr>
  296. <tr>
  297. <td bgcolor="#039acc" colspan="" rowspan=""
  298. valign="top" align="left">
  299. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  300. Contact:
  301. </font>
  302. </td>
  303. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  304. valign="top" align="left">
  305. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  306. <a href="http://lists.sourceforge.net/lists/listinfo/aft-devel">developer
  307. mailing list</a>
  308. </font>
  309. </td>
  310. </tr>
  311. <tr>
  312. <td bgcolor="#039acc" colspan="" rowspan=""
  313. valign="top" align="left">
  314. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  315. License:
  316. </font>
  317. </td>
  318. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  319. valign="top" align="left">
  320. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  321. Apache Software License
  322. </font>
  323. </td>
  324. </tr>
  325. </table>
  326. </blockquote>
  327. </td></tr>
  328. </table>
  329. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  330. <tr><td bgcolor="#828DA6">
  331. <font color="#ffffff" face="arial,helvetica,sanserif">
  332. <a name="Checkstyle"><strong>Checkstyle</strong></a>
  333. </font>
  334. </td></tr>
  335. <tr><td>
  336. <blockquote>
  337. <p>Checkstyle is a development tool to help programmers write
  338. Java code that adheres to a coding standard. Its purpose is to
  339. automate the process of checking Java code, and to spare
  340. humans of this boring (but important) task.</p>
  341. <p>Checkstyle can be run via an Ant task or a command line
  342. utility.</p>
  343. <table>
  344. <tr>
  345. <td bgcolor="#039acc" colspan="" rowspan=""
  346. valign="top" align="left">
  347. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  348. Compatibility:
  349. </font>
  350. </td>
  351. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  352. valign="top" align="left">
  353. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  354. Ant 1.2 to 1.4.1
  355. </font>
  356. </td>
  357. </tr>
  358. <tr>
  359. <td bgcolor="#039acc" colspan="" rowspan=""
  360. valign="top" align="left">
  361. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  362. URL:
  363. </font>
  364. </td>
  365. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  366. valign="top" align="left">
  367. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  368. <a href="http://checkstyle.sourceforge.net/">http://checkstyle.sourceforge.net/</a>
  369. </font>
  370. </td>
  371. </tr>
  372. <tr>
  373. <td bgcolor="#039acc" colspan="" rowspan=""
  374. valign="top" align="left">
  375. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  376. Contact:
  377. </font>
  378. </td>
  379. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  380. valign="top" align="left">
  381. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  382. <a href="mailto:checkstyle@puppycrawl.com">Oliver Burn</a>
  383. </font>
  384. </td>
  385. </tr>
  386. <tr>
  387. <td bgcolor="#039acc" colspan="" rowspan=""
  388. valign="top" align="left">
  389. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  390. License:
  391. </font>
  392. </td>
  393. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  394. valign="top" align="left">
  395. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  396. Starting with release 2.0 the license is the GNU
  397. Lesser General Public License. Prior releases were under
  398. the GNU General Public License.
  399. </font>
  400. </td>
  401. </tr>
  402. </table>
  403. </blockquote>
  404. </td></tr>
  405. </table>
  406. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  407. <tr><td bgcolor="#828DA6">
  408. <font color="#ffffff" face="arial,helvetica,sanserif">
  409. <a name="CleanImports"><strong>CleanImports</strong></a>
  410. </font>
  411. </td></tr>
  412. <tr><td>
  413. <blockquote>
  414. <p>Removes unneeded imports. Formats your import
  415. sections. Flags ambiguous imports.</p>
  416. <table>
  417. <tr>
  418. <td bgcolor="#039acc" colspan="" rowspan=""
  419. valign="top" align="left">
  420. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  421. Compatibility:
  422. </font>
  423. </td>
  424. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  425. valign="top" align="left">
  426. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  427. Ant 1.3
  428. </font>
  429. </td>
  430. </tr>
  431. <tr>
  432. <td bgcolor="#039acc" colspan="" rowspan=""
  433. valign="top" align="left">
  434. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  435. URL:
  436. </font>
  437. </td>
  438. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  439. valign="top" align="left">
  440. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  441. <a href="http://www.euronet.nl/users/tomb/cleanImports/index.html">http://www.euronet.nl/users/tomb/cleanImports/index.html</a>
  442. </font>
  443. </td>
  444. </tr>
  445. <tr>
  446. <td bgcolor="#039acc" colspan="" rowspan=""
  447. valign="top" align="left">
  448. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  449. Contact:
  450. </font>
  451. </td>
  452. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  453. valign="top" align="left">
  454. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  455. <a href="mailto:tomb@euronet.nl">Tom Brus</a>
  456. </font>
  457. </td>
  458. </tr>
  459. <tr>
  460. <td bgcolor="#039acc" colspan="" rowspan=""
  461. valign="top" align="left">
  462. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  463. License:
  464. </font>
  465. </td>
  466. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  467. valign="top" align="left">
  468. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  469. Apache Software License
  470. </font>
  471. </td>
  472. </tr>
  473. </table>
  474. </blockquote>
  475. </td></tr>
  476. </table>
  477. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  478. <tr><td bgcolor="#828DA6">
  479. <font color="#ffffff" face="arial,helvetica,sanserif">
  480. <a name="Clover"><strong>Clover</strong></a>
  481. </font>
  482. </td></tr>
  483. <tr><td>
  484. <blockquote>
  485. <p>Clover is an Ant-based Code Coverage tool. It can be used
  486. seamlessly with Ant-based projects. It provides method,
  487. statement, and branch coverage analysis, and has rich
  488. reporting in XML, HTML or via a Swing GUI.</p>
  489. <table>
  490. <tr>
  491. <td bgcolor="#039acc" colspan="" rowspan=""
  492. valign="top" align="left">
  493. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  494. Compatibility:
  495. </font>
  496. </td>
  497. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  498. valign="top" align="left">
  499. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  500. Ant 1.4.1 or greater
  501. </font>
  502. </td>
  503. </tr>
  504. <tr>
  505. <td bgcolor="#039acc" colspan="" rowspan=""
  506. valign="top" align="left">
  507. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  508. URL:
  509. </font>
  510. </td>
  511. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  512. valign="top" align="left">
  513. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  514. <a href="http://www.thecortex.net/clover">http://www.thecortex.net/clover</a>
  515. </font>
  516. </td>
  517. </tr>
  518. <tr>
  519. <td bgcolor="#039acc" colspan="" rowspan=""
  520. valign="top" align="left">
  521. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  522. Contact:
  523. </font>
  524. </td>
  525. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  526. valign="top" align="left">
  527. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  528. <a href="mailto:clover-support@cortexebusiness.com.au">clover-support@cortexebusiness.com.au</a>
  529. </font>
  530. </td>
  531. </tr>
  532. <tr>
  533. <td bgcolor="#039acc" colspan="" rowspan=""
  534. valign="top" align="left">
  535. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  536. License:
  537. </font>
  538. </td>
  539. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  540. valign="top" align="left">
  541. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  542. Commercial, free licenses available for open source
  543. projects.
  544. </font>
  545. </td>
  546. </tr>
  547. </table>
  548. </blockquote>
  549. </td></tr>
  550. </table>
  551. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  552. <tr><td bgcolor="#828DA6">
  553. <font color="#ffffff" face="arial,helvetica,sanserif">
  554. <a name="Configure"><strong>Configure</strong></a>
  555. </font>
  556. </td></tr>
  557. <tr><td>
  558. <blockquote>
  559. <p>Recursive build support (call ant on every package level,
  560. and only build files in that package or in that package and
  561. everything below) with seperation of source and output.</p>
  562. <p>The task generates build files in any subdirectory (except
  563. for CVS-directories) for you. Only place one build.xml file in
  564. the top and call target 'setup' or
  565. 'rescan'.</p>
  566. <table>
  567. <tr>
  568. <td bgcolor="#039acc" colspan="" rowspan=""
  569. valign="top" align="left">
  570. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  571. Compatibility:
  572. </font>
  573. </td>
  574. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  575. valign="top" align="left">
  576. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  577. Ant 1.2 and 1.3
  578. </font>
  579. </td>
  580. </tr>
  581. <tr>
  582. <td bgcolor="#039acc" colspan="" rowspan=""
  583. valign="top" align="left">
  584. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  585. URL:
  586. </font>
  587. </td>
  588. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  589. valign="top" align="left">
  590. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  591. <a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a>
  592. </font>
  593. </td>
  594. </tr>
  595. <tr>
  596. <td bgcolor="#039acc" colspan="" rowspan=""
  597. valign="top" align="left">
  598. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  599. Contact:
  600. </font>
  601. </td>
  602. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  603. valign="top" align="left">
  604. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  605. <a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a>
  606. </font>
  607. </td>
  608. </tr>
  609. <tr>
  610. <td bgcolor="#039acc" colspan="" rowspan=""
  611. valign="top" align="left">
  612. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  613. License:
  614. </font>
  615. </td>
  616. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  617. valign="top" align="left">
  618. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  619. License derived from Apache Software License
  620. </font>
  621. </td>
  622. </tr>
  623. </table>
  624. </blockquote>
  625. </td></tr>
  626. </table>
  627. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  628. <tr><td bgcolor="#828DA6">
  629. <font color="#ffffff" face="arial,helvetica,sanserif">
  630. <a name="CVSGrab"><strong>CVSGrab</strong></a>
  631. </font>
  632. </td></tr>
  633. <tr><td>
  634. <blockquote>
  635. <p>A little CVS client that can be useful when people are
  636. behind corporate firewall that blocks any cvs
  637. communications. It uses the ViewCVS web interface to access
  638. the CVS repository via standard http, and downloads all the
  639. files present in it.</p>
  640. <p>It works from the command line or as an Ant task.</p>
  641. <table>
  642. <tr>
  643. <td bgcolor="#039acc" colspan="" rowspan=""
  644. valign="top" align="left">
  645. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  646. Compatibility:
  647. </font>
  648. </td>
  649. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  650. valign="top" align="left">
  651. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  652. Ant 1.3 or higher
  653. </font>
  654. </td>
  655. </tr>
  656. <tr>
  657. <td bgcolor="#039acc" colspan="" rowspan=""
  658. valign="top" align="left">
  659. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  660. URL:
  661. </font>
  662. </td>
  663. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  664. valign="top" align="left">
  665. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  666. <a href="http://cvsgrab.sourceforge.net/">http://cvsgrab.sourceforge.net/</a>
  667. </font>
  668. </td>
  669. </tr>
  670. <tr>
  671. <td bgcolor="#039acc" colspan="" rowspan=""
  672. valign="top" align="left">
  673. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  674. Contact:
  675. </font>
  676. </td>
  677. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  678. valign="top" align="left">
  679. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  680. <a href="mailto:cvsgrab-users@lists.sourceforge.net">CVSGrab
  681. user mailing list</a>
  682. </font>
  683. </td>
  684. </tr>
  685. <tr>
  686. <td bgcolor="#039acc" colspan="" rowspan=""
  687. valign="top" align="left">
  688. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  689. License:
  690. </font>
  691. </td>
  692. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  693. valign="top" align="left">
  694. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  695. LGPL
  696. </font>
  697. </td>
  698. </tr>
  699. </table>
  700. </blockquote>
  701. </td></tr>
  702. </table>
  703. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  704. <tr><td bgcolor="#828DA6">
  705. <font color="#ffffff" face="arial,helvetica,sanserif">
  706. <a name="Doxygen task"><strong>Doxygen task</strong></a>
  707. </font>
  708. </td></tr>
  709. <tr><td>
  710. <blockquote>
  711. <p>There are two Ant tasks for running the Doxygen
  712. documentation system.</p>
  713. <table>
  714. <tr>
  715. <td bgcolor="#039acc" colspan="" rowspan=""
  716. valign="top" align="left">
  717. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  718. Compatibility:
  719. </font>
  720. </td>
  721. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  722. valign="top" align="left">
  723. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  724. Ant 1.1 and later
  725. </font>
  726. </td>
  727. </tr>
  728. <tr>
  729. <td bgcolor="#039acc" colspan="" rowspan=""
  730. valign="top" align="left">
  731. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  732. URL:
  733. </font>
  734. </td>
  735. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  736. valign="top" align="left">
  737. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  738. <a href="http://www.bgw.org/projects/java/ant/">http://www.bgw.org/projects/java/ant/</a>
  739. </font>
  740. </td>
  741. </tr>
  742. <tr>
  743. <td bgcolor="#039acc" colspan="" rowspan=""
  744. valign="top" align="left">
  745. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  746. Contact:
  747. </font>
  748. </td>
  749. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  750. valign="top" align="left">
  751. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  752. <a href="mailto:mortis@voicenet.com">Kyle R. Burton</a>
  753. </font>
  754. </td>
  755. </tr>
  756. <tr>
  757. <td bgcolor="#039acc" colspan="" rowspan=""
  758. valign="top" align="left">
  759. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  760. License:
  761. </font>
  762. </td>
  763. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  764. valign="top" align="left">
  765. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  766. Apache Software Foundation License
  767. </font>
  768. </td>
  769. </tr>
  770. </table>
  771. <p>and</p>
  772. <table>
  773. <tr>
  774. <td bgcolor="#039acc" colspan="" rowspan=""
  775. valign="top" align="left">
  776. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  777. Compatibility:
  778. </font>
  779. </td>
  780. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  781. valign="top" align="left">
  782. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  783. Ant 1.5 and later
  784. </font>
  785. </td>
  786. </tr>
  787. <tr>
  788. <td bgcolor="#039acc" colspan="" rowspan=""
  789. valign="top" align="left">
  790. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  791. URL:
  792. </font>
  793. </td>
  794. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  795. valign="top" align="left">
  796. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  797. <a href="http://ant-doxygen.sourceforge.net">http://ant-doxygen.sourceforge.net</a>
  798. </font>
  799. </td>
  800. </tr>
  801. <tr>
  802. <td bgcolor="#039acc" colspan="" rowspan=""
  803. valign="top" align="left">
  804. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  805. Contact:
  806. </font>
  807. </td>
  808. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  809. valign="top" align="left">
  810. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  811. <a href="mailto:akkumar@users.sourceforge.net">Karthik A Kumar</a>
  812. </font>
  813. </td>
  814. </tr>
  815. <tr>
  816. <td bgcolor="#039acc" colspan="" rowspan=""
  817. valign="top" align="left">
  818. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  819. License:
  820. </font>
  821. </td>
  822. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  823. valign="top" align="left">
  824. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  825. Apache Software Foundation License
  826. </font>
  827. </td>
  828. </tr>
  829. </table>
  830. </blockquote>
  831. </td></tr>
  832. </table>
  833. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  834. <tr><td bgcolor="#828DA6">
  835. <font color="#ffffff" face="arial,helvetica,sanserif">
  836. <a name="GenJar"><strong>GenJar</strong></a>
  837. </font>
  838. </td></tr>
  839. <tr><td>
  840. <blockquote>
  841. <p>Builds a JAR file based on class dependencies rather than simply the contents of a directory</p>
  842. <table>
  843. <tr>
  844. <td bgcolor="#039acc" colspan="" rowspan=""
  845. valign="top" align="left">
  846. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  847. Compatibility:
  848. </font>
  849. </td>
  850. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  851. valign="top" align="left">
  852. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  853. Ant 1.4 alpha (built after 2001/08/04) and later
  854. </font>
  855. </td>
  856. </tr>
  857. <tr>
  858. <td bgcolor="#039acc" colspan="" rowspan=""
  859. valign="top" align="left">
  860. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  861. URL:
  862. </font>
  863. </td>
  864. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  865. valign="top" align="left">
  866. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  867. <a href="http://genjar.sourceforge.net/">http://genjar.sourceforge.net/</a>
  868. </font>
  869. </td>
  870. </tr>
  871. <tr>
  872. <td bgcolor="#039acc" colspan="" rowspan=""
  873. valign="top" align="left">
  874. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  875. Contact:
  876. </font>
  877. </td>
  878. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  879. valign="top" align="left">
  880. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  881. <a href="mailto:jesse_dev@yahoo.com">Jesse Stockall</a>
  882. </font>
  883. </td>
  884. </tr>
  885. <tr>
  886. <td bgcolor="#039acc" colspan="" rowspan=""
  887. valign="top" align="left">
  888. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  889. License:
  890. </font>
  891. </td>
  892. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  893. valign="top" align="left">
  894. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  895. Apache Software Foundation License
  896. </font>
  897. </td>
  898. </tr>
  899. </table>
  900. </blockquote>
  901. </td></tr>
  902. </table>
  903. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  904. <tr><td bgcolor="#828DA6">
  905. <font color="#ffffff" face="arial,helvetica,sanserif">
  906. <a name="Greebo"><strong>Greebo</strong></a>
  907. </font>
  908. </td></tr>
  909. <tr><td>
  910. <blockquote>
  911. <p>Greebo is an Ant-task for downloading dependency files
  912. (currently only jars) from a network to a specified directory,
  913. much like Maven. It supports multiple local and remote
  914. repositories with either flat or maven-like structures. It can
  915. read the dependency list from a Maven project file, a
  916. maven-like dependency file, or directly from the build.xml
  917. file.</p>
  918. <table>
  919. <tr>
  920. <td bgcolor="#039acc" colspan="" rowspan=""
  921. valign="top" align="left">
  922. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  923. Compatibility:
  924. </font>
  925. </td>
  926. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  927. valign="top" align="left">
  928. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  929. Ant 1.5
  930. </font>
  931. </td>
  932. </tr>
  933. <tr>
  934. <td bgcolor="#039acc" colspan="" rowspan=""
  935. valign="top" align="left">
  936. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  937. URL:
  938. </font>
  939. </td>
  940. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  941. valign="top" align="left">
  942. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  943. <a href="http://www.discore.com/oz/new/index.htm">http://www.discore.com/oz/new/index.htm</a>
  944. </font>
  945. </td>
  946. </tr>
  947. <tr>
  948. <td bgcolor="#039acc" colspan="" rowspan=""
  949. valign="top" align="left">
  950. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  951. Contact:
  952. </font>
  953. </td>
  954. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  955. valign="top" align="left">
  956. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  957. <a href="mailto:ozbene@discore.com">Ozben Evren</a>
  958. </font>
  959. </td>
  960. </tr>
  961. <tr>
  962. <td bgcolor="#039acc" colspan="" rowspan=""
  963. valign="top" align="left">
  964. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  965. License:
  966. </font>
  967. </td>
  968. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  969. valign="top" align="left">
  970. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  971. Apache Software License
  972. </font>
  973. </td>
  974. </tr>
  975. </table>
  976. </blockquote>
  977. </td></tr>
  978. </table>
  979. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  980. <tr><td bgcolor="#828DA6">
  981. <font color="#ffffff" face="arial,helvetica,sanserif">
  982. <a name="Importscrubber"><strong>Importscrubber</strong></a>
  983. </font>
  984. </td></tr>
  985. <tr><td>
  986. <blockquote>
  987. <p>Removes unnecessary import statements from a Java source code file.</p>
  988. <table>
  989. <tr>
  990. <td bgcolor="#039acc" colspan="" rowspan=""
  991. valign="top" align="left">
  992. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  993. Compatibility:
  994. </font>
  995. </td>
  996. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  997. valign="top" align="left">
  998. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  999. Ant 1.3
  1000. </font>
  1001. </td>
  1002. </tr>
  1003. <tr>
  1004. <td bgcolor="#039acc" colspan="" rowspan=""
  1005. valign="top" align="left">
  1006. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1007. URL:
  1008. </font>
  1009. </td>
  1010. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1011. valign="top" align="left">
  1012. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1013. <a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a>
  1014. </font>
  1015. </td>
  1016. </tr>
  1017. <tr>
  1018. <td bgcolor="#039acc" colspan="" rowspan=""
  1019. valign="top" align="left">
  1020. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1021. Contact:
  1022. </font>
  1023. </td>
  1024. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1025. valign="top" align="left">
  1026. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1027. <a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a>
  1028. </font>
  1029. </td>
  1030. </tr>
  1031. <tr>
  1032. <td bgcolor="#039acc" colspan="" rowspan=""
  1033. valign="top" align="left">
  1034. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1035. License:
  1036. </font>
  1037. </td>
  1038. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1039. valign="top" align="left">
  1040. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1041. LGPL
  1042. </font>
  1043. </td>
  1044. </tr>
  1045. </table>
  1046. </blockquote>
  1047. </td></tr>
  1048. </table>
  1049. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1050. <tr><td bgcolor="#828DA6">
  1051. <font color="#ffffff" face="arial,helvetica,sanserif">
  1052. <a name="IsDirValidator"><strong>IsDirValidator</strong></a>
  1053. </font>
  1054. </td></tr>
  1055. <tr><td>
  1056. <blockquote>
  1057. <p>Checks whether a given directory structure conforms to
  1058. certain rules that are defined via nested elements of the
  1059. task.</p>
  1060. <table>
  1061. <tr>
  1062. <td bgcolor="#039acc" colspan="" rowspan=""
  1063. valign="top" align="left">
  1064. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1065. Compatibility:
  1066. </font>
  1067. </td>
  1068. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1069. valign="top" align="left">
  1070. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1071. Ant 1.4
  1072. </font>
  1073. </td>
  1074. </tr>
  1075. <tr>
  1076. <td bgcolor="#039acc" colspan="" rowspan=""
  1077. valign="top" align="left">
  1078. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1079. URL:
  1080. </font>
  1081. </td>
  1082. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1083. valign="top" align="left">
  1084. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1085. <a href="http://isvalidator.sourceforge.net/en/isDirValidator.htm">http://isvalidator.sourceforge.net/en/isDirValidator.htm</a>
  1086. </font>
  1087. </td>
  1088. </tr>
  1089. <tr>
  1090. <td bgcolor="#039acc" colspan="" rowspan=""
  1091. valign="top" align="left">
  1092. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1093. Contact:
  1094. </font>
  1095. </td>
  1096. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1097. valign="top" align="left">
  1098. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1099. <a href="mailto:news@inigoserrano.com">Iigo Serrano</a>
  1100. </font>
  1101. </td>
  1102. </tr>
  1103. <tr>
  1104. <td bgcolor="#039acc" colspan="" rowspan=""
  1105. valign="top" align="left">
  1106. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1107. License:
  1108. </font>
  1109. </td>
  1110. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1111. valign="top" align="left">
  1112. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1113. GNU General Public License
  1114. </font>
  1115. </td>
  1116. </tr>
  1117. </table>
  1118. </blockquote>
  1119. </td></tr>
  1120. </table>
  1121. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1122. <tr><td bgcolor="#828DA6">
  1123. <font color="#ffffff" face="arial,helvetica,sanserif">
  1124. <a name="Jalopy"><strong>Jalopy</strong></a>
  1125. </font>
  1126. </td></tr>
  1127. <tr><td>
  1128. <blockquote>
  1129. <p>An Ant Plug-in for the Java Source Code Formatter
  1130. Jalopy.</p>
  1131. <table>
  1132. <tr>
  1133. <td bgcolor="#039acc" colspan="" rowspan=""
  1134. valign="top" align="left">
  1135. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1136. Compatibility:
  1137. </font>
  1138. </td>
  1139. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1140. valign="top" align="left">
  1141. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1142. Ant 1.4 (or higher)
  1143. </font>
  1144. </td>
  1145. </tr>
  1146. <tr>
  1147. <td bgcolor="#039acc" colspan="" rowspan=""
  1148. valign="top" align="left">
  1149. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1150. URL:
  1151. </font>
  1152. </td>
  1153. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1154. valign="top" align="left">
  1155. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1156. <a href="http://jalopy.sourceforge.net">http://jalopy.sourceforge.net</a>
  1157. </font>
  1158. </td>
  1159. </tr>
  1160. <tr>
  1161. <td bgcolor="#039acc" colspan="" rowspan=""
  1162. valign="top" align="left">
  1163. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1164. Contact:
  1165. </font>
  1166. </td>
  1167. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1168. valign="top" align="left">
  1169. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1170. <a href="http://jalopy.sf.net/contact.html">http://jalopy.sf.net/contact.html</a>
  1171. </font>
  1172. </td>
  1173. </tr>
  1174. <tr>
  1175. <td bgcolor="#039acc" colspan="" rowspan=""
  1176. valign="top" align="left">
  1177. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1178. License:
  1179. </font>
  1180. </td>
  1181. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1182. valign="top" align="left">
  1183. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1184. Starting with release 1.0 Beta 6 the license is the
  1185. BSD License. Prior releases were under the GNU General
  1186. Public License.
  1187. </font>
  1188. </td>
  1189. </tr>
  1190. </table>
  1191. </blockquote>
  1192. </td></tr>
  1193. </table>
  1194. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1195. <tr><td bgcolor="#828DA6">
  1196. <font color="#ffffff" face="arial,helvetica,sanserif">
  1197. <a name="Javamake"><strong>Javamake</strong></a>
  1198. </font>
  1199. </td></tr>
  1200. <tr><td>
  1201. <blockquote>
  1202. <p>A task to compile Java sources and manage class file
  1203. dependencies. Functionality is equivalent to that of standard
  1204. Javac and Depend tasks combined, with improved dependency
  1205. checking.</p>
  1206. <table>
  1207. <tr>
  1208. <td bgcolor="#039acc" colspan="" rowspan=""
  1209. valign="top" align="left">
  1210. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1211. Compatibility:
  1212. </font>
  1213. </td>
  1214. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1215. valign="top" align="left">
  1216. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1217. Ant 1.4.1
  1218. </font>
  1219. </td>
  1220. </tr>
  1221. <tr>
  1222. <td bgcolor="#039acc" colspan="" rowspan=""
  1223. valign="top" align="left">
  1224. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1225. URL:
  1226. </font>
  1227. </td>
  1228. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1229. valign="top" align="left">
  1230. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1231. <a href="http://www.experimentalstuff.com/Technologies/JavaMake/index.html">http://www.experimentalstuff.com/Technologies/JavaMake/index.html</a>
  1232. </font>
  1233. </td>
  1234. </tr>
  1235. <tr>
  1236. <td bgcolor="#039acc" colspan="" rowspan=""
  1237. valign="top" align="left">
  1238. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1239. Contact:
  1240. </font>
  1241. </td>
  1242. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1243. valign="top" align="left">
  1244. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1245. <a href="mailto:Mikhail.Dmitriev@eng.sun.com">Mikhail Dmitriev</a>
  1246. </font>
  1247. </td>
  1248. </tr>
  1249. <tr>
  1250. <td bgcolor="#039acc" colspan="" rowspan=""
  1251. valign="top" align="left">
  1252. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1253. License:
  1254. </font>
  1255. </td>
  1256. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1257. valign="top" align="left">
  1258. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1259. BSD-like License
  1260. </font>
  1261. </td>
  1262. </tr>
  1263. </table>
  1264. </blockquote>
  1265. </td></tr>
  1266. </table>
  1267. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1268. <tr><td bgcolor="#828DA6">
  1269. <font color="#ffffff" face="arial,helvetica,sanserif">
  1270. <a name="J2ME Ant Tasks"><strong>J2ME Ant Tasks</strong></a>
  1271. </font>
  1272. </td></tr>
  1273. <tr><td>
  1274. <blockquote>
  1275. <p>There are three different sets of tasks to help build <a href="http://java.sun.com/j2me/">Java 2 Platform, Micro
  1276. Edition</a> (J2ME) applications.</p>
  1277. <p>This set supports CLDC and the K Virtual Machine (KVM):</p>
  1278. <table>
  1279. <tr>
  1280. <td bgcolor="#039acc" colspan="" rowspan=""
  1281. valign="top" align="left">
  1282. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1283. Compatibility:
  1284. </font>
  1285. </td>
  1286. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1287. valign="top" align="left">
  1288. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1289. Ant 1.3
  1290. </font>
  1291. </td>
  1292. </tr>
  1293. <tr>
  1294. <td bgcolor="#039acc" colspan="" rowspan=""
  1295. valign="top" align="left">
  1296. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1297. URL:
  1298. </font>
  1299. </td>
  1300. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1301. valign="top" align="left">
  1302. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1303. <a href="http://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a>
  1304. </font>
  1305. </td>
  1306. </tr>
  1307. <tr>
  1308. <td bgcolor="#039acc" colspan="" rowspan=""
  1309. valign="top" align="left">
  1310. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1311. Contact:
  1312. </font>
  1313. </td>
  1314. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1315. valign="top" align="left">
  1316. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1317. <a href="mailto:drib@enteract.com">Dave Dribin</a>
  1318. </font>
  1319. </td>
  1320. </tr>
  1321. <tr>
  1322. <td bgcolor="#039acc" colspan="" rowspan=""
  1323. valign="top" align="left">
  1324. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1325. License:
  1326. </font>
  1327. </td>
  1328. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1329. valign="top" align="left">
  1330. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1331. Apache Software License
  1332. </font>
  1333. </td>
  1334. </tr>
  1335. </table>
  1336. <p>And this set works with the J2ME Wireless Toolkit and MIDP
  1337. for PalmOS:</p>
  1338. <table>
  1339. <tr>
  1340. <td bgcolor="#039acc" colspan="" rowspan=""
  1341. valign="top" align="left">
  1342. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1343. Compatibility:
  1344. </font>
  1345. </td>
  1346. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1347. valign="top" align="left">
  1348. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1349. Ant 1.3
  1350. </font>
  1351. </td>
  1352. </tr>
  1353. <tr>
  1354. <td bgcolor="#039acc" colspan="" rowspan=""
  1355. valign="top" align="left">
  1356. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1357. URL:
  1358. </font>
  1359. </td>
  1360. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1361. valign="top" align="left">
  1362. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1363. <a href="http://www.stampysoft.com/ant/">http://www.stampysoft.com/ant/</a>
  1364. </font>
  1365. </td>
  1366. </tr>
  1367. <tr>
  1368. <td bgcolor="#039acc" colspan="" rowspan=""
  1369. valign="top" align="left">
  1370. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1371. Contact:
  1372. </font>
  1373. </td>
  1374. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1375. valign="top" align="left">
  1376. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1377. <a href="mailto:jeckels@stampysoft.com">Josh Eckels</a>
  1378. </font>
  1379. </td>
  1380. </tr>
  1381. <tr>
  1382. <td bgcolor="#039acc" colspan="" rowspan=""
  1383. valign="top" align="left">
  1384. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1385. License:
  1386. </font>
  1387. </td>
  1388. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1389. valign="top" align="left">
  1390. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1391. MIT License
  1392. </font>
  1393. </td>
  1394. </tr>
  1395. </table>
  1396. <p>With Antenna, you can compile, preverify, package, and
  1397. obfuscate your MIDP applications, as well as convert them to
  1398. PRC files designed to run on MIDP for PalmOS. The tasks are
  1399. mostly built around the Wireless Toolkit and the free
  1400. RetroGuard obfuscator, with some additional gimmicks like
  1401. automatic version numbering.</p>
  1402. <table>
  1403. <tr>
  1404. <td bgcolor="#039acc" colspan="" rowspan=""
  1405. valign="top" align="left">
  1406. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1407. Compatibility:
  1408. </font>
  1409. </td>
  1410. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1411. valign="top" align="left">
  1412. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1413. Ant 1.4.1 or later
  1414. </font>
  1415. </td>
  1416. </tr>
  1417. <tr>
  1418. <td bgcolor="#039acc" colspan="" rowspan=""
  1419. valign="top" align="left">
  1420. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1421. URL:
  1422. </font>
  1423. </td>
  1424. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1425. valign="top" align="left">
  1426. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1427. <a href="http://antenna.sourceforge.net/">http://antenna.sourceforge.net/</a>
  1428. </font>
  1429. </td>
  1430. </tr>
  1431. <tr>
  1432. <td bgcolor="#039acc" colspan="" rowspan=""
  1433. valign="top" align="left">
  1434. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1435. Contact:
  1436. </font>
  1437. </td>
  1438. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1439. valign="top" align="left">
  1440. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1441. <a href="mailto:joerg@pleumann.de">Jrg Pleumann</a>
  1442. </font>
  1443. </td>
  1444. </tr>
  1445. <tr>
  1446. <td bgcolor="#039acc" colspan="" rowspan=""
  1447. valign="top" align="left">
  1448. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1449. License:
  1450. </font>
  1451. </td>
  1452. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1453. valign="top" align="left">
  1454. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1455. GNU Lesser General Public License
  1456. </font>
  1457. </td>
  1458. </tr>
  1459. </table>
  1460. </blockquote>
  1461. </td></tr>
  1462. </table>
  1463. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1464. <tr><td bgcolor="#828DA6">
  1465. <font color="#ffffff" face="arial,helvetica,sanserif">
  1466. <a name="javarec"><strong>javarec</strong></a>
  1467. </font>
  1468. </td></tr>
  1469. <tr><td>
  1470. <blockquote>
  1471. <p>Ant tasks that generate record classes for VisualAge for
  1472. Java from Cobol copy books.</p>
  1473. <table>
  1474. <tr>
  1475. <td bgcolor="#039acc" colspan="" rowspan=""
  1476. valign="top" align="left">
  1477. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1478. Compatibility:
  1479. </font>
  1480. </td>
  1481. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1482. valign="top" align="left">
  1483. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1484. Ant 1.4
  1485. </font>
  1486. </td>
  1487. </tr>
  1488. <tr>
  1489. <td bgcolor="#039acc" colspan="" rowspan=""
  1490. valign="top" align="left">
  1491. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1492. URL:
  1493. </font>
  1494. </td>
  1495. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1496. valign="top" align="left">
  1497. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1498. <a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a>
  1499. </font>
  1500. </td>
  1501. </tr>
  1502. <tr>
  1503. <td bgcolor="#039acc" colspan="" rowspan=""
  1504. valign="top" align="left">
  1505. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1506. Contact:
  1507. </font>
  1508. </td>
  1509. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1510. valign="top" align="left">
  1511. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1512. <a href="mailto:pglezen@us.ibm.com">Paul Glezen</a>
  1513. </font>
  1514. </td>
  1515. </tr>
  1516. <tr>
  1517. <td bgcolor="#039acc" colspan="" rowspan=""
  1518. valign="top" align="left">
  1519. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1520. License:
  1521. </font>
  1522. </td>
  1523. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1524. valign="top" align="left">
  1525. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1526. Apache Software License
  1527. </font>
  1528. </td>
  1529. </tr>
  1530. </table>
  1531. </blockquote>
  1532. </td></tr>
  1533. </table>
  1534. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1535. <tr><td bgcolor="#828DA6">
  1536. <font color="#ffffff" face="arial,helvetica,sanserif">
  1537. <a name="JCSC"><strong>JCSC</strong></a>
  1538. </font>
  1539. </td></tr>
  1540. <tr><td>
  1541. <blockquote>
  1542. <p>JCSC is a Java Coding Standard Checker which also features
  1543. the generation of some code metrics. It is a command line tool
  1544. with an Ant task to scan whole package trees. The result can
  1545. viewed in an JavaDoc style web page.</p>
  1546. <table>
  1547. <tr>
  1548. <td bgcolor="#039acc" colspan="" rowspan=""
  1549. valign="top" align="left">
  1550. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1551. Compatibility:
  1552. </font>
  1553. </td>
  1554. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1555. valign="top" align="left">
  1556. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1557. Ant &gt;= 1.5
  1558. </font>
  1559. </td>
  1560. </tr>
  1561. <tr>
  1562. <td bgcolor="#039acc" colspan="" rowspan=""
  1563. valign="top" align="left">
  1564. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1565. URL:
  1566. </font>
  1567. </td>
  1568. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1569. valign="top" align="left">
  1570. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1571. <a href="http://jcsc.sourceforge.net/">http://jcsc.sourceforge.net/</a>
  1572. </font>
  1573. </td>
  1574. </tr>
  1575. <tr>
  1576. <td bgcolor="#039acc" colspan="" rowspan=""
  1577. valign="top" align="left">
  1578. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1579. Contact:
  1580. </font>
  1581. </td>
  1582. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1583. valign="top" align="left">
  1584. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1585. <a href="mailto:rjocham72@netscape.net">Ralph Jocham</a>
  1586. </font>
  1587. </td>
  1588. </tr>
  1589. <tr>
  1590. <td bgcolor="#039acc" colspan="" rowspan=""
  1591. valign="top" align="left">
  1592. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1593. License:
  1594. </font>
  1595. </td>
  1596. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1597. valign="top" align="left">
  1598. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1599. GNU General Public License
  1600. </font>
  1601. </td>
  1602. </tr>
  1603. </table>
  1604. </blockquote>
  1605. </td></tr>
  1606. </table>
  1607. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1608. <tr><td bgcolor="#828DA6">
  1609. <font color="#ffffff" face="arial,helvetica,sanserif">
  1610. <a name="Jing Task"><strong>Jing Task</strong></a>
  1611. </font>
  1612. </td></tr>
  1613. <tr><td>
  1614. <blockquote>
  1615. <p> Validates XML files against the RELAX NG alternative to XML Schema.
  1616. The Jing task for Ant allows you to efficiently validate
  1617. multiple files against multiple RELAX NG patterns and integrate
  1618. RELAX NG validation with other XML processing.</p>
  1619. <table>
  1620. <tr>
  1621. <td bgcolor="#039acc" colspan="" rowspan=""
  1622. valign="top" align="left">
  1623. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1624. Compatibility:
  1625. </font>
  1626. </td>
  1627. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1628. valign="top" align="left">
  1629. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1630. Ant 1.4 and later
  1631. </font>
  1632. </td>
  1633. </tr>
  1634. <tr>
  1635. <td bgcolor="#039acc" colspan="" rowspan=""
  1636. valign="top" align="left">
  1637. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1638. URL:
  1639. </font>
  1640. </td>
  1641. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1642. valign="top" align="left">
  1643. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1644. <a href="http://www.thaiopensource.com/relaxng/jing-ant.html">
  1645. http://www.thaiopensource.com/relaxng/jing-ant.html</a>
  1646. </font>
  1647. </td>
  1648. </tr>
  1649. <tr>
  1650. <td bgcolor="#039acc" colspan="" rowspan=""
  1651. valign="top" align="left">
  1652. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1653. License:
  1654. </font>
  1655. </td>
  1656. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1657. valign="top" align="left">
  1658. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1659. BSD-like
  1660. </font>
  1661. </td>
  1662. </tr>
  1663. </table>
  1664. </blockquote>
  1665. </td></tr>
  1666. </table>
  1667. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1668. <tr><td bgcolor="#828DA6">
  1669. <font color="#ffffff" face="arial,helvetica,sanserif">
  1670. <a name="jMetra"><strong>jMetra</strong></a>
  1671. </font>
  1672. </td></tr>
  1673. <tr><td>
  1674. <blockquote>
  1675. <p>jMetra is a tool for collecting code metrics across a
  1676. project lifecycle and compiling the results into
  1677. JavaDoc-styled documentation to analyze project metrics over
  1678. time. jMetra is best utilized by integrating it with your
  1679. project's scheduled build process.</p>
  1680. <p>It works from the command line or using several provided
  1681. Ant tasks.</p>
  1682. <table>
  1683. <tr>
  1684. <td bgcolor="#039acc" colspan="" rowspan=""
  1685. valign="top" align="left">
  1686. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1687. Compatibility:
  1688. </font>
  1689. </td>
  1690. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1691. valign="top" align="left">
  1692. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1693. Ant 1.4 and higher
  1694. </font>
  1695. </td>
  1696. </tr>
  1697. <tr>
  1698. <td bgcolor="#039acc" colspan="" rowspan=""
  1699. valign="top" align="left">
  1700. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1701. URL:
  1702. </font>
  1703. </td>
  1704. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1705. valign="top" align="left">
  1706. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1707. <a href="http://www.jmetra.com/">http://www.jmetra.com/</a>
  1708. </font>
  1709. </td>
  1710. </tr>
  1711. <tr>
  1712. <td bgcolor="#039acc" colspan="" rowspan=""
  1713. valign="top" align="left">
  1714. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1715. Contact:
  1716. </font>
  1717. </td>
  1718. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1719. valign="top" align="left">
  1720. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1721. <a href="mailto:tnewton@hypercisioninc.com">R Todd Newton
  1722. </a>
  1723. </font>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td bgcolor="#039acc" colspan="" rowspan=""
  1728. valign="top" align="left">
  1729. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1730. License:
  1731. </font>
  1732. </td>
  1733. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1734. valign="top" align="left">
  1735. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1736. Commercial, free licenses for open source projects and
  1737. evaluations.
  1738. </font>
  1739. </td>
  1740. </tr>
  1741. </table>
  1742. </blockquote>
  1743. </td></tr>
  1744. </table>
  1745. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1746. <tr><td bgcolor="#828DA6">
  1747. <font color="#ffffff" face="arial,helvetica,sanserif">
  1748. <a name="JNI"><strong>JNI</strong></a>
  1749. </font>
  1750. </td></tr>
  1751. <tr><td>
  1752. <blockquote>
  1753. <p>
  1754. JNI is a free toolkit that makes easy work of
  1755. integrating Java and C through the Java Native
  1756. Interface (JNI). It includes a code generator that
  1757. generates both Java "proxy" classes to access C
  1758. "peer" classes, and C "proxy" classes to access
  1759. Java "peer" classes or interfaces. It also
  1760. includes a core library with a simplified JVM
  1761. interface as well as "helper" classes to ease
  1762. working with the JNI data types. The code
  1763. generation is driven by an XML project file that
  1764. can be created with the assistance of the GUI
  1765. Project Manager. The code generation can be
  1766. invoked either from Ant or from the
  1767. GUI. Includes a comprehensive printable PDF User
  1768. Guide and plenty of examples.</p>
  1769. <table>
  1770. <tr>
  1771. <td bgcolor="#039acc" colspan="" rowspan=""
  1772. valign="top" align="left">
  1773. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1774. Compatibility:
  1775. </font>
  1776. </td>
  1777. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1778. valign="top" align="left">
  1779. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1780. Ant 1.4
  1781. </font>
  1782. </td>
  1783. </tr>
  1784. <tr>
  1785. <td bgcolor="#039acc" colspan="" rowspan=""
  1786. valign="top" align="left">
  1787. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1788. URL:
  1789. </font>
  1790. </td>
  1791. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1792. valign="top" align="left">
  1793. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1794. <a href="http://jnipp.sf.net/">http://jnipp.sf.net/</a>
  1795. </font>
  1796. </td>
  1797. </tr>
  1798. <tr>
  1799. <td bgcolor="#039acc" colspan="" rowspan=""
  1800. valign="top" align="left">
  1801. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1802. Contact:
  1803. </font>
  1804. </td>
  1805. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1806. valign="top" align="left">
  1807. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1808. <a href="mailto:ptrewhella@users.sf.net">Phillip E. Trewhella</a>
  1809. </font>
  1810. </td>
  1811. </tr>
  1812. <tr>
  1813. <td bgcolor="#039acc" colspan="" rowspan=""
  1814. valign="top" align="left">
  1815. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1816. License:
  1817. </font>
  1818. </td>
  1819. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1820. valign="top" align="left">
  1821. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1822. GNU LGPL
  1823. </font>
  1824. </td>
  1825. </tr>
  1826. </table>
  1827. </blockquote>
  1828. </td></tr>
  1829. </table>
  1830. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1831. <tr><td bgcolor="#828DA6">
  1832. <font color="#ffffff" face="arial,helvetica,sanserif">
  1833. <a name="JRun Ant Tasks"><strong>JRun Ant Tasks</strong></a>
  1834. </font>
  1835. </td></tr>
  1836. <tr><td>
  1837. <blockquote>
  1838. <p>JRun 4 SP1 ships with lib/jrun-ant-tasks.jar, which defines
  1839. three Ant tasks: jrun, jrunapp, and jrunjmx. Documentation
  1840. for the tasks can be found in JRun under
  1841. docs/ant/jrun.html.</p>
  1842. <p>Note that the service pack must be installed on top of an
  1843. existing JRun 4 installation.</p>
  1844. <table>
  1845. <tr>
  1846. <td bgcolor="#039acc" colspan="" rowspan=""
  1847. valign="top" align="left">
  1848. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1849. Compatibility:
  1850. </font>
  1851. </td>
  1852. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1853. valign="top" align="left">
  1854. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1855. Ant 1.4 or higher
  1856. </font>
  1857. </td>
  1858. </tr>
  1859. <tr>
  1860. <td bgcolor="#039acc" colspan="" rowspan=""
  1861. valign="top" align="left">
  1862. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1863. URL:
  1864. </font>
  1865. </td>
  1866. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1867. valign="top" align="left">
  1868. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1869. <a href="http://dynamic.macromedia.com/bin/MM/software/trial/hwswrec.jsp?product=jrun_sp">http://dynamic.macromedia.com/bin/MM/software/trial/hwswrec.jsp?product=jrun_sp</a>
  1870. </font>
  1871. </td>
  1872. </tr>
  1873. <tr>
  1874. <td bgcolor="#039acc" colspan="" rowspan=""
  1875. valign="top" align="left">
  1876. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1877. Contact:
  1878. </font>
  1879. </td>
  1880. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1881. valign="top" align="left">
  1882. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1883. <a href="mailto:bdeitte@macromedia.com">Brian Deitte</a>
  1884. </font>
  1885. </td>
  1886. </tr>
  1887. <tr>
  1888. <td bgcolor="#039acc" colspan="" rowspan=""
  1889. valign="top" align="left">
  1890. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1891. License:
  1892. </font>
  1893. </td>
  1894. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1895. valign="top" align="left">
  1896. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1897. Commercial
  1898. </font>
  1899. </td>
  1900. </tr>
  1901. </table>
  1902. </blockquote>
  1903. </td></tr>
  1904. </table>
  1905. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1906. <tr><td bgcolor="#828DA6">
  1907. <font color="#ffffff" face="arial,helvetica,sanserif">
  1908. <a name="Macker"><strong>Macker</strong></a>
  1909. </font>
  1910. </td></tr>
  1911. <tr><td>
  1912. <blockquote>
  1913. <p>A build-time architectural testing tool, designed
  1914. to maintain clean layering / tiering / modularity.
  1915. Macker works against compiled class files, checking
  1916. dependencies between classes against a set of
  1917. pattern-based access rules you specify for your
  1918. project in an XML rules file. Macker doesn't presume
  1919. anything about your architecture -- you write the
  1920. rules, and Macker keeps you honest about them.</p>
  1921. <table>
  1922. <tr>
  1923. <td bgcolor="#039acc" colspan="" rowspan=""
  1924. valign="top" align="left">
  1925. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1926. Compatibility:
  1927. </font>
  1928. </td>
  1929. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1930. valign="top" align="left">
  1931. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1932. Ant 1.5 and higher (1.4 untested but may work)
  1933. </font>
  1934. </td>
  1935. </tr>
  1936. <tr>
  1937. <td bgcolor="#039acc" colspan="" rowspan=""
  1938. valign="top" align="left">
  1939. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1940. URL:
  1941. </font>
  1942. </td>
  1943. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1944. valign="top" align="left">
  1945. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1946. <a href="http://innig.net/macker/">http://innig.net/macker/</a>
  1947. </font>
  1948. </td>
  1949. </tr>
  1950. <tr>
  1951. <td bgcolor="#039acc" colspan="" rowspan=""
  1952. valign="top" align="left">
  1953. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1954. Contact:
  1955. </font>
  1956. </td>
  1957. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1958. valign="top" align="left">
  1959. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1960. <a href="http://innig.net/macker/contact.html">Paul Cantrell</a>
  1961. </font>
  1962. </td>
  1963. </tr>
  1964. <tr>
  1965. <td bgcolor="#039acc" colspan="" rowspan=""
  1966. valign="top" align="left">
  1967. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1968. License:
  1969. </font>
  1970. </td>
  1971. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1972. valign="top" align="left">
  1973. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1974. GNU GPL 2.0
  1975. </font>
  1976. </td>
  1977. </tr>
  1978. </table>
  1979. </blockquote>
  1980. </td></tr>
  1981. </table>
  1982. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1983. <tr><td bgcolor="#828DA6">
  1984. <font color="#ffffff" face="arial,helvetica,sanserif">
  1985. <a name="PMD"><strong>PMD</strong></a>
  1986. </font>
  1987. </td></tr>
  1988. <tr><td>
  1989. <blockquote>
  1990. <p>PMD checks Java source code for unused variables,
  1991. unnecessary object creation, etc</p>
  1992. <table>
  1993. <tr>
  1994. <td bgcolor="#039acc" colspan="" rowspan=""
  1995. valign="top" align="left">
  1996. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1997. Compatibility:
  1998. </font>
  1999. </td>
  2000. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2001. valign="top" align="left">
  2002. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2003. Ant 1.4 and higher
  2004. </font>
  2005. </td>
  2006. </tr>
  2007. <tr>
  2008. <td bgcolor="#039acc" colspan="" rowspan=""
  2009. valign="top" align="left">
  2010. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2011. URL:
  2012. </font>
  2013. </td>
  2014. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2015. valign="top" align="left">
  2016. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2017. <a href="http://pmd.sf.net/">http://pmd.sf.net/</a>
  2018. </font>
  2019. </td>
  2020. </tr>
  2021. <tr>
  2022. <td bgcolor="#039acc" colspan="" rowspan=""
  2023. valign="top" align="left">
  2024. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2025. Contact:
  2026. </font>
  2027. </td>
  2028. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2029. valign="top" align="left">
  2030. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2031. <a href="mailto:tcopeland@apache.org">Tom Copeland</a>
  2032. </font>
  2033. </td>
  2034. </tr>
  2035. <tr>
  2036. <td bgcolor="#039acc" colspan="" rowspan=""
  2037. valign="top" align="left">
  2038. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2039. License:
  2040. </font>
  2041. </td>
  2042. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2043. valign="top" align="left">
  2044. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2045. Apache Software Foundation License
  2046. </font>
  2047. </td>
  2048. </tr>
  2049. </table>
  2050. </blockquote>
  2051. </td></tr>
  2052. </table>
  2053. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2054. <tr><td bgcolor="#828DA6">
  2055. <font color="#ffffff" face="arial,helvetica,sanserif">
  2056. <a name="Purge"><strong>Purge</strong></a>
  2057. </font>
  2058. </td></tr>
  2059. <tr><td>
  2060. <blockquote>
  2061. <p>Purge deletes all but the most recent few files from a fileset.
  2062. For example: if you have generated files (logs, .ear, .war, .jar
  2063. etc) accumulating in a directory, the purge task will allow you
  2064. to delete the older files, keeping just the most recent ones.</p>
  2065. <table>
  2066. <tr>
  2067. <td bgcolor="#039acc" colspan="" rowspan=""
  2068. valign="top" align="left">
  2069. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2070. Compatibility:
  2071. </font>
  2072. </td>
  2073. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2074. valign="top" align="left">
  2075. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2076. Ant 1.4 or above
  2077. </font>
  2078. </td>
  2079. </tr>
  2080. <tr>
  2081. <td bgcolor="#039acc" colspan="" rowspan=""
  2082. valign="top" align="left">
  2083. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2084. URL:
  2085. </font>
  2086. </td>
  2087. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2088. valign="top" align="left">
  2089. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2090. <a href="http://www.dallaway.com/ant/">http://www.dallaway.com/ant/</a>
  2091. </font>
  2092. </td>
  2093. </tr>
  2094. <tr>
  2095. <td bgcolor="#039acc" colspan="" rowspan=""
  2096. valign="top" align="left">
  2097. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2098. Contact:
  2099. </font>
  2100. </td>
  2101. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2102. valign="top" align="left">
  2103. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2104. <a href="mailto:purge@dallaway.com">Richard Dallaway</a>
  2105. </font>
  2106. </td>
  2107. </tr>
  2108. <tr>
  2109. <td bgcolor="#039acc" colspan="" rowspan=""
  2110. valign="top" align="left">
  2111. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2112. License:
  2113. </font>
  2114. </td>
  2115. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2116. valign="top" align="left">
  2117. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2118. LGPL
  2119. </font>
  2120. </td>
  2121. </tr>
  2122. </table>
  2123. </blockquote>
  2124. </td></tr>
  2125. </table>
  2126. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2127. <tr><td bgcolor="#828DA6">
  2128. <font color="#ffffff" face="arial,helvetica,sanserif">
  2129. <a name="SerialVer"><strong>SerialVer</strong></a>
  2130. </font>
  2131. </td></tr>
  2132. <tr><td>
  2133. <blockquote>
  2134. <p>SerialVer adds the Java serialver functionality to Apache
  2135. Ant. This project adds Tasks and FilterReaders to get, to
  2136. insert and to modify the serialVersionUID in the source code
  2137. of a serializable class.</p>
  2138. <table>
  2139. <tr>
  2140. <td bgcolor="#039acc" colspan="" rowspan=""
  2141. valign="top" align="left">
  2142. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2143. Compatibility:
  2144. </font>
  2145. </td>
  2146. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2147. valign="top" align="left">
  2148. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2149. Ant 1.5.1 and later
  2150. </font>
  2151. </td>
  2152. </tr>
  2153. <tr>
  2154. <td bgcolor="#039acc" colspan="" rowspan=""
  2155. valign="top" align="left">
  2156. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2157. URL:
  2158. </font>
  2159. </td>
  2160. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2161. valign="top" align="left">
  2162. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2163. <a href="http://serialver.sourceforge.net/">http://serialver.sourceforge.net/</a>
  2164. </font>
  2165. </td>
  2166. </tr>
  2167. <tr>
  2168. <td bgcolor="#039acc" colspan="" rowspan=""
  2169. valign="top" align="left">
  2170. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2171. Contact:
  2172. </font>
  2173. </td>
  2174. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2175. valign="top" align="left">
  2176. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2177. <a href="https://lists.sourceforge.net/lists/listinfo/serialver-development">developer mailing list</a>
  2178. </font>
  2179. </td>
  2180. </tr>
  2181. <tr>
  2182. <td bgcolor="#039acc" colspan="" rowspan=""
  2183. valign="top" align="left">
  2184. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2185. License:
  2186. </font>
  2187. </td>
  2188. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2189. valign="top" align="left">
  2190. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2191. Apache Software License
  2192. </font>
  2193. </td>
  2194. </tr>
  2195. </table>
  2196. </blockquote>
  2197. </td></tr>
  2198. </table>
  2199. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2200. <tr><td bgcolor="#828DA6">
  2201. <font color="#ffffff" face="arial,helvetica,sanserif">
  2202. <a name="Styler"><strong>Styler</strong></a>
  2203. </font>
  2204. </td></tr>
  2205. <tr><td>
  2206. <blockquote>
  2207. <p>The styler task makes useful combinations of XSLT transformations
  2208. easy to specify in an Ant build file. Like the built-in Ant task
  2209. style, styler can apply a single transformation to a set of XML files.
  2210. But it can also:</p>
  2211. <ul>
  2212. <li>handle multiple transformations, in parallel or pipelined.</li>
  2213. <li>enable transformations that split or merge files</li>
  2214. <li>process non-XML files, especially HTML (based on JTidy)</li>
  2215. <li>apply non-XSLT transformation, especially "regular
  2216. fragmentations"</li>
  2217. <li>use any custom XMLReader or XMLFilter class to handle new file
  2218. formats and transformation techniques.</li>
  2219. </ul>
  2220. <table>
  2221. <tr>
  2222. <td bgcolor="#039acc" colspan="" rowspan=""
  2223. valign="top" align="left">
  2224. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2225. Compatibility:
  2226. </font>
  2227. </td>
  2228. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2229. valign="top" align="left">
  2230. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2231. Ant 1.4
  2232. </font>
  2233. </td>
  2234. </tr>
  2235. <tr>
  2236. <td bgcolor="#039acc" colspan="" rowspan=""
  2237. valign="top" align="left">
  2238. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2239. URL:
  2240. </font>
  2241. </td>
  2242. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2243. valign="top" align="left">
  2244. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2245. <a href="http://www.langdale.com.au/styler/">http://www.langdale.com.au/styler/</a>
  2246. </font>
  2247. </td>
  2248. </tr>
  2249. <tr>
  2250. <td bgcolor="#039acc" colspan="" rowspan=""
  2251. valign="top" align="left">
  2252. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2253. Contact:
  2254. </font>
  2255. </td>
  2256. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2257. valign="top" align="left">
  2258. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2259. <a href="mailto:adv@langdale.com.au">Arnold deVos</a>
  2260. </font>
  2261. </td>
  2262. </tr>
  2263. <tr>
  2264. <td bgcolor="#039acc" colspan="" rowspan=""
  2265. valign="top" align="left">
  2266. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2267. License:
  2268. </font>
  2269. </td>
  2270. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2271. valign="top" align="left">
  2272. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2273. LGPL
  2274. </font>
  2275. </td>
  2276. </tr>
  2277. </table>
  2278. </blockquote>
  2279. </td></tr>
  2280. </table>
  2281. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2282. <tr><td bgcolor="#828DA6">
  2283. <font color="#ffffff" face="arial,helvetica,sanserif">
  2284. <a name="Tidy Imports (Tim)"><strong>Tidy Imports (Tim)</strong></a>
  2285. </font>
  2286. </td></tr>
  2287. <tr><td>
  2288. <blockquote>
  2289. <p>Tim is a handy utility that can be executed on the command
  2290. line or via Ant that automatically formats your import
  2291. declarations. Tim is capable of removing unused imports,
  2292. expanding or collapsing imports and even organising them into
  2293. pre-determined groups.</p>
  2294. <table>
  2295. <tr>
  2296. <td bgcolor="#039acc" colspan="" rowspan=""
  2297. valign="top" align="left">
  2298. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2299. Compatibility:
  2300. </font>
  2301. </td>
  2302. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2303. valign="top" align="left">
  2304. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2305. Ant 1.3 and later
  2306. </font>
  2307. </td>
  2308. </tr>
  2309. <tr>
  2310. <td bgcolor="#039acc" colspan="" rowspan=""
  2311. valign="top" align="left">
  2312. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2313. URL:
  2314. </font>
  2315. </td>
  2316. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2317. valign="top" align="left">
  2318. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2319. <a href="http://www.chive.com/tim.htm">http://www.chive.com/tim.htm</a>
  2320. </font>
  2321. </td>
  2322. </tr>
  2323. <tr>
  2324. <td bgcolor="#039acc" colspan="" rowspan=""
  2325. valign="top" align="left">
  2326. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2327. Contact:
  2328. </font>
  2329. </td>
  2330. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2331. valign="top" align="left">
  2332. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2333. <a href="mailto:support@chive.com">support@chive.com</a>
  2334. </font>
  2335. </td>
  2336. </tr>
  2337. <tr>
  2338. <td bgcolor="#039acc" colspan="" rowspan=""
  2339. valign="top" align="left">
  2340. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2341. License:
  2342. </font>
  2343. </td>
  2344. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2345. valign="top" align="left">
  2346. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2347. Commercial
  2348. </font>
  2349. </td>
  2350. </tr>
  2351. </table>
  2352. </blockquote>
  2353. </td></tr>
  2354. </table>
  2355. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2356. <tr><td bgcolor="#828DA6">
  2357. <font color="#ffffff" face="arial,helvetica,sanserif">
  2358. <a name="TiniAnt"><strong>TiniAnt</strong></a>
  2359. </font>
  2360. </td></tr>
  2361. <tr><td>
  2362. <blockquote>
  2363. <p>TiniAnt is an Ant task to support building applications for
  2364. the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>
  2365. <table>
  2366. <tr>
  2367. <td bgcolor="#039acc" colspan="" rowspan=""
  2368. valign="top" align="left">
  2369. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2370. Compatibility:
  2371. </font>
  2372. </td>
  2373. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2374. valign="top" align="left">
  2375. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2376. Ant 1.2 to 1.4.1
  2377. </font>
  2378. </td>
  2379. </tr>
  2380. <tr>
  2381. <td bgcolor="#039acc" colspan="" rowspan=""
  2382. valign="top" align="left">
  2383. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2384. URL:
  2385. </font>
  2386. </td>
  2387. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2388. valign="top" align="left">
  2389. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2390. <a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a>
  2391. </font>
  2392. </td>
  2393. </tr>
  2394. <tr>
  2395. <td bgcolor="#039acc" colspan="" rowspan=""
  2396. valign="top" align="left">
  2397. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2398. Contact:
  2399. </font>
  2400. </td>
  2401. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2402. valign="top" align="left">
  2403. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2404. <a href="mailto:kelly@ad1440.net">Sean Kelly</a>
  2405. </font>
  2406. </td>
  2407. </tr>
  2408. <tr>
  2409. <td bgcolor="#039acc" colspan="" rowspan=""
  2410. valign="top" align="left">
  2411. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2412. License:
  2413. </font>
  2414. </td>
  2415. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2416. valign="top" align="left">
  2417. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2418. BSD-like license
  2419. </font>
  2420. </td>
  2421. </tr>
  2422. </table>
  2423. </blockquote>
  2424. </td></tr>
  2425. </table>
  2426. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2427. <tr><td bgcolor="#828DA6">
  2428. <font color="#ffffff" face="arial,helvetica,sanserif">
  2429. <a name="Venus Application Publisher's (Vamp) Ant Task Suite"><strong>Venus Application Publisher's (Vamp) Ant Task Suite</strong></a>
  2430. </font>
  2431. </td></tr>
  2432. <tr><td>
  2433. <blockquote>
  2434. <p>Venus Application Publisher's (Vamp) Ant Task Suite allows
  2435. you to sign and package your applications into relocatable Web
  2436. Archives that you can drop into your web server for
  2437. single-click launching using Java Web Start or into single
  2438. Java Archive installers that serve up their content through a
  2439. built-in, multi-threaded, ultra light-weight web server.</p>
  2440. <table>
  2441. <tr>
  2442. <td bgcolor="#039acc" colspan="" rowspan=""
  2443. valign="top" align="left">
  2444. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2445. Compatibility:
  2446. </font>
  2447. </td>
  2448. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2449. valign="top" align="left">
  2450. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2451. Ant 1.2 and 1.3
  2452. </font>
  2453. </td>
  2454. </tr>
  2455. <tr>
  2456. <td bgcolor="#039acc" colspan="" rowspan=""
  2457. valign="top" align="left">
  2458. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2459. URL:
  2460. </font>
  2461. </td>
  2462. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2463. valign="top" align="left">
  2464. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2465. <a href="http://www.geocities.com/vamp201/ant.html">http://www.geocities.com/vamp201/ant.html</a>
  2466. </font>
  2467. </td>
  2468. </tr>
  2469. <tr>
  2470. <td bgcolor="#039acc" colspan="" rowspan=""
  2471. valign="top" align="left">
  2472. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2473. Contact:
  2474. </font>
  2475. </td>
  2476. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2477. valign="top" align="left">
  2478. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2479. <a href="mailto:vamp201@yahoo.com">Gerald Bauer</a>
  2480. </font>
  2481. </td>
  2482. </tr>
  2483. <tr>
  2484. <td bgcolor="#039acc" colspan="" rowspan=""
  2485. valign="top" align="left">
  2486. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2487. License:
  2488. </font>
  2489. </td>
  2490. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2491. valign="top" align="left">
  2492. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2493. GNU General Public License
  2494. </font>
  2495. </td>
  2496. </tr>
  2497. </table>
  2498. </blockquote>
  2499. </td></tr>
  2500. </table>
  2501. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2502. <tr><td bgcolor="#828DA6">
  2503. <font color="#ffffff" face="arial,helvetica,sanserif">
  2504. <a name="WOProject"><strong>WOProject</strong></a>
  2505. </font>
  2506. </td></tr>
  2507. <tr><td>
  2508. <blockquote>
  2509. <p>WOProject provides a set of tools to work with
  2510. <a href="http://webobjects.com/">WebObjects 5.1</a>
  2511. independent from platform and IDE. It significantly
  2512. improves developer productivity
  2513. and makes complex project structures more flexible compared to
  2514. traditional Makefile-based approach.
  2515. </p>
  2516. <table>
  2517. <tr>
  2518. <td bgcolor="#039acc" colspan="" rowspan=""
  2519. valign="top" align="left">
  2520. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2521. Compatibility:
  2522. </font>
  2523. </td>
  2524. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2525. valign="top" align="left">
  2526. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2527. Ant 1.4
  2528. </font>
  2529. </td>
  2530. </tr>
  2531. <tr>
  2532. <td bgcolor="#039acc" colspan="" rowspan=""
  2533. valign="top" align="left">
  2534. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2535. URL:
  2536. </font>
  2537. </td>
  2538. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2539. valign="top" align="left">
  2540. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2541. <a href="http://objectstyle.org/woproject/">http://objectstyle.org/woproject/</a>
  2542. </font>
  2543. </td>
  2544. </tr>
  2545. <tr>
  2546. <td bgcolor="#039acc" colspan="" rowspan=""
  2547. valign="top" align="left">
  2548. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2549. Contact:
  2550. </font>
  2551. </td>
  2552. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2553. valign="top" align="left">
  2554. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2555. <a href="mailto:andrus@objectstyle.org">Andrus Adamchik</a>
  2556. </font>
  2557. </td>
  2558. </tr>
  2559. <tr>
  2560. <td bgcolor="#039acc" colspan="" rowspan=""
  2561. valign="top" align="left">
  2562. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2563. License:
  2564. </font>
  2565. </td>
  2566. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2567. valign="top" align="left">
  2568. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2569. Apache license
  2570. </font>
  2571. </td>
  2572. </tr>
  2573. </table>
  2574. </blockquote>
  2575. </td></tr>
  2576. </table>
  2577. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2578. <tr><td bgcolor="#828DA6">
  2579. <font color="#ffffff" face="arial,helvetica,sanserif">
  2580. <a name="XDoclet"><strong>XDoclet</strong></a>
  2581. </font>
  2582. </td></tr>
  2583. <tr><td>
  2584. <blockquote>
  2585. <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
  2586. It lets you create custom Javadoc @tags and based on those tags
  2587. generates source code or other files (such as xml-ish deployment
  2588. descriptors). Templates and matching tasks are provided to generate
  2589. EJB and web application deployment descriptors.
  2590. </p>
  2591. <table>
  2592. <tr>
  2593. <td bgcolor="#039acc" colspan="" rowspan=""
  2594. valign="top" align="left">
  2595. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2596. Compatibility:
  2597. </font>
  2598. </td>
  2599. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2600. valign="top" align="left">
  2601. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2602. Ant 1.4
  2603. </font>
  2604. </td>
  2605. </tr>
  2606. <tr>
  2607. <td bgcolor="#039acc" colspan="" rowspan=""
  2608. valign="top" align="left">
  2609. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2610. URL:
  2611. </font>
  2612. </td>
  2613. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2614. valign="top" align="left">
  2615. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2616. <a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a>
  2617. </font>
  2618. </td>
  2619. </tr>
  2620. <tr>
  2621. <td bgcolor="#039acc" colspan="" rowspan=""
  2622. valign="top" align="left">
  2623. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2624. License:
  2625. </font>
  2626. </td>
  2627. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2628. valign="top" align="left">
  2629. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2630. BSD license
  2631. </font>
  2632. </td>
  2633. </tr>
  2634. </table>
  2635. </blockquote>
  2636. </td></tr>
  2637. </table>
  2638. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2639. <tr><td bgcolor="#828DA6">
  2640. <font color="#ffffff" face="arial,helvetica,sanserif">
  2641. <a name="XmlTask"><strong>XmlTask</strong></a>
  2642. </font>
  2643. </td></tr>
  2644. <tr><td>
  2645. <blockquote>
  2646. <p>XmlTask provides a simple means to modify XML documents
  2647. without having to learn XSLT. A simple path reference to an
  2648. XML node specifies the node you want to change, and how you
  2649. want to allow XML insertion and removal, or attribute
  2650. changes. The emphasis is on providing the simplest means to
  2651. perform common XML replacements</p>
  2652. <table>
  2653. <tr>
  2654. <td bgcolor="#039acc" colspan="" rowspan=""
  2655. valign="top" align="left">
  2656. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2657. Compatibility:
  2658. </font>
  2659. </td>
  2660. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2661. valign="top" align="left">
  2662. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2663. Ant 1.4 and later
  2664. </font>
  2665. </td>
  2666. </tr>
  2667. <tr>
  2668. <td bgcolor="#039acc" colspan="" rowspan=""
  2669. valign="top" align="left">
  2670. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2671. URL:
  2672. </font>
  2673. </td>
  2674. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2675. valign="top" align="left">
  2676. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2677. <a href="http://www.oopsconsultancy.com/software/xmltask.html">http://www.oopsconsultancy.com/software/xmltask.html</a>
  2678. </font>
  2679. </td>
  2680. </tr>
  2681. <tr>
  2682. <td bgcolor="#039acc" colspan="" rowspan=""
  2683. valign="top" align="left">
  2684. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2685. Contact:
  2686. </font>
  2687. </td>
  2688. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2689. valign="top" align="left">
  2690. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2691. <a href="mailto:xmltask@oopsconsultancy.com">xmltask@oopsconsultancy.com</a>
  2692. </font>
  2693. </td>
  2694. </tr>
  2695. <tr>
  2696. <td bgcolor="#039acc" colspan="" rowspan=""
  2697. valign="top" align="left">
  2698. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2699. License:
  2700. </font>
  2701. </td>
  2702. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2703. valign="top" align="left">
  2704. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2705. GNU General Public License
  2706. </font>
  2707. </td>
  2708. </tr>
  2709. </table>
  2710. </blockquote>
  2711. </td></tr>
  2712. </table>
  2713. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2714. <tr><td bgcolor="#828DA6">
  2715. <font color="#ffffff" face="arial,helvetica,sanserif">
  2716. <a name="yGuard"><strong>yGuard</strong></a>
  2717. </font>
  2718. </td></tr>
  2719. <tr><td>
  2720. <blockquote>
  2721. <p>yGuard is a free Java(TM) Bytecode Obfuscator Task that
  2722. needs no external script or project files. It can completely
  2723. be configured and run through the Ant build script. The task
  2724. supports multiple Jar files at once and makes use of
  2725. patternsets and regular expressions to specify elements, which
  2726. should be left unobfuscated. Additionally it can be used to
  2727. produce patches for obfuscated applications that have already
  2728. been deployed.</p>
  2729. <table>
  2730. <tr>
  2731. <td bgcolor="#039acc" colspan="" rowspan=""
  2732. valign="top" align="left">
  2733. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2734. Compatibility:
  2735. </font>
  2736. </td>
  2737. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2738. valign="top" align="left">
  2739. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2740. Ant 1.5 and later
  2741. </font>
  2742. </td>
  2743. </tr>
  2744. <tr>
  2745. <td bgcolor="#039acc" colspan="" rowspan=""
  2746. valign="top" align="left">
  2747. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2748. URL:
  2749. </font>
  2750. </td>
  2751. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2752. valign="top" align="left">
  2753. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2754. <a href="http://www.yworks.com/products/yguard">http://www.yworks.com/products/yguard</a>
  2755. </font>
  2756. </td>
  2757. </tr>
  2758. <tr>
  2759. <td bgcolor="#039acc" colspan="" rowspan=""
  2760. valign="top" align="left">
  2761. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2762. Contact:
  2763. </font>
  2764. </td>
  2765. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2766. valign="top" align="left">
  2767. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2768. <a href="mailto:yguard@yworks.com">yGuard@yWorks.com</a>
  2769. </font>
  2770. </td>
  2771. </tr>
  2772. <tr>
  2773. <td bgcolor="#039acc" colspan="" rowspan=""
  2774. valign="top" align="left">
  2775. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2776. License:
  2777. </font>
  2778. </td>
  2779. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2780. valign="top" align="left">
  2781. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2782. Library: LGPL, Task: Commercial
  2783. </font>
  2784. </td>
  2785. </tr>
  2786. </table>
  2787. </blockquote>
  2788. </td></tr>
  2789. </table>
  2790. </blockquote>
  2791. </td></tr>
  2792. </table>
  2793. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2794. <tr><td bgcolor="#525D76">
  2795. <font color="#ffffff" face="arial,helvetica,sanserif">
  2796. <a name="Compiler Implementations"><strong>Compiler Implementations</strong></a>
  2797. </font>
  2798. </td></tr>
  2799. <tr><td>
  2800. <blockquote>
  2801. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2802. <tr><td bgcolor="#828DA6">
  2803. <font color="#ffffff" face="arial,helvetica,sanserif">
  2804. <a name="miniRMI &lt;code&gt;&amp;lt;rmic&amp;gt;&lt;/code&gt; implementation"><strong>miniRMI <code>&lt;rmic&gt;</code> implementation</strong></a>
  2805. </font>
  2806. </td></tr>
  2807. <tr><td>
  2808. <blockquote>
  2809. <p>miniRMI is a freeware opensource library that serves as a
  2810. lightweight replacement for the original java.rmi packages and
  2811. is suitable especially for applets. Ant 1.4+
  2812. <code>&lt;rmic&gt;</code> adapter included.</p>
  2813. <table>
  2814. <tr>
  2815. <td bgcolor="#039acc" colspan="" rowspan=""
  2816. valign="top" align="left">
  2817. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2818. Compatibility:
  2819. </font>
  2820. </td>
  2821. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2822. valign="top" align="left">
  2823. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2824. Ant 1.4 and later
  2825. </font>
  2826. </td>
  2827. </tr>
  2828. <tr>
  2829. <td bgcolor="#039acc" colspan="" rowspan=""
  2830. valign="top" align="left">
  2831. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2832. URL:
  2833. </font>
  2834. </td>
  2835. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2836. valign="top" align="left">
  2837. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2838. <a href="http://dione.zcu.cz/~toman40/miniRMI/">http://dione.zcu.cz/~toman40/miniRMI/</a>
  2839. </font>
  2840. </td>
  2841. </tr>
  2842. <tr>
  2843. <td bgcolor="#039acc" colspan="" rowspan=""
  2844. valign="top" align="left">
  2845. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2846. Contact:
  2847. </font>
  2848. </td>
  2849. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2850. valign="top" align="left">
  2851. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2852. <a href="mailto:Petr.Toman@pinknet.cz">Petr Toman</a>
  2853. </font>
  2854. </td>
  2855. </tr>
  2856. <tr>
  2857. <td bgcolor="#039acc" colspan="" rowspan=""
  2858. valign="top" align="left">
  2859. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2860. License:
  2861. </font>
  2862. </td>
  2863. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2864. valign="top" align="left">
  2865. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2866. Gnu Lesser Public License
  2867. </font>
  2868. </td>
  2869. </tr>
  2870. </table>
  2871. </blockquote>
  2872. </td></tr>
  2873. </table>
  2874. </blockquote>
  2875. </td></tr>
  2876. </table>
  2877. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2878. <tr><td bgcolor="#525D76">
  2879. <font color="#ffffff" face="arial,helvetica,sanserif">
  2880. <a name="IDE and Editor Integration"><strong>IDE and Editor Integration</strong></a>
  2881. </font>
  2882. </td></tr>
  2883. <tr><td>
  2884. <blockquote>
  2885. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2886. <tr><td bgcolor="#828DA6">
  2887. <font color="#ffffff" face="arial,helvetica,sanserif">
  2888. <a name="AntFarm"><strong>AntFarm</strong></a>
  2889. </font>
  2890. </td></tr>
  2891. <tr><td>
  2892. <blockquote>
  2893. <p>A plugin that integrates Ant into the jEdit editor.</p>
  2894. <table>
  2895. <tr>
  2896. <td bgcolor="#039acc" colspan="" rowspan=""
  2897. valign="top" align="left">
  2898. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2899. Compatibility:
  2900. </font>
  2901. </td>
  2902. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2903. valign="top" align="left">
  2904. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2905. bundles Ant 1.3
  2906. </font>
  2907. </td>
  2908. </tr>
  2909. <tr>
  2910. <td bgcolor="#039acc" colspan="" rowspan=""
  2911. valign="top" align="left">
  2912. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2913. URL:
  2914. </font>
  2915. </td>
  2916. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2917. valign="top" align="left">
  2918. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2919. <a href="http://plugins.jedit.org/plugins/AntFarm">http://plugins.jedit.org/plugins/AntFarm</a>
  2920. </font>
  2921. </td>
  2922. </tr>
  2923. <tr>
  2924. <td bgcolor="#039acc" colspan="" rowspan=""
  2925. valign="top" align="left">
  2926. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2927. Contact:
  2928. </font>
  2929. </td>
  2930. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2931. valign="top" align="left">
  2932. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2933. <a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</a>
  2934. </font>
  2935. </td>
  2936. </tr>
  2937. <tr>
  2938. <td bgcolor="#039acc" colspan="" rowspan=""
  2939. valign="top" align="left">
  2940. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2941. License:
  2942. </font>
  2943. </td>
  2944. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2945. valign="top" align="left">
  2946. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2947. Apache Software License
  2948. </font>
  2949. </td>
  2950. </tr>
  2951. </table>
  2952. </blockquote>
  2953. </td></tr>
  2954. </table>
  2955. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2956. <tr><td bgcolor="#828DA6">
  2957. <font color="#ffffff" face="arial,helvetica,sanserif">
  2958. <a name="AntMan"><strong>AntMan</strong></a>
  2959. </font>
  2960. </td></tr>
  2961. <tr><td>
  2962. <blockquote>
  2963. <p>An AddIn that integrates Ant with the JDeveloper IDE</p>
  2964. <table>
  2965. <tr>
  2966. <td bgcolor="#039acc" colspan="" rowspan=""
  2967. valign="top" align="left">
  2968. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2969. Compatibility:
  2970. </font>
  2971. </td>
  2972. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2973. valign="top" align="left">
  2974. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2975. Ant 1.4.1
  2976. </font>
  2977. </td>
  2978. </tr>
  2979. <tr>
  2980. <td bgcolor="#039acc" colspan="" rowspan=""
  2981. valign="top" align="left">
  2982. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2983. URL:
  2984. </font>
  2985. </td>
  2986. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2987. valign="top" align="left">
  2988. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2989. <a href="http://www.erudra.com/antman/index.html">http://www.erudra.com/antman/index.html</a>
  2990. </font>
  2991. </td>
  2992. </tr>
  2993. <tr>
  2994. <td bgcolor="#039acc" colspan="" rowspan=""
  2995. valign="top" align="left">
  2996. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2997. Contact:
  2998. </font>
  2999. </td>
  3000. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3001. valign="top" align="left">
  3002. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3003. <a href="mailto:ashok@erudra.com">Ashok Sridhar</a>
  3004. </font>
  3005. </td>
  3006. </tr>
  3007. <tr>
  3008. <td bgcolor="#039acc" colspan="" rowspan=""
  3009. valign="top" align="left">
  3010. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3011. License:
  3012. </font>
  3013. </td>
  3014. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3015. valign="top" align="left">
  3016. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3017. GNU General Public License
  3018. </font>
  3019. </td>
  3020. </tr>
  3021. </table>
  3022. </blockquote>
  3023. </td></tr>
  3024. </table>
  3025. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3026. <tr><td bgcolor="#828DA6">
  3027. <font color="#ffffff" face="arial,helvetica,sanserif">
  3028. <a name="AntRunner"><strong>AntRunner</strong></a>
  3029. </font>
  3030. </td></tr>
  3031. <tr><td>
  3032. <blockquote>
  3033. <p>An OpenTool that integrates Ant into the JBuilder IDE.</p>
  3034. <table>
  3035. <tr>
  3036. <td bgcolor="#039acc" colspan="" rowspan=""
  3037. valign="top" align="left">
  3038. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3039. Compatibility:
  3040. </font>
  3041. </td>
  3042. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3043. valign="top" align="left">
  3044. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3045. Ant 1.2 and 1.3
  3046. </font>
  3047. </td>
  3048. </tr>
  3049. <tr>
  3050. <td bgcolor="#039acc" colspan="" rowspan=""
  3051. valign="top" align="left">
  3052. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3053. URL:
  3054. </font>
  3055. </td>
  3056. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3057. valign="top" align="left">
  3058. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3059. <a href="http://www.dieter-bogdoll.de/java/AntRunner/">http://www.dieter-bogdoll.de/java/AntRunner/</a>
  3060. </font>
  3061. </td>
  3062. </tr>
  3063. <tr>
  3064. <td bgcolor="#039acc" colspan="" rowspan=""
  3065. valign="top" align="left">
  3066. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3067. Contact:
  3068. </font>
  3069. </td>
  3070. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3071. valign="top" align="left">
  3072. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3073. <a href="mailto:bogdoll@users.sourceforge.net">Dieter Bogdoll</a>
  3074. </font>
  3075. </td>
  3076. </tr>
  3077. <tr>
  3078. <td bgcolor="#039acc" colspan="" rowspan=""
  3079. valign="top" align="left">
  3080. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3081. License:
  3082. </font>
  3083. </td>
  3084. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3085. valign="top" align="left">
  3086. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3087. GNU General Public License
  3088. </font>
  3089. </td>
  3090. </tr>
  3091. </table>
  3092. </blockquote>
  3093. </td></tr>
  3094. </table>
  3095. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3096. <tr><td bgcolor="#828DA6">
  3097. <font color="#ffffff" face="arial,helvetica,sanserif">
  3098. <a name="AntWork"><strong>AntWork</strong></a>
  3099. </font>
  3100. </td></tr>
  3101. <tr><td>
  3102. <blockquote>
  3103. <p>A plugin that integrates Ant into the Jext editor.</p>
  3104. <table>
  3105. <tr>
  3106. <td bgcolor="#039acc" colspan="" rowspan=""
  3107. valign="top" align="left">
  3108. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3109. Compatibility:
  3110. </font>
  3111. </td>
  3112. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3113. valign="top" align="left">
  3114. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3115. Ant 1.2 and 1.3
  3116. </font>
  3117. </td>
  3118. </tr>
  3119. <tr>
  3120. <td bgcolor="#039acc" colspan="" rowspan=""
  3121. valign="top" align="left">
  3122. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3123. URL:
  3124. </font>
  3125. </td>
  3126. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3127. valign="top" align="left">
  3128. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3129. <a href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip</a>
  3130. </font>
  3131. </td>
  3132. </tr>
  3133. <tr>
  3134. <td bgcolor="#039acc" colspan="" rowspan=""
  3135. valign="top" align="left">
  3136. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3137. Contact:
  3138. </font>
  3139. </td>
  3140. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3141. valign="top" align="left">
  3142. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3143. <a href="mailto:KHartlage@t-online.de">Klaus Hartlage</a>
  3144. </font>
  3145. </td>
  3146. </tr>
  3147. <tr>
  3148. <td bgcolor="#039acc" colspan="" rowspan=""
  3149. valign="top" align="left">
  3150. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3151. License:
  3152. </font>
  3153. </td>
  3154. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3155. valign="top" align="left">
  3156. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3157. GNU General Public License
  3158. </font>
  3159. </td>
  3160. </tr>
  3161. </table>
  3162. </blockquote>
  3163. </td></tr>
  3164. </table>
  3165. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3166. <tr><td bgcolor="#828DA6">
  3167. <font color="#ffffff" face="arial,helvetica,sanserif">
  3168. <a name="Eclipse"><strong>Eclipse</strong></a>
  3169. </font>
  3170. </td></tr>
  3171. <tr><td>
  3172. <blockquote>
  3173. <p>Eclipse is a universal tool platform with Ant integration.</p>
  3174. <table>
  3175. <tr>
  3176. <td bgcolor="#039acc" colspan="" rowspan=""
  3177. valign="top" align="left">
  3178. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3179. Compatibility:
  3180. </font>
  3181. </td>
  3182. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3183. valign="top" align="left">
  3184. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3185. Ant 1.3 - 1.4.1
  3186. </font>
  3187. </td>
  3188. </tr>
  3189. <tr>
  3190. <td bgcolor="#039acc" colspan="" rowspan=""
  3191. valign="top" align="left">
  3192. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3193. URL:
  3194. </font>
  3195. </td>
  3196. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3197. valign="top" align="left">
  3198. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3199. <a href="http://www.eclipse.org">http://www.eclipse.org</a>
  3200. </font>
  3201. </td>
  3202. </tr>
  3203. <tr>
  3204. <td bgcolor="#039acc" colspan="" rowspan=""
  3205. valign="top" align="left">
  3206. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3207. Contact:
  3208. </font>
  3209. </td>
  3210. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3211. valign="top" align="left">
  3212. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3213. <a href="news://news.eclipse.org/eclipse.tools">news://news.eclipse.org/eclipse.tools</a>
  3214. </font>
  3215. </td>
  3216. </tr>
  3217. <tr>
  3218. <td bgcolor="#039acc" colspan="" rowspan=""
  3219. valign="top" align="left">
  3220. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3221. License:
  3222. </font>
  3223. </td>
  3224. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3225. valign="top" align="left">
  3226. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3227. Common Public License Version 1.0
  3228. </font>
  3229. </td>
  3230. </tr>
  3231. </table>
  3232. </blockquote>
  3233. </td></tr>
  3234. </table>
  3235. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3236. <tr><td bgcolor="#828DA6">
  3237. <font color="#ffffff" face="arial,helvetica,sanserif">
  3238. <a name="HP RadPak"><strong>HP RadPak</strong></a>
  3239. </font>
  3240. </td></tr>
  3241. <tr><td>
  3242. <blockquote>
  3243. <p>
  3244. RadPak comes with the (free) HP Bluestone HPAS J2EE server, and is primarily
  3245. a GUI tool for packaging and deploying java web and EJB applications
  3246. as WAR and EAR files. The tool is ant based, and can be used with
  3247. as a GUI for general ant development, providing form based entry
  3248. of task attributes, and an animated display of task
  3249. execution.
  3250. </p>
  3251. <table>
  3252. <tr>
  3253. <td bgcolor="#039acc" colspan="" rowspan=""
  3254. valign="top" align="left">
  3255. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3256. Compatibility:
  3257. </font>
  3258. </td>
  3259. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3260. valign="top" align="left">
  3261. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3262. bundles Ant 1.3 and docs; adds a jar of extra tasks
  3263. to any existing ant installation under ANT_HOME
  3264. </font>
  3265. </td>
  3266. </tr>
  3267. <tr>
  3268. <td bgcolor="#039acc" colspan="" rowspan=""
  3269. valign="top" align="left">
  3270. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3271. URL:
  3272. </font>
  3273. </td>
  3274. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3275. valign="top" align="left">
  3276. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3277. <a href="http://www.bluestone.com/products/hp-as/">http://www.bluestone.com/products/hp-as/</a>
  3278. </font>
  3279. </td>
  3280. </tr>
  3281. <tr>
  3282. <td bgcolor="#039acc" colspan="" rowspan=""
  3283. valign="top" align="left">
  3284. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3285. License:
  3286. </font>
  3287. </td>
  3288. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3289. valign="top" align="left">
  3290. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3291. Proprietary but free to download
  3292. </font>
  3293. </td>
  3294. </tr>
  3295. </table>
  3296. </blockquote>
  3297. </td></tr>
  3298. </table>
  3299. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3300. <tr><td bgcolor="#828DA6">
  3301. <font color="#ffffff" face="arial,helvetica,sanserif">
  3302. <a name="IntelliJ IDEA 2.0"><strong>IntelliJ IDEA 2.0</strong></a>
  3303. </font>
  3304. </td></tr>
  3305. <tr><td>
  3306. <blockquote>
  3307. <p>Java IDE with refactoring support and Ant integration.</p>
  3308. <table>
  3309. <tr>
  3310. <td bgcolor="#039acc" colspan="" rowspan=""
  3311. valign="top" align="left">
  3312. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3313. Compatibility:
  3314. </font>
  3315. </td>
  3316. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3317. valign="top" align="left">
  3318. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3319. bundles Ant 1.3
  3320. </font>
  3321. </td>
  3322. </tr>
  3323. <tr>
  3324. <td bgcolor="#039acc" colspan="" rowspan=""
  3325. valign="top" align="left">
  3326. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3327. URL:
  3328. </font>
  3329. </td>
  3330. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3331. valign="top" align="left">
  3332. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3333. <a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a>
  3334. </font>
  3335. </td>
  3336. </tr>
  3337. <tr>
  3338. <td bgcolor="#039acc" colspan="" rowspan=""
  3339. valign="top" align="left">
  3340. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3341. Contact:
  3342. </font>
  3343. </td>
  3344. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3345. valign="top" align="left">
  3346. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3347. <a href="mailto:support@intellij.com">support@intellij.com</a>
  3348. </font>
  3349. </td>
  3350. </tr>
  3351. <tr>
  3352. <td bgcolor="#039acc" colspan="" rowspan=""
  3353. valign="top" align="left">
  3354. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3355. License:
  3356. </font>
  3357. </td>
  3358. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3359. valign="top" align="left">
  3360. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3361. Commercial
  3362. </font>
  3363. </td>
  3364. </tr>
  3365. </table>
  3366. </blockquote>
  3367. </td></tr>
  3368. </table>
  3369. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3370. <tr><td bgcolor="#828DA6">
  3371. <font color="#ffffff" face="arial,helvetica,sanserif">
  3372. <a name="JDE(E) 2.2.8"><strong>JDE(E) 2.2.8</strong></a>
  3373. </font>
  3374. </td></tr>
  3375. <tr><td>
  3376. <blockquote>
  3377. <p>The Java Development Environment for Emacs (JDEE) supports
  3378. Apache Ant as one of three built-in ways to build your
  3379. applications.</p>
  3380. <table>
  3381. <tr>
  3382. <td bgcolor="#039acc" colspan="" rowspan=""
  3383. valign="top" align="left">
  3384. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3385. Compatibility:
  3386. </font>
  3387. </td>
  3388. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3389. valign="top" align="left">
  3390. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3391. Ant 1.2 and later
  3392. </font>
  3393. </td>
  3394. </tr>
  3395. <tr>
  3396. <td bgcolor="#039acc" colspan="" rowspan=""
  3397. valign="top" align="left">
  3398. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3399. URL:
  3400. </font>
  3401. </td>
  3402. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3403. valign="top" align="left">
  3404. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3405. <a href="http://jde.sunsite.dk/">http://jde.sunsite.dk/</a>
  3406. </font>
  3407. </td>
  3408. </tr>
  3409. <tr>
  3410. <td bgcolor="#039acc" colspan="" rowspan=""
  3411. valign="top" align="left">
  3412. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3413. Contact:
  3414. </font>
  3415. </td>
  3416. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3417. valign="top" align="left">
  3418. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3419. <a href="mailto:jde-subscribe@sunsite.auc.dk">JDEE Mailing list.</a>
  3420. </font>
  3421. </td>
  3422. </tr>
  3423. <tr>
  3424. <td bgcolor="#039acc" colspan="" rowspan=""
  3425. valign="top" align="left">
  3426. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3427. License:
  3428. </font>
  3429. </td>
  3430. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3431. valign="top" align="left">
  3432. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3433. GNU General Public License
  3434. </font>
  3435. </td>
  3436. </tr>
  3437. </table>
  3438. </blockquote>
  3439. </td></tr>
  3440. </table>
  3441. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3442. <tr><td bgcolor="#828DA6">
  3443. <font color="#ffffff" face="arial,helvetica,sanserif">
  3444. <a name="NetBeans / Sun ONE Studio"><strong>NetBeans / Sun ONE Studio</strong></a>
  3445. </font>
  3446. </td></tr>
  3447. <tr><td>
  3448. <blockquote>
  3449. <p>A module that integrates Ant into the NetBeans or Sun ONE Studio (formerly Forte for Java) IDEs.</p>
  3450. <table>
  3451. <tr>
  3452. <td bgcolor="#039acc" colspan="" rowspan=""
  3453. valign="top" align="left">
  3454. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3455. Compatibility:
  3456. </font>
  3457. </td>
  3458. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3459. valign="top" align="left">
  3460. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3461. bundles Ant 1.4.1
  3462. </font>
  3463. </td>
  3464. </tr>
  3465. <tr>
  3466. <td bgcolor="#039acc" colspan="" rowspan=""
  3467. valign="top" align="left">
  3468. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3469. URL:
  3470. </font>
  3471. </td>
  3472. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3473. valign="top" align="left">
  3474. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3475. <a href="http://ant.netbeans.org/">http://ant.netbeans.org/</a>
  3476. </font>
  3477. </td>
  3478. </tr>
  3479. <tr>
  3480. <td bgcolor="#039acc" colspan="" rowspan=""
  3481. valign="top" align="left">
  3482. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3483. Contact:
  3484. </font>
  3485. </td>
  3486. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3487. valign="top" align="left">
  3488. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3489. <a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a>
  3490. </font>
  3491. </td>
  3492. </tr>
  3493. <tr>
  3494. <td bgcolor="#039acc" colspan="" rowspan=""
  3495. valign="top" align="left">
  3496. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3497. License:
  3498. </font>
  3499. </td>
  3500. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3501. valign="top" align="left">
  3502. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3503. Sun Public License
  3504. </font>
  3505. </td>
  3506. </tr>
  3507. </table>
  3508. </blockquote>
  3509. </td></tr>
  3510. </table>
  3511. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3512. <tr><td bgcolor="#828DA6">
  3513. <font color="#ffffff" face="arial,helvetica,sanserif">
  3514. <a name="Oracle9i JDeveloper"><strong>Oracle9i JDeveloper</strong></a>
  3515. </font>
  3516. </td></tr>
  3517. <tr><td>
  3518. <blockquote>
  3519. <p>Java IDE with support for Ant.</p>
  3520. <table>
  3521. <tr>
  3522. <td bgcolor="#039acc" colspan="" rowspan=""
  3523. valign="top" align="left">
  3524. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3525. Compatibility:
  3526. </font>
  3527. </td>
  3528. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3529. valign="top" align="left">
  3530. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3531. Ant 1.5.1
  3532. </font>
  3533. </td>
  3534. </tr>
  3535. <tr>
  3536. <td bgcolor="#039acc" colspan="" rowspan=""
  3537. valign="top" align="left">
  3538. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3539. URL:
  3540. </font>
  3541. </td>
  3542. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3543. valign="top" align="left">
  3544. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3545. <a href="http://otn.oracle.com/products/jdev/">http://otn.oracle.com/products/jdev/</a>
  3546. </font>
  3547. </td>
  3548. </tr>
  3549. <tr>
  3550. <td bgcolor="#039acc" colspan="" rowspan=""
  3551. valign="top" align="left">
  3552. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3553. Contact:
  3554. </font>
  3555. </td>
  3556. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3557. valign="top" align="left">
  3558. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3559. <a href="mailto:jdeveloperbeta_us@oracle.com">jdeveloperbeta_us@oracle.com</a>
  3560. </font>
  3561. </td>
  3562. </tr>
  3563. <tr>
  3564. <td bgcolor="#039acc" colspan="" rowspan=""
  3565. valign="top" align="left">
  3566. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3567. License:
  3568. </font>
  3569. </td>
  3570. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3571. valign="top" align="left">
  3572. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3573. Commercial
  3574. </font>
  3575. </td>
  3576. </tr>
  3577. </table>
  3578. </blockquote>
  3579. </td></tr>
  3580. </table>
  3581. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  3582. <tr><td bgcolor="#828DA6">
  3583. <font color="#ffffff" face="arial,helvetica,sanserif">
  3584. <a name="WebSphere Studio Application Developer"><strong>WebSphere Studio Application Developer</strong></a>
  3585. </font>
  3586. </td></tr>
  3587. <tr><td>
  3588. <blockquote>
  3589. <p>WSAD features Ant integrate by virtue of being built on the Eclipse tools platform.</p>
  3590. <table>
  3591. <tr>
  3592. <td bgcolor="#039acc" colspan="" rowspan=""
  3593. valign="top" align="left">
  3594. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3595. Compatibility:
  3596. </font>
  3597. </td>
  3598. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3599. valign="top" align="left">
  3600. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3601. bundles Ant 1.4.1
  3602. </font>
  3603. </td>
  3604. </tr>
  3605. <tr>
  3606. <td bgcolor="#039acc" colspan="" rowspan=""
  3607. valign="top" align="left">
  3608. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3609. Article:
  3610. </font>
  3611. </td>
  3612. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3613. valign="top" align="left">
  3614. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3615. <a href="http://www7b.software.ibm.com/wsdd/library/techarticles/0203_searle/searle1.html">Ant Integration Part1</a>
  3616. </font>
  3617. </td>
  3618. </tr>
  3619. <tr>
  3620. <td bgcolor="#039acc" colspan="" rowspan=""
  3621. valign="top" align="left">
  3622. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3623. License:
  3624. </font>
  3625. </td>
  3626. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  3627. valign="top" align="left">
  3628. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  3629. Commercial
  3630. </font>
  3631. </td>
  3632. </tr>
  3633. </table>
  3634. </blockquote>
  3635. </td></tr>
  3636. </table>
  3637. </blockquote>
  3638. </td></tr>
  3639. </table>
  3640. </td>
  3641. </tr>
  3642. <!-- FOOTER -->
  3643. <tr><td colspan="2">
  3644. <hr noshade="" size="1"/>
  3645. </td></tr>
  3646. <tr><td colspan="2">
  3647. <div align="center"><font color="#525D76" size="-1"><em>
  3648. Copyright &#169; 2000-2002, Apache Software Foundation
  3649. </em></font></div>
  3650. </td></tr>
  3651. </table>
  3652. </body>
  3653. </html>
  3654. <!-- end the processing -->