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 108 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961
  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 align="left">
  17. <a href="http://jakarta.apache.org"><img src="images/jakarta-logo.gif" border="0"/></a>
  18. </td>
  19. <td align="center">
  20. <a href="http://www.sdmagazine.com"><img src="images/sdm_productivity_award.gif" border="0" height="75" width="135"/></a>
  21. </td>
  22. <td align="center">
  23. <a href="http://www.javaworld.com"><img src="images/jw_ec_logo_winner2002.gif" border="0" height="85" width="230"/></a>
  24. </td>
  25. <td align="right">
  26. <a href="http://jakarta.apache.org/ant/"><img src="./images/ant_logo_large.gif" alt="Apache Ant" border="0"/></a>
  27. </td>
  28. </tr>
  29. </table>
  30. <table border="0" width="100%" cellspacing="4">
  31. <tr><td colspan="2">
  32. <hr noshade="" size="1"/>
  33. </td></tr>
  34. <tr>
  35. <!-- LEFT SIDE NAVIGATION -->
  36. <td valign="top" nowrap="true">
  37. <p><strong>Apache Ant</strong></p>
  38. <ul>
  39. <li> <a href="./index.html">Front Page</a>
  40. </li>
  41. <li> <a href="./antnews.html">News</a>
  42. </li>
  43. <li> <a href="./manual/index.html">Documentation</a>
  44. </li>
  45. <li> <a href="./projects.html">Related Projects</a>
  46. </li>
  47. <li> <a href="./external.html">External Tools and Tasks</a>
  48. </li>
  49. <li> <a href="./resources.html">Resources</a>
  50. </li>
  51. <li> <a href="./faq.html">Ant FAQ</a>
  52. </li>
  53. <li> <a href="./problems.html">Having Problems?</a>
  54. </li>
  55. </ul>
  56. <p><strong>Download</strong></p>
  57. <ul>
  58. <li> <a href="http://jakarta.apache.org/site/binindex.html">Binaries</a>
  59. </li>
  60. <li> <a href="http://jakarta.apache.org/site/sourceindex.html">Source Code</a>
  61. </li>
  62. </ul>
  63. <p><strong>Jakarta</strong></p>
  64. <ul>
  65. <li> <a href="http://jakarta.apache.org/site/news.html">News & Status</a>
  66. </li>
  67. <li> <a href="http://jakarta.apache.org/site/mission.html">Mission</a>
  68. </li>
  69. <li> <a href="http://jakarta.apache.org/site/guidelines.html">Guidelines Notes</a>
  70. </li>
  71. <li> <a href="http://jakarta.apache.org/site/faqs.html">FAQs</a>
  72. </li>
  73. </ul>
  74. <p><strong>Get Involved</strong></p>
  75. <ul>
  76. <li> <a href="http://jakarta.apache.org/site/getinvolved.html">Overview</a>
  77. </li>
  78. <li> <a href="http://jakarta.apache.org/site/cvsindex.html">CVS Repositories</a>
  79. </li>
  80. <li> <a href="http://jakarta.apache.org/site/mail.html">Mailing Lists</a>
  81. </li>
  82. <li> <a href="http://jakarta.apache.org/site/library.html">Reference Library</a>
  83. </li>
  84. <li> <a href="http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Ant">Bug Database</a>
  85. </li>
  86. <li> <a href="http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Ant&bug_severity=Enhancement">Enhancement Requests</a>
  87. </li>
  88. </ul>
  89. </td>
  90. <td align="left" valign="top">
  91. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  92. <tr><td bgcolor="#525D76">
  93. <font color="#ffffff" face="arial,helvetica,sanserif">
  94. <a name="External Tools and Tasks"><strong>External Tools and Tasks</strong></a>
  95. </font>
  96. </td></tr>
  97. <tr><td>
  98. <blockquote>
  99. <p>This page lists external resources for Apache Ant: tasks, IDE
  100. integration tools, loggers, you name it. If you've written
  101. something that should be included, please post all relevant
  102. information to one of the mailing lists.</p>
  103. <p>Nothing listed here is directly supported by the Ant
  104. developers, if you encounter any problems with them, please use
  105. the contact information.</p>
  106. </blockquote>
  107. </td></tr>
  108. </table>
  109. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  110. <tr><td bgcolor="#525D76">
  111. <font color="#ffffff" face="arial,helvetica,sanserif">
  112. <a name="Tasks"><strong>Tasks</strong></a>
  113. </font>
  114. </td></tr>
  115. <tr><td>
  116. <blockquote>
  117. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  118. <tr><td bgcolor="#828DA6">
  119. <font color="#ffffff" face="arial,helvetica,sanserif">
  120. <a name="AJC"><strong>AJC</strong></a>
  121. </font>
  122. </td></tr>
  123. <tr><td>
  124. <blockquote>
  125. <p><a href="http://aspectj.org">AspectJ</a> is an
  126. aspect-oriented extension to Java. This task compiles a
  127. source tree using the AspectJ compiler -- AJC.</p>
  128. <table>
  129. <tr>
  130. <td bgcolor="#039acc" colspan="" rowspan=""
  131. valign="top" align="left">
  132. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  133. Compatibility:
  134. </font>
  135. </td>
  136. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  137. valign="top" align="left">
  138. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  139. Ant 1.3
  140. </font>
  141. </td>
  142. </tr>
  143. <tr>
  144. <td bgcolor="#039acc" colspan="" rowspan=""
  145. valign="top" align="left">
  146. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  147. URL:
  148. </font>
  149. </td>
  150. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  151. valign="top" align="left">
  152. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  153. <a href="http://aspectj.org/dl">http://aspectj.org/dl</a>
  154. </font>
  155. </td>
  156. </tr>
  157. <tr>
  158. <td bgcolor="#039acc" colspan="" rowspan=""
  159. valign="top" align="left">
  160. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  161. Contact:
  162. </font>
  163. </td>
  164. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  165. valign="top" align="left">
  166. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  167. <a href="mailto:support@aspectj.org">support@aspectj.org</a>
  168. </font>
  169. </td>
  170. </tr>
  171. <tr>
  172. <td bgcolor="#039acc" colspan="" rowspan=""
  173. valign="top" align="left">
  174. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  175. License:
  176. </font>
  177. </td>
  178. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  179. valign="top" align="left">
  180. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  181. Apache Software License
  182. </font>
  183. </td>
  184. </tr>
  185. </table>
  186. </blockquote>
  187. </td></tr>
  188. </table>
  189. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  190. <tr><td bgcolor="#828DA6">
  191. <font color="#ffffff" face="arial,helvetica,sanserif">
  192. <a name="Anakia"><strong>Anakia</strong></a>
  193. </font>
  194. </td></tr>
  195. <tr><td>
  196. <blockquote>
  197. <p>Actually, Anakia is more than just an Ant task, it is a an
  198. XML transformation tool based on JDOM, Velocity and Ant.</p>
  199. <table>
  200. <tr>
  201. <td bgcolor="#039acc" colspan="" rowspan=""
  202. valign="top" align="left">
  203. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  204. Compatibility:
  205. </font>
  206. </td>
  207. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  208. valign="top" align="left">
  209. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  210. Ant 1.2 and later
  211. </font>
  212. </td>
  213. </tr>
  214. <tr>
  215. <td bgcolor="#039acc" colspan="" rowspan=""
  216. valign="top" align="left">
  217. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  218. URL:
  219. </font>
  220. </td>
  221. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  222. valign="top" align="left">
  223. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  224. <a href="http://jakarta.apache.org/velocity/anakia.html">http://jakarta.apache.org/velocity/anakia.html</a>
  225. </font>
  226. </td>
  227. </tr>
  228. <tr>
  229. <td bgcolor="#039acc" colspan="" rowspan=""
  230. valign="top" align="left">
  231. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  232. Contact:
  233. </font>
  234. </td>
  235. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  236. valign="top" align="left">
  237. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  238. <a href="http://jakarta.apache.org/site/mail2.html">Velocity mailing lists</a>
  239. </font>
  240. </td>
  241. </tr>
  242. <tr>
  243. <td bgcolor="#039acc" colspan="" rowspan=""
  244. valign="top" align="left">
  245. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  246. License:
  247. </font>
  248. </td>
  249. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  250. valign="top" align="left">
  251. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  252. Apache Software License
  253. </font>
  254. </td>
  255. </tr>
  256. </table>
  257. </blockquote>
  258. </td></tr>
  259. </table>
  260. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  261. <tr><td bgcolor="#828DA6">
  262. <font color="#ffffff" face="arial,helvetica,sanserif">
  263. <a name="Anteater"><strong>Anteater</strong></a>
  264. </font>
  265. </td></tr>
  266. <tr><td>
  267. <blockquote>
  268. <p>Anteater is a set of Ant tasks for the functional testing of websites
  269. and web services (functional testing being; hit a URL and ensure the
  270. response meets certain criteria). Can test HTTP params, response
  271. codes, XPath, regexp and Relax NG expressions. Includes HTML reporting
  272. (based on junitreport) and a hierarchical grouping system for quickly
  273. configuring large test scripts.
  274. </p>
  275. <table>
  276. <tr>
  277. <td bgcolor="#039acc" colspan="" rowspan=""
  278. valign="top" align="left">
  279. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  280. Compatibility:
  281. </font>
  282. </td>
  283. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  284. valign="top" align="left">
  285. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  286. Ant 1.5 and later
  287. </font>
  288. </td>
  289. </tr>
  290. <tr>
  291. <td bgcolor="#039acc" colspan="" rowspan=""
  292. valign="top" align="left">
  293. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  294. URL:
  295. </font>
  296. </td>
  297. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  298. valign="top" align="left">
  299. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  300. <a href="http://aft.sourceforge.net">http://aft.sourceforge.net</a>
  301. </font>
  302. </td>
  303. </tr>
  304. <tr>
  305. <td bgcolor="#039acc" colspan="" rowspan=""
  306. valign="top" align="left">
  307. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  308. Contact:
  309. </font>
  310. </td>
  311. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  312. valign="top" align="left">
  313. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  314. <a href="http://lists.sourceforge.net/lists/listinfo/aft-devel">developer
  315. mailing list</a>
  316. </font>
  317. </td>
  318. </tr>
  319. <tr>
  320. <td bgcolor="#039acc" colspan="" rowspan=""
  321. valign="top" align="left">
  322. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  323. License:
  324. </font>
  325. </td>
  326. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  327. valign="top" align="left">
  328. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  329. Apache Software License
  330. </font>
  331. </td>
  332. </tr>
  333. </table>
  334. </blockquote>
  335. </td></tr>
  336. </table>
  337. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  338. <tr><td bgcolor="#828DA6">
  339. <font color="#ffffff" face="arial,helvetica,sanserif">
  340. <a name="Checkstyle"><strong>Checkstyle</strong></a>
  341. </font>
  342. </td></tr>
  343. <tr><td>
  344. <blockquote>
  345. <p>Checkstyle is a development tool to help programmers write
  346. Java code that adheres to a coding standard. Its purpose is to
  347. automate the process of checking Java code, and to spare
  348. humans of this boring (but important) task.</p>
  349. <p>Checkstyle can be run via an Ant task or a command line
  350. utility.</p>
  351. <table>
  352. <tr>
  353. <td bgcolor="#039acc" colspan="" rowspan=""
  354. valign="top" align="left">
  355. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  356. Compatibility:
  357. </font>
  358. </td>
  359. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  360. valign="top" align="left">
  361. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  362. Ant 1.2 to 1.4.1
  363. </font>
  364. </td>
  365. </tr>
  366. <tr>
  367. <td bgcolor="#039acc" colspan="" rowspan=""
  368. valign="top" align="left">
  369. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  370. URL:
  371. </font>
  372. </td>
  373. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  374. valign="top" align="left">
  375. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  376. <a href="http://checkstyle.sourceforge.net/">http://checkstyle.sourceforge.net/</a>
  377. </font>
  378. </td>
  379. </tr>
  380. <tr>
  381. <td bgcolor="#039acc" colspan="" rowspan=""
  382. valign="top" align="left">
  383. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  384. Contact:
  385. </font>
  386. </td>
  387. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  388. valign="top" align="left">
  389. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  390. <a href="mailto:checkstyle@puppycrawl.com">Oliver Burn</a>
  391. </font>
  392. </td>
  393. </tr>
  394. <tr>
  395. <td bgcolor="#039acc" colspan="" rowspan=""
  396. valign="top" align="left">
  397. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  398. License:
  399. </font>
  400. </td>
  401. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  402. valign="top" align="left">
  403. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  404. Starting with release 2.0 the license is the GNU
  405. Lesser General Public License. Prior releases were under
  406. the GNU General Public License.
  407. </font>
  408. </td>
  409. </tr>
  410. </table>
  411. </blockquote>
  412. </td></tr>
  413. </table>
  414. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  415. <tr><td bgcolor="#828DA6">
  416. <font color="#ffffff" face="arial,helvetica,sanserif">
  417. <a name="CleanImports"><strong>CleanImports</strong></a>
  418. </font>
  419. </td></tr>
  420. <tr><td>
  421. <blockquote>
  422. <p>Removes unneeded imports. Formats your import
  423. sections. Flags ambiguous imports.</p>
  424. <table>
  425. <tr>
  426. <td bgcolor="#039acc" colspan="" rowspan=""
  427. valign="top" align="left">
  428. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  429. Compatibility:
  430. </font>
  431. </td>
  432. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  433. valign="top" align="left">
  434. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  435. Ant 1.3
  436. </font>
  437. </td>
  438. </tr>
  439. <tr>
  440. <td bgcolor="#039acc" colspan="" rowspan=""
  441. valign="top" align="left">
  442. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  443. URL:
  444. </font>
  445. </td>
  446. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  447. valign="top" align="left">
  448. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  449. <a href="http://www.euronet.nl/users/tomb/cleanImports/index.html">http://www.euronet.nl/users/tomb/cleanImports/index.html</a>
  450. </font>
  451. </td>
  452. </tr>
  453. <tr>
  454. <td bgcolor="#039acc" colspan="" rowspan=""
  455. valign="top" align="left">
  456. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  457. Contact:
  458. </font>
  459. </td>
  460. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  461. valign="top" align="left">
  462. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  463. <a href="mailto:tomb@euronet.nl">Tom Brus</a>
  464. </font>
  465. </td>
  466. </tr>
  467. <tr>
  468. <td bgcolor="#039acc" colspan="" rowspan=""
  469. valign="top" align="left">
  470. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  471. License:
  472. </font>
  473. </td>
  474. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  475. valign="top" align="left">
  476. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  477. Apache Software License
  478. </font>
  479. </td>
  480. </tr>
  481. </table>
  482. </blockquote>
  483. </td></tr>
  484. </table>
  485. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  486. <tr><td bgcolor="#828DA6">
  487. <font color="#ffffff" face="arial,helvetica,sanserif">
  488. <a name="Clover"><strong>Clover</strong></a>
  489. </font>
  490. </td></tr>
  491. <tr><td>
  492. <blockquote>
  493. <p>Clover is an Ant-based Code Coverage tool. It can be used
  494. seamlessly with Ant-based projects. It provides method,
  495. statement, and branch coverage analysis, and has rich
  496. reporting in XML, HTML or via a Swing GUI.</p>
  497. <table>
  498. <tr>
  499. <td bgcolor="#039acc" colspan="" rowspan=""
  500. valign="top" align="left">
  501. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  502. Compatibility:
  503. </font>
  504. </td>
  505. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  506. valign="top" align="left">
  507. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  508. Ant 1.4.1 or greater
  509. </font>
  510. </td>
  511. </tr>
  512. <tr>
  513. <td bgcolor="#039acc" colspan="" rowspan=""
  514. valign="top" align="left">
  515. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  516. URL:
  517. </font>
  518. </td>
  519. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  520. valign="top" align="left">
  521. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  522. <a href="http://www.thecortex.net/clover">http://www.thecortex.net/clover</a>
  523. </font>
  524. </td>
  525. </tr>
  526. <tr>
  527. <td bgcolor="#039acc" colspan="" rowspan=""
  528. valign="top" align="left">
  529. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  530. Contact:
  531. </font>
  532. </td>
  533. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  534. valign="top" align="left">
  535. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  536. <a href="mailto:clover-support@cortexebusiness.com.au">clover-support@cortexebusiness.com.au</a>
  537. </font>
  538. </td>
  539. </tr>
  540. <tr>
  541. <td bgcolor="#039acc" colspan="" rowspan=""
  542. valign="top" align="left">
  543. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  544. License:
  545. </font>
  546. </td>
  547. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  548. valign="top" align="left">
  549. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  550. Commercial, free licenses available for open source
  551. projects.
  552. </font>
  553. </td>
  554. </tr>
  555. </table>
  556. </blockquote>
  557. </td></tr>
  558. </table>
  559. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  560. <tr><td bgcolor="#828DA6">
  561. <font color="#ffffff" face="arial,helvetica,sanserif">
  562. <a name="Configure"><strong>Configure</strong></a>
  563. </font>
  564. </td></tr>
  565. <tr><td>
  566. <blockquote>
  567. <p>Recursive build support (call ant on every package level,
  568. and only build files in that package or in that package and
  569. everything below) with seperation of source and output.</p>
  570. <p>The task generates build files in any subdirectory (except
  571. for CVS-directories) for you. Only place one build.xml file in
  572. the top and call target 'setup' or
  573. 'rescan'.</p>
  574. <table>
  575. <tr>
  576. <td bgcolor="#039acc" colspan="" rowspan=""
  577. valign="top" align="left">
  578. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  579. Compatibility:
  580. </font>
  581. </td>
  582. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  583. valign="top" align="left">
  584. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  585. Ant 1.2 and 1.3
  586. </font>
  587. </td>
  588. </tr>
  589. <tr>
  590. <td bgcolor="#039acc" colspan="" rowspan=""
  591. valign="top" align="left">
  592. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  593. URL:
  594. </font>
  595. </td>
  596. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  597. valign="top" align="left">
  598. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  599. <a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a>
  600. </font>
  601. </td>
  602. </tr>
  603. <tr>
  604. <td bgcolor="#039acc" colspan="" rowspan=""
  605. valign="top" align="left">
  606. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  607. Contact:
  608. </font>
  609. </td>
  610. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  611. valign="top" align="left">
  612. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  613. <a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a>
  614. </font>
  615. </td>
  616. </tr>
  617. <tr>
  618. <td bgcolor="#039acc" colspan="" rowspan=""
  619. valign="top" align="left">
  620. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  621. License:
  622. </font>
  623. </td>
  624. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  625. valign="top" align="left">
  626. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  627. License derived from Apache Software License
  628. </font>
  629. </td>
  630. </tr>
  631. </table>
  632. </blockquote>
  633. </td></tr>
  634. </table>
  635. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  636. <tr><td bgcolor="#828DA6">
  637. <font color="#ffffff" face="arial,helvetica,sanserif">
  638. <a name="CVSGrab"><strong>CVSGrab</strong></a>
  639. </font>
  640. </td></tr>
  641. <tr><td>
  642. <blockquote>
  643. <p>A little CVS client that can be useful when people are
  644. behind corporate firewall that blocks any cvs
  645. communications. It uses the ViewCVS web interface to access
  646. the CVS repository via standard http, and downloads all the
  647. files present in it.</p>
  648. <p>It works from the command line or as an Ant task.</p>
  649. <table>
  650. <tr>
  651. <td bgcolor="#039acc" colspan="" rowspan=""
  652. valign="top" align="left">
  653. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  654. Compatibility:
  655. </font>
  656. </td>
  657. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  658. valign="top" align="left">
  659. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  660. Ant 1.3 or higher
  661. </font>
  662. </td>
  663. </tr>
  664. <tr>
  665. <td bgcolor="#039acc" colspan="" rowspan=""
  666. valign="top" align="left">
  667. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  668. URL:
  669. </font>
  670. </td>
  671. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  672. valign="top" align="left">
  673. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  674. <a href="http://cvsgrab.sourceforge.net/">http://cvsgrab.sourceforge.net/</a>
  675. </font>
  676. </td>
  677. </tr>
  678. <tr>
  679. <td bgcolor="#039acc" colspan="" rowspan=""
  680. valign="top" align="left">
  681. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  682. Contact:
  683. </font>
  684. </td>
  685. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  686. valign="top" align="left">
  687. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  688. <a href="mailto:cvsgrab-users@lists.sourceforge.net">CVSGrab
  689. user mailing list</a>
  690. </font>
  691. </td>
  692. </tr>
  693. <tr>
  694. <td bgcolor="#039acc" colspan="" rowspan=""
  695. valign="top" align="left">
  696. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  697. License:
  698. </font>
  699. </td>
  700. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  701. valign="top" align="left">
  702. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  703. LGPL
  704. </font>
  705. </td>
  706. </tr>
  707. </table>
  708. </blockquote>
  709. </td></tr>
  710. </table>
  711. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  712. <tr><td bgcolor="#828DA6">
  713. <font color="#ffffff" face="arial,helvetica,sanserif">
  714. <a name="Doxygen task"><strong>Doxygen task</strong></a>
  715. </font>
  716. </td></tr>
  717. <tr><td>
  718. <blockquote>
  719. <p>Ant task for running the Doxygen documentation system.</p>
  720. <table>
  721. <tr>
  722. <td bgcolor="#039acc" colspan="" rowspan=""
  723. valign="top" align="left">
  724. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  725. Compatibility:
  726. </font>
  727. </td>
  728. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  729. valign="top" align="left">
  730. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  731. Ant 1.1 and later
  732. </font>
  733. </td>
  734. </tr>
  735. <tr>
  736. <td bgcolor="#039acc" colspan="" rowspan=""
  737. valign="top" align="left">
  738. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  739. URL:
  740. </font>
  741. </td>
  742. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  743. valign="top" align="left">
  744. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  745. <a href="http://www.bgw.org/projects/java/ant/">http://www.bgw.org/projects/java/ant/</a>
  746. </font>
  747. </td>
  748. </tr>
  749. <tr>
  750. <td bgcolor="#039acc" colspan="" rowspan=""
  751. valign="top" align="left">
  752. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  753. Contact:
  754. </font>
  755. </td>
  756. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  757. valign="top" align="left">
  758. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  759. <a href="mailto:mortis@voicenet.com">Kyle R. Burton</a>
  760. </font>
  761. </td>
  762. </tr>
  763. <tr>
  764. <td bgcolor="#039acc" colspan="" rowspan=""
  765. valign="top" align="left">
  766. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  767. License:
  768. </font>
  769. </td>
  770. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  771. valign="top" align="left">
  772. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  773. Apache Software Foundation License
  774. </font>
  775. </td>
  776. </tr>
  777. </table>
  778. </blockquote>
  779. </td></tr>
  780. </table>
  781. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  782. <tr><td bgcolor="#828DA6">
  783. <font color="#ffffff" face="arial,helvetica,sanserif">
  784. <a name="GenJar"><strong>GenJar</strong></a>
  785. </font>
  786. </td></tr>
  787. <tr><td>
  788. <blockquote>
  789. <p>Builds a JAR file based on class dependencies rather than simply the contents of a directory</p>
  790. <table>
  791. <tr>
  792. <td bgcolor="#039acc" colspan="" rowspan=""
  793. valign="top" align="left">
  794. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  795. Compatibility:
  796. </font>
  797. </td>
  798. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  799. valign="top" align="left">
  800. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  801. Ant 1.4 alpha (built after 2001/08/04) and later
  802. </font>
  803. </td>
  804. </tr>
  805. <tr>
  806. <td bgcolor="#039acc" colspan="" rowspan=""
  807. valign="top" align="left">
  808. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  809. URL:
  810. </font>
  811. </td>
  812. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  813. valign="top" align="left">
  814. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  815. <a href="http://www.riggshill.com/projects/genjar/">http://www.riggshill.com/projects/genjar/</a>
  816. </font>
  817. </td>
  818. </tr>
  819. <tr>
  820. <td bgcolor="#039acc" colspan="" rowspan=""
  821. valign="top" align="left">
  822. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  823. Contact:
  824. </font>
  825. </td>
  826. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  827. valign="top" align="left">
  828. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  829. <a href="mailto:jake@riggshill.com">John Kohler</a>
  830. </font>
  831. </td>
  832. </tr>
  833. <tr>
  834. <td bgcolor="#039acc" colspan="" rowspan=""
  835. valign="top" align="left">
  836. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  837. License:
  838. </font>
  839. </td>
  840. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  841. valign="top" align="left">
  842. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  843. Apache Software Foundation License
  844. </font>
  845. </td>
  846. </tr>
  847. </table>
  848. </blockquote>
  849. </td></tr>
  850. </table>
  851. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  852. <tr><td bgcolor="#828DA6">
  853. <font color="#ffffff" face="arial,helvetica,sanserif">
  854. <a name="Importscrubber"><strong>Importscrubber</strong></a>
  855. </font>
  856. </td></tr>
  857. <tr><td>
  858. <blockquote>
  859. <p>Removes unnecessary import statements from a Java source code file.</p>
  860. <table>
  861. <tr>
  862. <td bgcolor="#039acc" colspan="" rowspan=""
  863. valign="top" align="left">
  864. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  865. Compatibility:
  866. </font>
  867. </td>
  868. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  869. valign="top" align="left">
  870. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  871. Ant 1.3
  872. </font>
  873. </td>
  874. </tr>
  875. <tr>
  876. <td bgcolor="#039acc" colspan="" rowspan=""
  877. valign="top" align="left">
  878. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  879. URL:
  880. </font>
  881. </td>
  882. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  883. valign="top" align="left">
  884. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  885. <a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a>
  886. </font>
  887. </td>
  888. </tr>
  889. <tr>
  890. <td bgcolor="#039acc" colspan="" rowspan=""
  891. valign="top" align="left">
  892. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  893. Contact:
  894. </font>
  895. </td>
  896. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  897. valign="top" align="left">
  898. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  899. <a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a>
  900. </font>
  901. </td>
  902. </tr>
  903. <tr>
  904. <td bgcolor="#039acc" colspan="" rowspan=""
  905. valign="top" align="left">
  906. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  907. License:
  908. </font>
  909. </td>
  910. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  911. valign="top" align="left">
  912. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  913. LGPL
  914. </font>
  915. </td>
  916. </tr>
  917. </table>
  918. </blockquote>
  919. </td></tr>
  920. </table>
  921. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  922. <tr><td bgcolor="#828DA6">
  923. <font color="#ffffff" face="arial,helvetica,sanserif">
  924. <a name="IsDirValidator"><strong>IsDirValidator</strong></a>
  925. </font>
  926. </td></tr>
  927. <tr><td>
  928. <blockquote>
  929. <p>Checks whether a given directory structure conforms to
  930. certain rules that are defined via nested elements of the
  931. task.</p>
  932. <table>
  933. <tr>
  934. <td bgcolor="#039acc" colspan="" rowspan=""
  935. valign="top" align="left">
  936. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  937. Compatibility:
  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. Ant 1.4
  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. URL:
  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="http://isvalidator.sourceforge.net/en/isDirValidator.htm">http://isvalidator.sourceforge.net/en/isDirValidator.htm</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. Contact:
  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. <a href="mailto:news@inigoserrano.com">Iigo Serrano</a>
  972. </font>
  973. </td>
  974. </tr>
  975. <tr>
  976. <td bgcolor="#039acc" colspan="" rowspan=""
  977. valign="top" align="left">
  978. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  979. License:
  980. </font>
  981. </td>
  982. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  983. valign="top" align="left">
  984. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  985. GNU General Public License
  986. </font>
  987. </td>
  988. </tr>
  989. </table>
  990. </blockquote>
  991. </td></tr>
  992. </table>
  993. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  994. <tr><td bgcolor="#828DA6">
  995. <font color="#ffffff" face="arial,helvetica,sanserif">
  996. <a name="Jalopy"><strong>Jalopy</strong></a>
  997. </font>
  998. </td></tr>
  999. <tr><td>
  1000. <blockquote>
  1001. <p>An Ant Plug-in for the Java Source Code Formatter
  1002. Jalopy.</p>
  1003. <table>
  1004. <tr>
  1005. <td bgcolor="#039acc" colspan="" rowspan=""
  1006. valign="top" align="left">
  1007. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1008. Compatibility:
  1009. </font>
  1010. </td>
  1011. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1012. valign="top" align="left">
  1013. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1014. Ant 1.4 (or higher)
  1015. </font>
  1016. </td>
  1017. </tr>
  1018. <tr>
  1019. <td bgcolor="#039acc" colspan="" rowspan=""
  1020. valign="top" align="left">
  1021. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1022. URL:
  1023. </font>
  1024. </td>
  1025. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1026. valign="top" align="left">
  1027. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1028. <a href="http://jalopy.sourceforge.net">http://jalopy.sourceforge.net</a>
  1029. </font>
  1030. </td>
  1031. </tr>
  1032. <tr>
  1033. <td bgcolor="#039acc" colspan="" rowspan=""
  1034. valign="top" align="left">
  1035. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1036. Contact:
  1037. </font>
  1038. </td>
  1039. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1040. valign="top" align="left">
  1041. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1042. <a href="http://jalopy.sf.net/contact.html">http://jalopy.sf.net/contact.html</a>
  1043. </font>
  1044. </td>
  1045. </tr>
  1046. <tr>
  1047. <td bgcolor="#039acc" colspan="" rowspan=""
  1048. valign="top" align="left">
  1049. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1050. License:
  1051. </font>
  1052. </td>
  1053. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1054. valign="top" align="left">
  1055. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1056. Starting with release 1.0 Beta 6 the license is the
  1057. BSD License. Prior releases were under the GNU General
  1058. Public License.
  1059. </font>
  1060. </td>
  1061. </tr>
  1062. </table>
  1063. </blockquote>
  1064. </td></tr>
  1065. </table>
  1066. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1067. <tr><td bgcolor="#828DA6">
  1068. <font color="#ffffff" face="arial,helvetica,sanserif">
  1069. <a name="Javamake"><strong>Javamake</strong></a>
  1070. </font>
  1071. </td></tr>
  1072. <tr><td>
  1073. <blockquote>
  1074. <p>A task to compile Java sources and manage class file
  1075. dependencies. Functionality is equivalent to that of standard
  1076. Javac and Depend tasks combined, with improved dependency
  1077. checking.</p>
  1078. <table>
  1079. <tr>
  1080. <td bgcolor="#039acc" colspan="" rowspan=""
  1081. valign="top" align="left">
  1082. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1083. Compatibility:
  1084. </font>
  1085. </td>
  1086. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1087. valign="top" align="left">
  1088. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1089. Ant 1.4.1
  1090. </font>
  1091. </td>
  1092. </tr>
  1093. <tr>
  1094. <td bgcolor="#039acc" colspan="" rowspan=""
  1095. valign="top" align="left">
  1096. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1097. URL:
  1098. </font>
  1099. </td>
  1100. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1101. valign="top" align="left">
  1102. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1103. <a href="http://www.experimentalstuff.com/Technologies/JavaMake/index.html">http://www.experimentalstuff.com/Technologies/JavaMake/index.html</a>
  1104. </font>
  1105. </td>
  1106. </tr>
  1107. <tr>
  1108. <td bgcolor="#039acc" colspan="" rowspan=""
  1109. valign="top" align="left">
  1110. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1111. Contact:
  1112. </font>
  1113. </td>
  1114. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1115. valign="top" align="left">
  1116. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1117. <a href="mailto:Mikhail.Dmitriev@eng.sun.com">Mikhail Dmitriev</a>
  1118. </font>
  1119. </td>
  1120. </tr>
  1121. <tr>
  1122. <td bgcolor="#039acc" colspan="" rowspan=""
  1123. valign="top" align="left">
  1124. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1125. License:
  1126. </font>
  1127. </td>
  1128. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1129. valign="top" align="left">
  1130. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1131. BSD-like License
  1132. </font>
  1133. </td>
  1134. </tr>
  1135. </table>
  1136. </blockquote>
  1137. </td></tr>
  1138. </table>
  1139. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1140. <tr><td bgcolor="#828DA6">
  1141. <font color="#ffffff" face="arial,helvetica,sanserif">
  1142. <a name="J2ME Ant Tasks"><strong>J2ME Ant Tasks</strong></a>
  1143. </font>
  1144. </td></tr>
  1145. <tr><td>
  1146. <blockquote>
  1147. <p>There are two different sets of tasks to help build <a href="http://java.sun.com/j2me/">Java 2 Platform, Micro
  1148. Edition</a> (J2ME) applications.</p>
  1149. <p>This set supports CLDC and the K Virtual Machine (KVM):</p>
  1150. <table>
  1151. <tr>
  1152. <td bgcolor="#039acc" colspan="" rowspan=""
  1153. valign="top" align="left">
  1154. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1155. Compatibility:
  1156. </font>
  1157. </td>
  1158. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1159. valign="top" align="left">
  1160. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1161. Ant 1.3
  1162. </font>
  1163. </td>
  1164. </tr>
  1165. <tr>
  1166. <td bgcolor="#039acc" colspan="" rowspan=""
  1167. valign="top" align="left">
  1168. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1169. URL:
  1170. </font>
  1171. </td>
  1172. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1173. valign="top" align="left">
  1174. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1175. <a href="http://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a>
  1176. </font>
  1177. </td>
  1178. </tr>
  1179. <tr>
  1180. <td bgcolor="#039acc" colspan="" rowspan=""
  1181. valign="top" align="left">
  1182. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1183. Contact:
  1184. </font>
  1185. </td>
  1186. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1187. valign="top" align="left">
  1188. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1189. <a href="mailto:drib@enteract.com">Dave Dribin</a>
  1190. </font>
  1191. </td>
  1192. </tr>
  1193. <tr>
  1194. <td bgcolor="#039acc" colspan="" rowspan=""
  1195. valign="top" align="left">
  1196. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1197. License:
  1198. </font>
  1199. </td>
  1200. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1201. valign="top" align="left">
  1202. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1203. Apache Software License
  1204. </font>
  1205. </td>
  1206. </tr>
  1207. </table>
  1208. <p>And this set works with the J2ME Wireless Toolkit and MIDP
  1209. for PalmOS:</p>
  1210. <table>
  1211. <tr>
  1212. <td bgcolor="#039acc" colspan="" rowspan=""
  1213. valign="top" align="left">
  1214. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1215. Compatibility:
  1216. </font>
  1217. </td>
  1218. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1219. valign="top" align="left">
  1220. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1221. Ant 1.3
  1222. </font>
  1223. </td>
  1224. </tr>
  1225. <tr>
  1226. <td bgcolor="#039acc" colspan="" rowspan=""
  1227. valign="top" align="left">
  1228. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1229. URL:
  1230. </font>
  1231. </td>
  1232. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1233. valign="top" align="left">
  1234. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1235. <a href="http://www.stampysoft.com/ant/">http://www.stampysoft.com/ant/</a>
  1236. </font>
  1237. </td>
  1238. </tr>
  1239. <tr>
  1240. <td bgcolor="#039acc" colspan="" rowspan=""
  1241. valign="top" align="left">
  1242. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1243. Contact:
  1244. </font>
  1245. </td>
  1246. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1247. valign="top" align="left">
  1248. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1249. <a href="mailto:jeckels@stampysoft.com">Josh Eckels</a>
  1250. </font>
  1251. </td>
  1252. </tr>
  1253. <tr>
  1254. <td bgcolor="#039acc" colspan="" rowspan=""
  1255. valign="top" align="left">
  1256. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1257. License:
  1258. </font>
  1259. </td>
  1260. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1261. valign="top" align="left">
  1262. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1263. MIT License
  1264. </font>
  1265. </td>
  1266. </tr>
  1267. </table>
  1268. </blockquote>
  1269. </td></tr>
  1270. </table>
  1271. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1272. <tr><td bgcolor="#828DA6">
  1273. <font color="#ffffff" face="arial,helvetica,sanserif">
  1274. <a name="javarec"><strong>javarec</strong></a>
  1275. </font>
  1276. </td></tr>
  1277. <tr><td>
  1278. <blockquote>
  1279. <p>Ant tasks that generate record classes for VisualAge for
  1280. Java from Cobol copy books.</p>
  1281. <table>
  1282. <tr>
  1283. <td bgcolor="#039acc" colspan="" rowspan=""
  1284. valign="top" align="left">
  1285. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1286. Compatibility:
  1287. </font>
  1288. </td>
  1289. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1290. valign="top" align="left">
  1291. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1292. Ant 1.4
  1293. </font>
  1294. </td>
  1295. </tr>
  1296. <tr>
  1297. <td bgcolor="#039acc" colspan="" rowspan=""
  1298. valign="top" align="left">
  1299. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1300. URL:
  1301. </font>
  1302. </td>
  1303. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1304. valign="top" align="left">
  1305. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1306. <a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a>
  1307. </font>
  1308. </td>
  1309. </tr>
  1310. <tr>
  1311. <td bgcolor="#039acc" colspan="" rowspan=""
  1312. valign="top" align="left">
  1313. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1314. Contact:
  1315. </font>
  1316. </td>
  1317. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1318. valign="top" align="left">
  1319. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1320. <a href="mailto:pglezen@us.ibm.com">Paul Glezen</a>
  1321. </font>
  1322. </td>
  1323. </tr>
  1324. <tr>
  1325. <td bgcolor="#039acc" colspan="" rowspan=""
  1326. valign="top" align="left">
  1327. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1328. License:
  1329. </font>
  1330. </td>
  1331. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1332. valign="top" align="left">
  1333. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1334. Apache Software License
  1335. </font>
  1336. </td>
  1337. </tr>
  1338. </table>
  1339. </blockquote>
  1340. </td></tr>
  1341. </table>
  1342. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1343. <tr><td bgcolor="#828DA6">
  1344. <font color="#ffffff" face="arial,helvetica,sanserif">
  1345. <a name="Jing Task"><strong>Jing Task</strong></a>
  1346. </font>
  1347. </td></tr>
  1348. <tr><td>
  1349. <blockquote>
  1350. <p> Validates XML files against the RELAX NG alternative to XML Schema.
  1351. The Jing task for Ant allows you to efficiently validate
  1352. multiple files against multiple RELAX NG patterns and integrate
  1353. RELAX NG validation with other XML processing.</p>
  1354. <table>
  1355. <tr>
  1356. <td bgcolor="#039acc" colspan="" rowspan=""
  1357. valign="top" align="left">
  1358. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1359. Compatibility:
  1360. </font>
  1361. </td>
  1362. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1363. valign="top" align="left">
  1364. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1365. Ant 1.4 and later
  1366. </font>
  1367. </td>
  1368. </tr>
  1369. <tr>
  1370. <td bgcolor="#039acc" colspan="" rowspan=""
  1371. valign="top" align="left">
  1372. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1373. URL:
  1374. </font>
  1375. </td>
  1376. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1377. valign="top" align="left">
  1378. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1379. <a href="http://www.thaiopensource.com/relaxng/jing-ant.html">
  1380. http://www.thaiopensource.com/relaxng/jing-ant.html</a>
  1381. </font>
  1382. </td>
  1383. </tr>
  1384. <tr>
  1385. <td bgcolor="#039acc" colspan="" rowspan=""
  1386. valign="top" align="left">
  1387. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1388. License:
  1389. </font>
  1390. </td>
  1391. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1392. valign="top" align="left">
  1393. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1394. BSD-like
  1395. </font>
  1396. </td>
  1397. </tr>
  1398. </table>
  1399. </blockquote>
  1400. </td></tr>
  1401. </table>
  1402. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1403. <tr><td bgcolor="#828DA6">
  1404. <font color="#ffffff" face="arial,helvetica,sanserif">
  1405. <a name="jMetra"><strong>jMetra</strong></a>
  1406. </font>
  1407. </td></tr>
  1408. <tr><td>
  1409. <blockquote>
  1410. <p>jMetra is a tool for collecting code metrics across a
  1411. project lifecycle and compiling the results into
  1412. JavaDoc-styled documentation to analyze project metrics over
  1413. time. jMetra is best utilized by integrating it with your
  1414. project's scheduled build process.</p>
  1415. <p>It works from the command line or using several provided
  1416. Ant tasks.</p>
  1417. <table>
  1418. <tr>
  1419. <td bgcolor="#039acc" colspan="" rowspan=""
  1420. valign="top" align="left">
  1421. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1422. Compatibility:
  1423. </font>
  1424. </td>
  1425. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1426. valign="top" align="left">
  1427. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1428. Ant 1.4 and higher
  1429. </font>
  1430. </td>
  1431. </tr>
  1432. <tr>
  1433. <td bgcolor="#039acc" colspan="" rowspan=""
  1434. valign="top" align="left">
  1435. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1436. URL:
  1437. </font>
  1438. </td>
  1439. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1440. valign="top" align="left">
  1441. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1442. <a href="http://www.jmetra.com/">http://www.jmetra.com/</a>
  1443. </font>
  1444. </td>
  1445. </tr>
  1446. <tr>
  1447. <td bgcolor="#039acc" colspan="" rowspan=""
  1448. valign="top" align="left">
  1449. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1450. Contact:
  1451. </font>
  1452. </td>
  1453. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1454. valign="top" align="left">
  1455. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1456. <a href="mailto:tnewton@hypercisioninc.com">R Todd Newton
  1457. </a>
  1458. </font>
  1459. </td>
  1460. </tr>
  1461. <tr>
  1462. <td bgcolor="#039acc" colspan="" rowspan=""
  1463. valign="top" align="left">
  1464. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1465. License:
  1466. </font>
  1467. </td>
  1468. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1469. valign="top" align="left">
  1470. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1471. Commercial, free licenses for open source projects and
  1472. evaluations.
  1473. </font>
  1474. </td>
  1475. </tr>
  1476. </table>
  1477. </blockquote>
  1478. </td></tr>
  1479. </table>
  1480. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1481. <tr><td bgcolor="#828DA6">
  1482. <font color="#ffffff" face="arial,helvetica,sanserif">
  1483. <a name="JNI"><strong>JNI</strong></a>
  1484. </font>
  1485. </td></tr>
  1486. <tr><td>
  1487. <blockquote>
  1488. <p>
  1489. JNI is a free toolkit that makes easy work of
  1490. integrating Java and C through the Java Native
  1491. Interface (JNI). It includes a code generator that
  1492. generates both Java "proxy" classes to access C
  1493. "peer" classes, and C "proxy" classes to access
  1494. Java "peer" classes or interfaces. It also
  1495. includes a core library with a simplified JVM
  1496. interface as well as "helper" classes to ease
  1497. working with the JNI data types. The code
  1498. generation is driven by an XML project file that
  1499. can be created with the assistance of the GUI
  1500. Project Manager. The code generation can be
  1501. invoked either from Ant or from the
  1502. GUI. Includes a comprehensive printable PDF User
  1503. Guide and plenty of examples.</p>
  1504. <table>
  1505. <tr>
  1506. <td bgcolor="#039acc" colspan="" rowspan=""
  1507. valign="top" align="left">
  1508. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1509. Compatibility:
  1510. </font>
  1511. </td>
  1512. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1513. valign="top" align="left">
  1514. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1515. Ant 1.4
  1516. </font>
  1517. </td>
  1518. </tr>
  1519. <tr>
  1520. <td bgcolor="#039acc" colspan="" rowspan=""
  1521. valign="top" align="left">
  1522. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1523. URL:
  1524. </font>
  1525. </td>
  1526. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1527. valign="top" align="left">
  1528. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1529. <a href="http://jnipp.sf.net/">http://jnipp.sf.net/</a>
  1530. </font>
  1531. </td>
  1532. </tr>
  1533. <tr>
  1534. <td bgcolor="#039acc" colspan="" rowspan=""
  1535. valign="top" align="left">
  1536. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1537. Contact:
  1538. </font>
  1539. </td>
  1540. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1541. valign="top" align="left">
  1542. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1543. <a href="mailto:ptrewhella@users.sf.net">Phillip E. Trewhella</a>
  1544. </font>
  1545. </td>
  1546. </tr>
  1547. <tr>
  1548. <td bgcolor="#039acc" colspan="" rowspan=""
  1549. valign="top" align="left">
  1550. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1551. License:
  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. GNU LGPL
  1558. </font>
  1559. </td>
  1560. </tr>
  1561. </table>
  1562. </blockquote>
  1563. </td></tr>
  1564. </table>
  1565. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1566. <tr><td bgcolor="#828DA6">
  1567. <font color="#ffffff" face="arial,helvetica,sanserif">
  1568. <a name="PMD"><strong>PMD</strong></a>
  1569. </font>
  1570. </td></tr>
  1571. <tr><td>
  1572. <blockquote>
  1573. <p>PMD checks Java source code for unused variables,
  1574. unnecessary object creation, etc</p>
  1575. <table>
  1576. <tr>
  1577. <td bgcolor="#039acc" colspan="" rowspan=""
  1578. valign="top" align="left">
  1579. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1580. Compatibility:
  1581. </font>
  1582. </td>
  1583. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1584. valign="top" align="left">
  1585. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1586. Ant 1.4 and higher
  1587. </font>
  1588. </td>
  1589. </tr>
  1590. <tr>
  1591. <td bgcolor="#039acc" colspan="" rowspan=""
  1592. valign="top" align="left">
  1593. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1594. URL:
  1595. </font>
  1596. </td>
  1597. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1598. valign="top" align="left">
  1599. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1600. <a href="http://pmd.sf.net/">http://pmd.sf.net/</a>
  1601. </font>
  1602. </td>
  1603. </tr>
  1604. <tr>
  1605. <td bgcolor="#039acc" colspan="" rowspan=""
  1606. valign="top" align="left">
  1607. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1608. Contact:
  1609. </font>
  1610. </td>
  1611. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1612. valign="top" align="left">
  1613. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1614. <a href="mailto:tcopeland@apache.org">Tom Copeland</a>
  1615. </font>
  1616. </td>
  1617. </tr>
  1618. <tr>
  1619. <td bgcolor="#039acc" colspan="" rowspan=""
  1620. valign="top" align="left">
  1621. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1622. License:
  1623. </font>
  1624. </td>
  1625. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1626. valign="top" align="left">
  1627. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1628. Apache Software Foundation License
  1629. </font>
  1630. </td>
  1631. </tr>
  1632. </table>
  1633. </blockquote>
  1634. </td></tr>
  1635. </table>
  1636. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1637. <tr><td bgcolor="#828DA6">
  1638. <font color="#ffffff" face="arial,helvetica,sanserif">
  1639. <a name="Styler"><strong>Styler</strong></a>
  1640. </font>
  1641. </td></tr>
  1642. <tr><td>
  1643. <blockquote>
  1644. <p>The styler task makes useful combinations of XSLT transformations
  1645. easy to specify in an Ant build file. Like the built-in Ant task
  1646. style, styler can apply a single transformation to a set of XML files.
  1647. But it can also:</p>
  1648. <ul>
  1649. <li>handle multiple transformations, in parallel or pipelined.</li>
  1650. <li>enable transformations that split or merge files</li>
  1651. <li>process non-XML files, especially HTML (based on JTidy)</li>
  1652. <li>apply non-XSLT transformation, especially "regular
  1653. fragmentations"</li>
  1654. <li>use any custom XMLReader or XMLFilter class to handle new file
  1655. formats and transformation techniques.</li>
  1656. </ul>
  1657. <table>
  1658. <tr>
  1659. <td bgcolor="#039acc" colspan="" rowspan=""
  1660. valign="top" align="left">
  1661. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1662. Compatibility:
  1663. </font>
  1664. </td>
  1665. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1666. valign="top" align="left">
  1667. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1668. Ant 1.4
  1669. </font>
  1670. </td>
  1671. </tr>
  1672. <tr>
  1673. <td bgcolor="#039acc" colspan="" rowspan=""
  1674. valign="top" align="left">
  1675. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1676. URL:
  1677. </font>
  1678. </td>
  1679. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1680. valign="top" align="left">
  1681. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1682. <a href="http://www.langdale.com.au/styler/">http://www.langdale.com.au/styler/</a>
  1683. </font>
  1684. </td>
  1685. </tr>
  1686. <tr>
  1687. <td bgcolor="#039acc" colspan="" rowspan=""
  1688. valign="top" align="left">
  1689. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1690. Contact:
  1691. </font>
  1692. </td>
  1693. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1694. valign="top" align="left">
  1695. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1696. <a href="mailto:adv@langdale.com.au">Arnold deVos</a>
  1697. </font>
  1698. </td>
  1699. </tr>
  1700. <tr>
  1701. <td bgcolor="#039acc" colspan="" rowspan=""
  1702. valign="top" align="left">
  1703. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1704. License:
  1705. </font>
  1706. </td>
  1707. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1708. valign="top" align="left">
  1709. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1710. LGPL
  1711. </font>
  1712. </td>
  1713. </tr>
  1714. </table>
  1715. </blockquote>
  1716. </td></tr>
  1717. </table>
  1718. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1719. <tr><td bgcolor="#828DA6">
  1720. <font color="#ffffff" face="arial,helvetica,sanserif">
  1721. <a name="Tidy Imports (Tim)"><strong>Tidy Imports (Tim)</strong></a>
  1722. </font>
  1723. </td></tr>
  1724. <tr><td>
  1725. <blockquote>
  1726. <p>Tim is a handy utility that can be executed on the command
  1727. line or via Ant that automatically formats your import
  1728. declarations. Tim is capable of removing unused imports,
  1729. expanding or collapsing imports and even organising them into
  1730. pre-determined groups.</p>
  1731. <table>
  1732. <tr>
  1733. <td bgcolor="#039acc" colspan="" rowspan=""
  1734. valign="top" align="left">
  1735. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1736. Compatibility:
  1737. </font>
  1738. </td>
  1739. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1740. valign="top" align="left">
  1741. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1742. Ant 1.3 and later
  1743. </font>
  1744. </td>
  1745. </tr>
  1746. <tr>
  1747. <td bgcolor="#039acc" colspan="" rowspan=""
  1748. valign="top" align="left">
  1749. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1750. URL:
  1751. </font>
  1752. </td>
  1753. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1754. valign="top" align="left">
  1755. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1756. <a href="http://www.chive.com/tim.htm">http://www.chive.com/tim.htm</a>
  1757. </font>
  1758. </td>
  1759. </tr>
  1760. <tr>
  1761. <td bgcolor="#039acc" colspan="" rowspan=""
  1762. valign="top" align="left">
  1763. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1764. Contact:
  1765. </font>
  1766. </td>
  1767. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1768. valign="top" align="left">
  1769. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1770. <a href="mailto:support@chive.com">support@chive.com</a>
  1771. </font>
  1772. </td>
  1773. </tr>
  1774. <tr>
  1775. <td bgcolor="#039acc" colspan="" rowspan=""
  1776. valign="top" align="left">
  1777. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1778. License:
  1779. </font>
  1780. </td>
  1781. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1782. valign="top" align="left">
  1783. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1784. Commercial
  1785. </font>
  1786. </td>
  1787. </tr>
  1788. </table>
  1789. </blockquote>
  1790. </td></tr>
  1791. </table>
  1792. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1793. <tr><td bgcolor="#828DA6">
  1794. <font color="#ffffff" face="arial,helvetica,sanserif">
  1795. <a name="TiniAnt"><strong>TiniAnt</strong></a>
  1796. </font>
  1797. </td></tr>
  1798. <tr><td>
  1799. <blockquote>
  1800. <p>TiniAnt is an Ant task to support building applications for
  1801. the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>
  1802. <table>
  1803. <tr>
  1804. <td bgcolor="#039acc" colspan="" rowspan=""
  1805. valign="top" align="left">
  1806. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1807. Compatibility:
  1808. </font>
  1809. </td>
  1810. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1811. valign="top" align="left">
  1812. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1813. Ant 1.2 to 1.4.1
  1814. </font>
  1815. </td>
  1816. </tr>
  1817. <tr>
  1818. <td bgcolor="#039acc" colspan="" rowspan=""
  1819. valign="top" align="left">
  1820. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1821. URL:
  1822. </font>
  1823. </td>
  1824. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1825. valign="top" align="left">
  1826. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1827. <a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a>
  1828. </font>
  1829. </td>
  1830. </tr>
  1831. <tr>
  1832. <td bgcolor="#039acc" colspan="" rowspan=""
  1833. valign="top" align="left">
  1834. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1835. Contact:
  1836. </font>
  1837. </td>
  1838. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1839. valign="top" align="left">
  1840. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1841. <a href="mailto:kelly@ad1440.net">Sean Kelly</a>
  1842. </font>
  1843. </td>
  1844. </tr>
  1845. <tr>
  1846. <td bgcolor="#039acc" colspan="" rowspan=""
  1847. valign="top" align="left">
  1848. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1849. License:
  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. BSD-like license
  1856. </font>
  1857. </td>
  1858. </tr>
  1859. </table>
  1860. </blockquote>
  1861. </td></tr>
  1862. </table>
  1863. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1864. <tr><td bgcolor="#828DA6">
  1865. <font color="#ffffff" face="arial,helvetica,sanserif">
  1866. <a name="Venus Application Publisher's (Vamp) Ant Task Suite"><strong>Venus Application Publisher's (Vamp) Ant Task Suite</strong></a>
  1867. </font>
  1868. </td></tr>
  1869. <tr><td>
  1870. <blockquote>
  1871. <p>Venus Application Publisher's (Vamp) Ant Task Suite allows
  1872. you to sign and package your applications into relocatable Web
  1873. Archives that you can drop into your web server for
  1874. single-click launching using Java Web Start or into single
  1875. Java Archive installers that serve up their content through a
  1876. built-in, multi-threaded, ultra light-weight web server.</p>
  1877. <table>
  1878. <tr>
  1879. <td bgcolor="#039acc" colspan="" rowspan=""
  1880. valign="top" align="left">
  1881. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1882. Compatibility:
  1883. </font>
  1884. </td>
  1885. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1886. valign="top" align="left">
  1887. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1888. Ant 1.2 and 1.3
  1889. </font>
  1890. </td>
  1891. </tr>
  1892. <tr>
  1893. <td bgcolor="#039acc" colspan="" rowspan=""
  1894. valign="top" align="left">
  1895. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1896. URL:
  1897. </font>
  1898. </td>
  1899. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1900. valign="top" align="left">
  1901. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1902. <a href="http://www.geocities.com/vamp201/ant.html">http://www.geocities.com/vamp201/ant.html</a>
  1903. </font>
  1904. </td>
  1905. </tr>
  1906. <tr>
  1907. <td bgcolor="#039acc" colspan="" rowspan=""
  1908. valign="top" align="left">
  1909. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1910. Contact:
  1911. </font>
  1912. </td>
  1913. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1914. valign="top" align="left">
  1915. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1916. <a href="mailto:vamp201@yahoo.com">Gerald Bauer</a>
  1917. </font>
  1918. </td>
  1919. </tr>
  1920. <tr>
  1921. <td bgcolor="#039acc" colspan="" rowspan=""
  1922. valign="top" align="left">
  1923. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1924. License:
  1925. </font>
  1926. </td>
  1927. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1928. valign="top" align="left">
  1929. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1930. GNU General Public License
  1931. </font>
  1932. </td>
  1933. </tr>
  1934. </table>
  1935. </blockquote>
  1936. </td></tr>
  1937. </table>
  1938. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  1939. <tr><td bgcolor="#828DA6">
  1940. <font color="#ffffff" face="arial,helvetica,sanserif">
  1941. <a name="WOProject"><strong>WOProject</strong></a>
  1942. </font>
  1943. </td></tr>
  1944. <tr><td>
  1945. <blockquote>
  1946. <p>WOProject provides a set of tools to work with
  1947. <a href="http://webobjects.com/">WebObjects 5.1</a>
  1948. independent from platform and IDE. It significantly
  1949. improves developer productivity
  1950. and makes complex project structures more flexible compared to
  1951. traditional Makefile-based approach.
  1952. </p>
  1953. <table>
  1954. <tr>
  1955. <td bgcolor="#039acc" colspan="" rowspan=""
  1956. valign="top" align="left">
  1957. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1958. Compatibility:
  1959. </font>
  1960. </td>
  1961. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1962. valign="top" align="left">
  1963. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1964. Ant 1.4
  1965. </font>
  1966. </td>
  1967. </tr>
  1968. <tr>
  1969. <td bgcolor="#039acc" colspan="" rowspan=""
  1970. valign="top" align="left">
  1971. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1972. URL:
  1973. </font>
  1974. </td>
  1975. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1976. valign="top" align="left">
  1977. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1978. <a href="http://objectstyle.org/woproject/">http://objectstyle.org/woproject/</a>
  1979. </font>
  1980. </td>
  1981. </tr>
  1982. <tr>
  1983. <td bgcolor="#039acc" colspan="" rowspan=""
  1984. valign="top" align="left">
  1985. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1986. Contact:
  1987. </font>
  1988. </td>
  1989. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  1990. valign="top" align="left">
  1991. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  1992. <a href="mailto:andrus@objectstyle.org">Andrus Adamchik</a>
  1993. </font>
  1994. </td>
  1995. </tr>
  1996. <tr>
  1997. <td bgcolor="#039acc" colspan="" rowspan=""
  1998. valign="top" align="left">
  1999. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2000. License:
  2001. </font>
  2002. </td>
  2003. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2004. valign="top" align="left">
  2005. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2006. Apache license
  2007. </font>
  2008. </td>
  2009. </tr>
  2010. </table>
  2011. </blockquote>
  2012. </td></tr>
  2013. </table>
  2014. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2015. <tr><td bgcolor="#828DA6">
  2016. <font color="#ffffff" face="arial,helvetica,sanserif">
  2017. <a name="XDoclet"><strong>XDoclet</strong></a>
  2018. </font>
  2019. </td></tr>
  2020. <tr><td>
  2021. <blockquote>
  2022. <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
  2023. It lets you create custom Javadoc @tags and based on those tags
  2024. generates source code or other files (such as xml-ish deployment
  2025. descriptors). Templates and matching tasks are provided to generate
  2026. EJB and web application deployment descriptors.
  2027. </p>
  2028. <table>
  2029. <tr>
  2030. <td bgcolor="#039acc" colspan="" rowspan=""
  2031. valign="top" align="left">
  2032. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2033. Compatibility:
  2034. </font>
  2035. </td>
  2036. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2037. valign="top" align="left">
  2038. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2039. Ant 1.4
  2040. </font>
  2041. </td>
  2042. </tr>
  2043. <tr>
  2044. <td bgcolor="#039acc" colspan="" rowspan=""
  2045. valign="top" align="left">
  2046. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2047. URL:
  2048. </font>
  2049. </td>
  2050. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2051. valign="top" align="left">
  2052. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2053. <a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a>
  2054. </font>
  2055. </td>
  2056. </tr>
  2057. <tr>
  2058. <td bgcolor="#039acc" colspan="" rowspan=""
  2059. valign="top" align="left">
  2060. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2061. License:
  2062. </font>
  2063. </td>
  2064. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2065. valign="top" align="left">
  2066. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2067. BSD license
  2068. </font>
  2069. </td>
  2070. </tr>
  2071. </table>
  2072. </blockquote>
  2073. </td></tr>
  2074. </table>
  2075. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2076. <tr><td bgcolor="#828DA6">
  2077. <font color="#ffffff" face="arial,helvetica,sanserif">
  2078. <a name="XmlTask"><strong>XmlTask</strong></a>
  2079. </font>
  2080. </td></tr>
  2081. <tr><td>
  2082. <blockquote>
  2083. <p>XmlTask provides a simple means to modify XML documents
  2084. without having to learn XSLT. A simple path reference to an
  2085. XML node specifies the node you want to change, and how you
  2086. want to allow XML insertion and removal, or attribute
  2087. changes. The emphasis is on providing the simplest means to
  2088. perform common XML replacements</p>
  2089. <table>
  2090. <tr>
  2091. <td bgcolor="#039acc" colspan="" rowspan=""
  2092. valign="top" align="left">
  2093. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2094. Compatibility:
  2095. </font>
  2096. </td>
  2097. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2098. valign="top" align="left">
  2099. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2100. Ant 1.4 and later
  2101. </font>
  2102. </td>
  2103. </tr>
  2104. <tr>
  2105. <td bgcolor="#039acc" colspan="" rowspan=""
  2106. valign="top" align="left">
  2107. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2108. URL:
  2109. </font>
  2110. </td>
  2111. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2112. valign="top" align="left">
  2113. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2114. <a href="http://www.oopsconsultancy.com/software/xmltask.html">http://www.oopsconsultancy.com/software/xmltask.html</a>
  2115. </font>
  2116. </td>
  2117. </tr>
  2118. <tr>
  2119. <td bgcolor="#039acc" colspan="" rowspan=""
  2120. valign="top" align="left">
  2121. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2122. Contact:
  2123. </font>
  2124. </td>
  2125. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2126. valign="top" align="left">
  2127. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2128. <a href="mailto:xmltask@oopsconsultancy.com">xmltask@oopsconsultancy.com</a>
  2129. </font>
  2130. </td>
  2131. </tr>
  2132. <tr>
  2133. <td bgcolor="#039acc" colspan="" rowspan=""
  2134. valign="top" align="left">
  2135. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2136. License:
  2137. </font>
  2138. </td>
  2139. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2140. valign="top" align="left">
  2141. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2142. GNU General Public License
  2143. </font>
  2144. </td>
  2145. </tr>
  2146. </table>
  2147. </blockquote>
  2148. </td></tr>
  2149. </table>
  2150. </blockquote>
  2151. </td></tr>
  2152. </table>
  2153. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2154. <tr><td bgcolor="#525D76">
  2155. <font color="#ffffff" face="arial,helvetica,sanserif">
  2156. <a name="Compiler Implementations"><strong>Compiler Implementations</strong></a>
  2157. </font>
  2158. </td></tr>
  2159. <tr><td>
  2160. <blockquote>
  2161. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2162. <tr><td bgcolor="#828DA6">
  2163. <font color="#ffffff" face="arial,helvetica,sanserif">
  2164. <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>
  2165. </font>
  2166. </td></tr>
  2167. <tr><td>
  2168. <blockquote>
  2169. <p>miniRMI is a freeware opensource library that serves as a
  2170. lightweight replacement for the original java.rmi packages and
  2171. is suitable especially for applets. Ant 1.4+
  2172. <code>&lt;rmic&gt;</code> adapter included.</p>
  2173. <table>
  2174. <tr>
  2175. <td bgcolor="#039acc" colspan="" rowspan=""
  2176. valign="top" align="left">
  2177. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2178. Compatibility:
  2179. </font>
  2180. </td>
  2181. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2182. valign="top" align="left">
  2183. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2184. Ant 1.4 and later
  2185. </font>
  2186. </td>
  2187. </tr>
  2188. <tr>
  2189. <td bgcolor="#039acc" colspan="" rowspan=""
  2190. valign="top" align="left">
  2191. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2192. URL:
  2193. </font>
  2194. </td>
  2195. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2196. valign="top" align="left">
  2197. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2198. <a href="http://dione.zcu.cz/~toman40/miniRMI/">http://dione.zcu.cz/~toman40/miniRMI/</a>
  2199. </font>
  2200. </td>
  2201. </tr>
  2202. <tr>
  2203. <td bgcolor="#039acc" colspan="" rowspan=""
  2204. valign="top" align="left">
  2205. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2206. Contact:
  2207. </font>
  2208. </td>
  2209. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2210. valign="top" align="left">
  2211. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2212. <a href="mailto:Petr.Toman@pinknet.cz">Petr Toman</a>
  2213. </font>
  2214. </td>
  2215. </tr>
  2216. <tr>
  2217. <td bgcolor="#039acc" colspan="" rowspan=""
  2218. valign="top" align="left">
  2219. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2220. License:
  2221. </font>
  2222. </td>
  2223. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2224. valign="top" align="left">
  2225. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2226. Gnu Lesser Public License
  2227. </font>
  2228. </td>
  2229. </tr>
  2230. </table>
  2231. </blockquote>
  2232. </td></tr>
  2233. </table>
  2234. </blockquote>
  2235. </td></tr>
  2236. </table>
  2237. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2238. <tr><td bgcolor="#525D76">
  2239. <font color="#ffffff" face="arial,helvetica,sanserif">
  2240. <a name="IDE and Editor Integration"><strong>IDE and Editor Integration</strong></a>
  2241. </font>
  2242. </td></tr>
  2243. <tr><td>
  2244. <blockquote>
  2245. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2246. <tr><td bgcolor="#828DA6">
  2247. <font color="#ffffff" face="arial,helvetica,sanserif">
  2248. <a name="AntFarm"><strong>AntFarm</strong></a>
  2249. </font>
  2250. </td></tr>
  2251. <tr><td>
  2252. <blockquote>
  2253. <p>A plugin that integrates Ant into the jEdit editor.</p>
  2254. <table>
  2255. <tr>
  2256. <td bgcolor="#039acc" colspan="" rowspan=""
  2257. valign="top" align="left">
  2258. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2259. Compatibility:
  2260. </font>
  2261. </td>
  2262. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2263. valign="top" align="left">
  2264. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2265. bundles Ant 1.3
  2266. </font>
  2267. </td>
  2268. </tr>
  2269. <tr>
  2270. <td bgcolor="#039acc" colspan="" rowspan=""
  2271. valign="top" align="left">
  2272. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2273. URL:
  2274. </font>
  2275. </td>
  2276. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2277. valign="top" align="left">
  2278. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2279. <a href="http://plugins.jedit.org/plugins/AntFarm">http://plugins.jedit.org/plugins/AntFarm</a>
  2280. </font>
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td bgcolor="#039acc" colspan="" rowspan=""
  2285. valign="top" align="left">
  2286. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2287. Contact:
  2288. </font>
  2289. </td>
  2290. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2291. valign="top" align="left">
  2292. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2293. <a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</a>
  2294. </font>
  2295. </td>
  2296. </tr>
  2297. <tr>
  2298. <td bgcolor="#039acc" colspan="" rowspan=""
  2299. valign="top" align="left">
  2300. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2301. License:
  2302. </font>
  2303. </td>
  2304. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2305. valign="top" align="left">
  2306. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2307. Apache Software License
  2308. </font>
  2309. </td>
  2310. </tr>
  2311. </table>
  2312. </blockquote>
  2313. </td></tr>
  2314. </table>
  2315. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2316. <tr><td bgcolor="#828DA6">
  2317. <font color="#ffffff" face="arial,helvetica,sanserif">
  2318. <a name="AntMan"><strong>AntMan</strong></a>
  2319. </font>
  2320. </td></tr>
  2321. <tr><td>
  2322. <blockquote>
  2323. <p>An AddIn that integrates Ant with the JDeveloper IDE</p>
  2324. <table>
  2325. <tr>
  2326. <td bgcolor="#039acc" colspan="" rowspan=""
  2327. valign="top" align="left">
  2328. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2329. Compatibility:
  2330. </font>
  2331. </td>
  2332. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2333. valign="top" align="left">
  2334. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2335. Ant 1.4.1
  2336. </font>
  2337. </td>
  2338. </tr>
  2339. <tr>
  2340. <td bgcolor="#039acc" colspan="" rowspan=""
  2341. valign="top" align="left">
  2342. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2343. URL:
  2344. </font>
  2345. </td>
  2346. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2347. valign="top" align="left">
  2348. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2349. <a href="http://www.erudra.com/antman/index.html">http://www.erudra.com/antman/index.html</a>
  2350. </font>
  2351. </td>
  2352. </tr>
  2353. <tr>
  2354. <td bgcolor="#039acc" colspan="" rowspan=""
  2355. valign="top" align="left">
  2356. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2357. Contact:
  2358. </font>
  2359. </td>
  2360. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2361. valign="top" align="left">
  2362. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2363. <a href="mailto:ashok@erudra.com">Ashok Sridhar</a>
  2364. </font>
  2365. </td>
  2366. </tr>
  2367. <tr>
  2368. <td bgcolor="#039acc" colspan="" rowspan=""
  2369. valign="top" align="left">
  2370. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2371. License:
  2372. </font>
  2373. </td>
  2374. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2375. valign="top" align="left">
  2376. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2377. GNU General Public License
  2378. </font>
  2379. </td>
  2380. </tr>
  2381. </table>
  2382. </blockquote>
  2383. </td></tr>
  2384. </table>
  2385. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2386. <tr><td bgcolor="#828DA6">
  2387. <font color="#ffffff" face="arial,helvetica,sanserif">
  2388. <a name="AntRunner"><strong>AntRunner</strong></a>
  2389. </font>
  2390. </td></tr>
  2391. <tr><td>
  2392. <blockquote>
  2393. <p>An OpenTool that integrates Ant into the JBuilder IDE.</p>
  2394. <table>
  2395. <tr>
  2396. <td bgcolor="#039acc" colspan="" rowspan=""
  2397. valign="top" align="left">
  2398. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2399. Compatibility:
  2400. </font>
  2401. </td>
  2402. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2403. valign="top" align="left">
  2404. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2405. Ant 1.2 and 1.3
  2406. </font>
  2407. </td>
  2408. </tr>
  2409. <tr>
  2410. <td bgcolor="#039acc" colspan="" rowspan=""
  2411. valign="top" align="left">
  2412. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2413. URL:
  2414. </font>
  2415. </td>
  2416. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2417. valign="top" align="left">
  2418. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2419. <a href="http://www.dieter-bogdoll.de/java/AntRunner/">http://www.dieter-bogdoll.de/java/AntRunner/</a>
  2420. </font>
  2421. </td>
  2422. </tr>
  2423. <tr>
  2424. <td bgcolor="#039acc" colspan="" rowspan=""
  2425. valign="top" align="left">
  2426. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2427. Contact:
  2428. </font>
  2429. </td>
  2430. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2431. valign="top" align="left">
  2432. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2433. <a href="mailto:bogdoll@users.sourceforge.net">Dieter Bogdoll</a>
  2434. </font>
  2435. </td>
  2436. </tr>
  2437. <tr>
  2438. <td bgcolor="#039acc" colspan="" rowspan=""
  2439. valign="top" align="left">
  2440. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2441. License:
  2442. </font>
  2443. </td>
  2444. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2445. valign="top" align="left">
  2446. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2447. GNU General Public License
  2448. </font>
  2449. </td>
  2450. </tr>
  2451. </table>
  2452. </blockquote>
  2453. </td></tr>
  2454. </table>
  2455. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2456. <tr><td bgcolor="#828DA6">
  2457. <font color="#ffffff" face="arial,helvetica,sanserif">
  2458. <a name="AntWork"><strong>AntWork</strong></a>
  2459. </font>
  2460. </td></tr>
  2461. <tr><td>
  2462. <blockquote>
  2463. <p>A plugin that integrates Ant into the Jext editor.</p>
  2464. <table>
  2465. <tr>
  2466. <td bgcolor="#039acc" colspan="" rowspan=""
  2467. valign="top" align="left">
  2468. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2469. Compatibility:
  2470. </font>
  2471. </td>
  2472. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2473. valign="top" align="left">
  2474. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2475. Ant 1.2 and 1.3
  2476. </font>
  2477. </td>
  2478. </tr>
  2479. <tr>
  2480. <td bgcolor="#039acc" colspan="" rowspan=""
  2481. valign="top" align="left">
  2482. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2483. URL:
  2484. </font>
  2485. </td>
  2486. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2487. valign="top" align="left">
  2488. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2489. <a href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip</a>
  2490. </font>
  2491. </td>
  2492. </tr>
  2493. <tr>
  2494. <td bgcolor="#039acc" colspan="" rowspan=""
  2495. valign="top" align="left">
  2496. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2497. Contact:
  2498. </font>
  2499. </td>
  2500. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2501. valign="top" align="left">
  2502. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2503. <a href="mailto:KHartlage@t-online.de">Klaus Hartlage</a>
  2504. </font>
  2505. </td>
  2506. </tr>
  2507. <tr>
  2508. <td bgcolor="#039acc" colspan="" rowspan=""
  2509. valign="top" align="left">
  2510. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2511. License:
  2512. </font>
  2513. </td>
  2514. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2515. valign="top" align="left">
  2516. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2517. GNU General Public License
  2518. </font>
  2519. </td>
  2520. </tr>
  2521. </table>
  2522. </blockquote>
  2523. </td></tr>
  2524. </table>
  2525. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2526. <tr><td bgcolor="#828DA6">
  2527. <font color="#ffffff" face="arial,helvetica,sanserif">
  2528. <a name="Eclipse"><strong>Eclipse</strong></a>
  2529. </font>
  2530. </td></tr>
  2531. <tr><td>
  2532. <blockquote>
  2533. <p>Eclipse is a universal tool platform with Ant integration.</p>
  2534. <table>
  2535. <tr>
  2536. <td bgcolor="#039acc" colspan="" rowspan=""
  2537. valign="top" align="left">
  2538. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2539. Compatibility:
  2540. </font>
  2541. </td>
  2542. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2543. valign="top" align="left">
  2544. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2545. Ant 1.3 - 1.4.1
  2546. </font>
  2547. </td>
  2548. </tr>
  2549. <tr>
  2550. <td bgcolor="#039acc" colspan="" rowspan=""
  2551. valign="top" align="left">
  2552. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2553. URL:
  2554. </font>
  2555. </td>
  2556. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2557. valign="top" align="left">
  2558. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2559. <a href="http://www.eclipse.org">http://www.eclipse.org</a>
  2560. </font>
  2561. </td>
  2562. </tr>
  2563. <tr>
  2564. <td bgcolor="#039acc" colspan="" rowspan=""
  2565. valign="top" align="left">
  2566. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2567. Contact:
  2568. </font>
  2569. </td>
  2570. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2571. valign="top" align="left">
  2572. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2573. <a href="news://news.eclipse.org/eclipse.tools">news://news.eclipse.org/eclipse.tools</a>
  2574. </font>
  2575. </td>
  2576. </tr>
  2577. <tr>
  2578. <td bgcolor="#039acc" colspan="" rowspan=""
  2579. valign="top" align="left">
  2580. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2581. License:
  2582. </font>
  2583. </td>
  2584. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2585. valign="top" align="left">
  2586. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2587. Common Public License Version 1.0
  2588. </font>
  2589. </td>
  2590. </tr>
  2591. </table>
  2592. </blockquote>
  2593. </td></tr>
  2594. </table>
  2595. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2596. <tr><td bgcolor="#828DA6">
  2597. <font color="#ffffff" face="arial,helvetica,sanserif">
  2598. <a name="IntelliJ IDEA 2.0"><strong>IntelliJ IDEA 2.0</strong></a>
  2599. </font>
  2600. </td></tr>
  2601. <tr><td>
  2602. <blockquote>
  2603. <p>Java IDE with refactoring support and Ant integration.</p>
  2604. <table>
  2605. <tr>
  2606. <td bgcolor="#039acc" colspan="" rowspan=""
  2607. valign="top" align="left">
  2608. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2609. Compatibility:
  2610. </font>
  2611. </td>
  2612. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2613. valign="top" align="left">
  2614. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2615. bundles Ant 1.3
  2616. </font>
  2617. </td>
  2618. </tr>
  2619. <tr>
  2620. <td bgcolor="#039acc" colspan="" rowspan=""
  2621. valign="top" align="left">
  2622. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2623. URL:
  2624. </font>
  2625. </td>
  2626. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2627. valign="top" align="left">
  2628. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2629. <a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a>
  2630. </font>
  2631. </td>
  2632. </tr>
  2633. <tr>
  2634. <td bgcolor="#039acc" colspan="" rowspan=""
  2635. valign="top" align="left">
  2636. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2637. Contact:
  2638. </font>
  2639. </td>
  2640. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2641. valign="top" align="left">
  2642. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2643. <a href="mailto:support@intellij.com">support@intellij.com</a>
  2644. </font>
  2645. </td>
  2646. </tr>
  2647. <tr>
  2648. <td bgcolor="#039acc" colspan="" rowspan=""
  2649. valign="top" align="left">
  2650. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2651. License:
  2652. </font>
  2653. </td>
  2654. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2655. valign="top" align="left">
  2656. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2657. Commercial
  2658. </font>
  2659. </td>
  2660. </tr>
  2661. </table>
  2662. </blockquote>
  2663. </td></tr>
  2664. </table>
  2665. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2666. <tr><td bgcolor="#828DA6">
  2667. <font color="#ffffff" face="arial,helvetica,sanserif">
  2668. <a name="JDE(E) 2.2.8"><strong>JDE(E) 2.2.8</strong></a>
  2669. </font>
  2670. </td></tr>
  2671. <tr><td>
  2672. <blockquote>
  2673. <p>The Java Development Environment for Emacs (JDEE) supports
  2674. Apache Ant as one of three built-in ways to build your
  2675. applications.</p>
  2676. <table>
  2677. <tr>
  2678. <td bgcolor="#039acc" colspan="" rowspan=""
  2679. valign="top" align="left">
  2680. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2681. Compatibility:
  2682. </font>
  2683. </td>
  2684. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2685. valign="top" align="left">
  2686. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2687. Ant 1.2 and later
  2688. </font>
  2689. </td>
  2690. </tr>
  2691. <tr>
  2692. <td bgcolor="#039acc" colspan="" rowspan=""
  2693. valign="top" align="left">
  2694. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2695. URL:
  2696. </font>
  2697. </td>
  2698. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2699. valign="top" align="left">
  2700. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2701. <a href="http://jde.sunsite.dk/">http://jde.sunsite.dk/</a>
  2702. </font>
  2703. </td>
  2704. </tr>
  2705. <tr>
  2706. <td bgcolor="#039acc" colspan="" rowspan=""
  2707. valign="top" align="left">
  2708. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2709. Contact:
  2710. </font>
  2711. </td>
  2712. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2713. valign="top" align="left">
  2714. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2715. <a href="mailto:jde-subscribe@sunsite.auc.dk">JDEE Mailing list.</a>
  2716. </font>
  2717. </td>
  2718. </tr>
  2719. <tr>
  2720. <td bgcolor="#039acc" colspan="" rowspan=""
  2721. valign="top" align="left">
  2722. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2723. License:
  2724. </font>
  2725. </td>
  2726. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2727. valign="top" align="left">
  2728. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2729. GNU General Public License
  2730. </font>
  2731. </td>
  2732. </tr>
  2733. </table>
  2734. </blockquote>
  2735. </td></tr>
  2736. </table>
  2737. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2738. <tr><td bgcolor="#828DA6">
  2739. <font color="#ffffff" face="arial,helvetica,sanserif">
  2740. <a name="NetBeans / Forte for Java"><strong>NetBeans / Forte for Java</strong></a>
  2741. </font>
  2742. </td></tr>
  2743. <tr><td>
  2744. <blockquote>
  2745. <p>A module that integrates Ant into the NetBeans or Forte for Java IDEs.</p>
  2746. <table>
  2747. <tr>
  2748. <td bgcolor="#039acc" colspan="" rowspan=""
  2749. valign="top" align="left">
  2750. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2751. Compatibility:
  2752. </font>
  2753. </td>
  2754. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2755. valign="top" align="left">
  2756. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2757. bundles Ant 1.4.1
  2758. </font>
  2759. </td>
  2760. </tr>
  2761. <tr>
  2762. <td bgcolor="#039acc" colspan="" rowspan=""
  2763. valign="top" align="left">
  2764. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2765. URL:
  2766. </font>
  2767. </td>
  2768. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2769. valign="top" align="left">
  2770. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2771. <a href="http://ant.netbeans.org/">http://ant.netbeans.org/</a>
  2772. </font>
  2773. </td>
  2774. </tr>
  2775. <tr>
  2776. <td bgcolor="#039acc" colspan="" rowspan=""
  2777. valign="top" align="left">
  2778. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2779. Contact:
  2780. </font>
  2781. </td>
  2782. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2783. valign="top" align="left">
  2784. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2785. <a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a>
  2786. </font>
  2787. </td>
  2788. </tr>
  2789. <tr>
  2790. <td bgcolor="#039acc" colspan="" rowspan=""
  2791. valign="top" align="left">
  2792. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2793. License:
  2794. </font>
  2795. </td>
  2796. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2797. valign="top" align="left">
  2798. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2799. Sun Public License
  2800. </font>
  2801. </td>
  2802. </tr>
  2803. </table>
  2804. </blockquote>
  2805. </td></tr>
  2806. </table>
  2807. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2808. <tr><td bgcolor="#828DA6">
  2809. <font color="#ffffff" face="arial,helvetica,sanserif">
  2810. <a name="HP RadPak"><strong>HP RadPak</strong></a>
  2811. </font>
  2812. </td></tr>
  2813. <tr><td>
  2814. <blockquote>
  2815. <p>
  2816. RadPak comes with the (free) HP Bluestone HPAS J2EE server, and is primarily
  2817. a GUI tool for packaging and deploying java web and EJB applications
  2818. as WAR and EAR files. The tool is ant based, and can be used with
  2819. as a GUI for general ant development, providing form based entry
  2820. of task attributes, and an animated display of task
  2821. execution.
  2822. </p>
  2823. <table>
  2824. <tr>
  2825. <td bgcolor="#039acc" colspan="" rowspan=""
  2826. valign="top" align="left">
  2827. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2828. Compatibility:
  2829. </font>
  2830. </td>
  2831. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2832. valign="top" align="left">
  2833. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2834. bundles Ant 1.3 and docs; adds a jar of extra tasks
  2835. to any existing ant installation under ANT_HOME
  2836. </font>
  2837. </td>
  2838. </tr>
  2839. <tr>
  2840. <td bgcolor="#039acc" colspan="" rowspan=""
  2841. valign="top" align="left">
  2842. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2843. URL:
  2844. </font>
  2845. </td>
  2846. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2847. valign="top" align="left">
  2848. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2849. <a href="http://www.bluestone.com/products/hp-as/">http://www.bluestone.com/products/hp-as/</a>
  2850. </font>
  2851. </td>
  2852. </tr>
  2853. <tr>
  2854. <td bgcolor="#039acc" colspan="" rowspan=""
  2855. valign="top" align="left">
  2856. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2857. License:
  2858. </font>
  2859. </td>
  2860. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2861. valign="top" align="left">
  2862. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2863. Proprietary but free to download
  2864. </font>
  2865. </td>
  2866. </tr>
  2867. </table>
  2868. </blockquote>
  2869. </td></tr>
  2870. </table>
  2871. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  2872. <tr><td bgcolor="#828DA6">
  2873. <font color="#ffffff" face="arial,helvetica,sanserif">
  2874. <a name="WebSphere Studio Application Developer"><strong>WebSphere Studio Application Developer</strong></a>
  2875. </font>
  2876. </td></tr>
  2877. <tr><td>
  2878. <blockquote>
  2879. <p>WSAD features Ant integrate by virtue of being built on the Eclipse tools platform.</p>
  2880. <table>
  2881. <tr>
  2882. <td bgcolor="#039acc" colspan="" rowspan=""
  2883. valign="top" align="left">
  2884. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2885. Compatibility:
  2886. </font>
  2887. </td>
  2888. <td bgcolor="#a0ddf0" colspan="" rowspan=""
  2889. valign="top" align="left">
  2890. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2891. bundles Ant 1.4.1
  2892. </font>
  2893. </td>
  2894. </tr>
  2895. <tr>
  2896. <td bgcolor="#039acc" colspan="" rowspan=""
  2897. valign="top" align="left">
  2898. <font color="#000000" size="-1" face="arial,helvetica,sanserif">
  2899. Article:
  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. <a href="http://www7b.software.ibm.com/wsdd/library/techarticles/0203_searle/searle1.html">Ant Integration Part1</a>
  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. License:
  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. Commercial
  2920. </font>
  2921. </td>
  2922. </tr>
  2923. </table>
  2924. </blockquote>
  2925. </td></tr>
  2926. </table>
  2927. </blockquote>
  2928. </td></tr>
  2929. </table>
  2930. </td>
  2931. </tr>
  2932. <!-- FOOTER -->
  2933. <tr><td colspan="2">
  2934. <hr noshade="" size="1"/>
  2935. </td></tr>
  2936. <tr><td colspan="2">
  2937. <div align="center"><font color="#525D76" size="-1"><em>
  2938. Copyright &#169; 2000-2002, Apache Software Foundation
  2939. </em></font></div>
  2940. </td></tr>
  2941. </table>
  2942. </body>
  2943. </html>
  2944. <!-- end the processing -->