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.xml 125 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <document>
  17. <properties>
  18. <author email="bodewig@apache.org">Stefan Bodewig</author>
  19. <title>External Tools and Tasks</title>
  20. </properties>
  21. <body>
  22. <section name="External Tools and Tasks">
  23. <p>This page lists external resources for Apache Ant: <a
  24. href="#Tasks">Tasks</a>, <a
  25. href="#Compiler%20Implementations">Compiler Implementations</a>,
  26. <a href="#IDE%20and%20Editor%20Integration">IDE integration
  27. tools</a>, <a href="#Source%20Control%20ystems">Source Control
  28. Systems</a>, loggers, you name it. If you've written
  29. something that should be included, please post all relevant
  30. information to one of the mailing lists. For details, see the
  31. <a href="faq.html#adding-external-tasks">FAQ</a>.</p>
  32. <p>Nothing listed here is directly supported by the Ant
  33. developers (therefore '<i>external</i> tools and tasks'),
  34. if you encounter any problems with them, please use
  35. the contact information.</p>
  36. </section>
  37. <section name="Tasks">
  38. <subsection name="AJC">
  39. <p><a href="http://www.eclipse.org/aspectj/">AspectJ</a> is an
  40. aspect-oriented extension to Java. This task compiles a
  41. source tree using the AspectJ compiler -- AJC.</p>
  42. <table class="externals">
  43. <tr>
  44. <th>Compatibility:</th>
  45. <td>Ant 1.3</td>
  46. </tr>
  47. <tr>
  48. <th>URL:</th>
  49. <td><a href="http://www.eclipse.org/aspectj/">http://www.eclipse.org/aspectj/</a></td>
  50. </tr>
  51. <tr>
  52. <th>Contact:</th>
  53. <td><a href="http://www.eclipse.org/aspectj/">project mailing lists</a></td>
  54. </tr>
  55. <tr>
  56. <th>License:</th>
  57. <td>Apache Software License</td>
  58. </tr>
  59. </table>
  60. </subsection>
  61. <subsection name="Anakia">
  62. <p>Actually, Anakia is more than just an Ant task, it is a an
  63. XML transformation tool based on JDOM, Velocity and Ant.</p>
  64. <table class="externals">
  65. <tr>
  66. <th>Compatibility:</th>
  67. <td>Ant 1.2 and later</td>
  68. </tr>
  69. <tr>
  70. <th>URL:</th>
  71. <td><a href="http://jakarta.apache.org/velocity/anakia.html">http://jakarta.apache.org/velocity/anakia.html</a></td>
  72. </tr>
  73. <tr>
  74. <th>Contact:</th>
  75. <td><a href="http://jakarta.apache.org/site/mail2.html">Velocity mailing lists</a></td>
  76. </tr>
  77. <tr>
  78. <th>License:</th>
  79. <td>Apache Software License</td>
  80. </tr>
  81. </table>
  82. </subsection>
  83. <subsection name="Andariel">
  84. <p>Andariel is a set of tasks designed to help the generation of HTML
  85. (and other markup languages) pages from Ant. Includes a XPath processor,
  86. an image information retriever, and others.</p>
  87. <table class="externals">
  88. <tr>
  89. <th>Compatibility:</th>
  90. <td>Ant 1.5.4 and newer</td>
  91. </tr>
  92. <tr>
  93. <th>URL:</th>
  94. <td><a href="http://andariel.uworks.net/">http://andariel.uworks.net/</a></td>
  95. </tr>
  96. <tr>
  97. <th>Contact:</th>
  98. <td>josep DOT rio AT uworks DOT net</td>
  99. </tr>
  100. <tr>
  101. <th>License:</th>
  102. <td>Apache Software License 1.1</td>
  103. </tr>
  104. </table>
  105. </subsection>
  106. <subsection name="Ant2Svg">
  107. <p>Ant2Svg creates a graphical representation of an Ant build file.
  108. The graphical representation is in the form of a Scalable Vector
  109. Graphics (SVG) file that can be displayed in a web browser. This
  110. simplified SVG depiction helps the developer understand build file
  111. structure and identify extraneous or missing dependencies.</p>
  112. <table class="externals">
  113. <tr>
  114. <th>Compatibility:</th>
  115. <td>Ant 1.6.1 and higher</td>
  116. </tr>
  117. <tr>
  118. <th>URL:</th>
  119. <td><a href="http://www.spiritedsw.com/ant2svg/">http://www.spiritedsw.com/ant2svg/</a></td>
  120. </tr>
  121. <tr>
  122. <th>Contact:</th>
  123. <td>loney &lt;at&gt; spiritedsw &lt;dot&gt; com</td>
  124. </tr>
  125. <tr>
  126. <th>License:</th>
  127. <td>The Apache Software License 2.0</td>
  128. </tr>
  129. </table>
  130. </subsection>
  131. <subsection name="ant4eclipse">
  132. <p>ant4eclipse provides a set of Ant tasks to make several
  133. configurations from the Eclipse IDE available in Ant
  134. buildscripts. The tasks are aimed to avoid redundancy between
  135. Eclipse and Ant configurations in order to build small but
  136. powerful build systems for the continuous integration
  137. process</p>
  138. <table class="externals">
  139. <tr>
  140. <th>Compatibility:</th>
  141. <td>Ant 1.6.1 and higher</td>
  142. </tr>
  143. <tr>
  144. <th>URL:</th>
  145. <td><a href="http://ant4eclipse.sf.net">http://ant4eclipse.sf.net</a></td>
  146. </tr>
  147. <tr>
  148. <th>Contact:</th>
  149. <td><a href="http://sourceforge.net/mail/?group_id=137377">
  150. ant4eclipse user mailing list</a>
  151. </td>
  152. </tr>
  153. <tr>
  154. <th>License:</th>
  155. <td>Sun Public License</td>
  156. </tr>
  157. </table>
  158. </subsection>
  159. <subsection name="Antcount">
  160. <p>Antcount is a set of filters that can be used to gather statistics
  161. from files or resources. It is mainly used for log files analysis.
  162. It allows to:<ul>
  163. <li>count inputs (lines, strings)</li>
  164. <li>count occurrences of each input</li>
  165. <li>calculate average, max and min values of floats in input</li>
  166. </ul>
  167. Antcount also includes some useful filters to:<ul>
  168. <li>stop filtering: read everything but write nothing</li>
  169. <li>echo input to the console or to a file. This allows users to create
  170. several files at once</li>
  171. <li>split the stream in two for parallel processing</li>
  172. </ul>
  173. </p>
  174. <table class="externals">
  175. <tr>
  176. <th>Compatibility:</th>
  177. <td>Ant 1.6.2 and higher</td>
  178. </tr>
  179. <tr>
  180. <th>URL:</th>
  181. <td><a href="http://antcount.sourceforge.net/">http://antcount.sourceforge.net/</a></td>
  182. </tr>
  183. <tr>
  184. <th>Contact:</th>
  185. <td><a href="http://antcount.sourceforge.net/contacts.html">Patrick Martin</a></td>
  186. </tr>
  187. <tr>
  188. <th>License:</th>
  189. <td>LGPL</td>
  190. </tr>
  191. </table>
  192. </subsection>
  193. <subsection name="AntDoc">
  194. <p>AntDoc is a tool that generates HTML documentation from Ant
  195. buildfiles; the generated HTML is inspired from what javadoc
  196. yields. AntDocGUI offers a simple Ant target launcher named
  197. AntDoc GUI. Ant targets may be launched from the generated
  198. AntDoc HTML pages. Integration to various IDEs is in
  199. progress.</p>
  200. <p>AntDoc can be run via an Ant task, AntDoc GUI can be run
  201. via an Ant task, or via a JVM launch.</p>
  202. <table class="externals">
  203. <tr>
  204. <th>Compatibility:</th>
  205. <td>Ant 1.4.1 and higher</td>
  206. </tr>
  207. <tr>
  208. <th>URL:</th>
  209. <td><a href="http://antdoc.free.fr/">http://antdoc.free.fr/</a></td>
  210. </tr>
  211. <tr>
  212. <th>Contact:</th>
  213. <td>Edouard Mercier</td>
  214. </tr>
  215. <tr>
  216. <th>License:</th>
  217. <td>The Apache Software License</td>
  218. </tr>
  219. </table>
  220. </subsection>
  221. <subsection name="AntDoclet">
  222. <p>AntDoclet is a tool to automatically generate documentation out of
  223. your Ant Tasks' source code.</p>
  224. <p>It is implemented as a Javadoc doclet, and generates reference
  225. documentation and other deliverables from the source code of your
  226. custom Ant Tasks/Types.</p>
  227. <table class="externals">
  228. <tr>
  229. <th>Compatibility:</th>
  230. <td>Ant 1.6+ (not tested on earlier versions)</td>
  231. </tr>
  232. <tr>
  233. <th>URL:</th>
  234. <td><a href="http://antdoclet.neuroning.com/">http://antdoclet.neuroning.com/</a></td>
  235. </tr>
  236. <tr>
  237. <th>Contact:</th>
  238. <td><a href="http://neuroning.com/">Fernando Dobladez</a></td>
  239. </tr>
  240. <tr>
  241. <th>License:</th>
  242. <td>GPL</td>
  243. </tr>
  244. </table>
  245. </subsection>
  246. <subsection name="Anteater">
  247. <p>Anteater is a set of Ant tasks for the functional testing of websites
  248. and web services (functional testing being; hit a URL and ensure the
  249. response meets certain criteria). Can test HTTP params, response
  250. codes, XPath, regexp and Relax NG expressions. Includes HTML reporting
  251. (based on junitreport) and a hierarchical grouping system for quickly
  252. configuring large test scripts.
  253. </p>
  254. <table class="externals">
  255. <tr>
  256. <th>Compatibility:</th>
  257. <td>Ant 1.5 and later</td>
  258. </tr>
  259. <tr>
  260. <th>URL:</th>
  261. <td><a href="http://aft.sourceforge.net/">http://aft.sourceforge.net/</a></td>
  262. </tr>
  263. <tr>
  264. <th>Contact:</th>
  265. <td><a href="http://lists.sourceforge.net/lists/listinfo/aft-devel">developer
  266. mailing list</a></td>
  267. </tr>
  268. <tr>
  269. <th>License:</th>
  270. <td>Apache Software License</td>
  271. </tr>
  272. </table>
  273. </subsection>
  274. <subsection name="AntForm">
  275. <p>Provides a java/swing form-based input scheme for
  276. configuring ant properties and launching ant targets.</p>
  277. <table class="externals">
  278. <tr>
  279. <th>Compatibility:</th>
  280. <td>Ant 1.6.2.</td>
  281. </tr>
  282. <tr>
  283. <th>URL:</th>
  284. <td><a href="http://antforms.sourceforge.net/">http://antforms.sourceforge.net/</a></td>
  285. </tr>
  286. <tr>
  287. <th>Contact:</th>
  288. <td><a href="mailto:rene_ghosh@yahoo.com">Ren&#233; Ghosh</a></td>
  289. </tr>
  290. <tr>
  291. <th>License:</th>
  292. <td>GNU General Public License</td>
  293. </tr>
  294. </table>
  295. </subsection>
  296. <subsection name="Antmerge">
  297. <p>Provides simple inheritance between ant files</p>
  298. <table class="externals">
  299. <tr>
  300. <th>Compatibility:</th>
  301. <td>Tested with 1.5. Should work with all versions.</td>
  302. </tr>
  303. <tr>
  304. <th>URL:</th>
  305. <td><a href="http://www.russet.org.uk/antmerge.html">http://www.russet.org.uk/antmerge.html</a></td>
  306. </tr>
  307. <tr>
  308. <th>Contact:</th>
  309. <td><a href="mailto:antmerge@russet.org.uk">Phillip Lord</a></td>
  310. </tr>
  311. <tr>
  312. <th>License:</th>
  313. <td>GNU Lesser General Public License</td>
  314. </tr>
  315. </table>
  316. </subsection>
  317. <subsection name="AntPrettyBuild">
  318. <p>
  319. Ant Pretty Build is a tool to easily show and run Ant buildfiles directly from
  320. within a browser window. It consists of a single XSL file that will generate,
  321. on the fly, in the browser, from the .xml buildfile, a pretty interface showing
  322. project name, description, properties and targets, etc. sorted or unsorted,
  323. allowing to load/modify/add properties, run the whole project, or run selected
  324. set of targets in a specific order, with the ability to modify logger/logfile,
  325. mode and add more libs or command line arguments.
  326. </p>
  327. <table class="externals">
  328. <tr>
  329. <th>Compatibility:</th>
  330. <td>All Ant versions</td>
  331. </tr>
  332. <tr>
  333. <th>URL:</th>
  334. <td><a href="http://antprettybuild.sourceforge.net/">Ant Pretty Build Homepage</a></td>
  335. </tr>
  336. <tr>
  337. <th>Contact:</th>
  338. <td><a href="http://antprettybuild.sourceforge.net">Charbel BITAR</a></td>
  339. </tr>
  340. <tr>
  341. <th>License:</th>
  342. <td>Apache License V2.0</td>
  343. </tr>
  344. </table>
  345. </subsection>
  346. <subsection name="AntSpaces">
  347. <p>AntSpaces provides Ant integration with JavaSpaces. This
  348. allows you to coordinate Ant tasks via JavaSpaces, pull out
  349. work units from a JavaSpace for distributed Ant tasks to work
  350. on, and so forth.</p>
  351. <table class="externals">
  352. <tr>
  353. <th>Compatibility:</th>
  354. <td>Ant 1.5 and later</td>
  355. </tr>
  356. <tr>
  357. <th>URL:</th>
  358. <td>
  359. <a href="http://www.oopsconsultancy.com/software/antspaces/">http://www.oopsconsultancy.com/software/antspaces/</a>
  360. </td>
  361. </tr>
  362. <tr>
  363. <th>Contact:</th>
  364. <td>antspaces at oopsconsultancy.com</td>
  365. </tr>
  366. <tr>
  367. <th>License:</th>
  368. <td>Apache Software License</td>
  369. </tr>
  370. </table>
  371. </subsection>
  372. <subsection name="AntTimerTask">
  373. <p><a href="http://www.jeckle.de/freeStuff/AntTimerTask/index.html">Timer</a>
  374. is task for measuring the time elapsed to complete other
  375. tasks</p>
  376. <table class="externals">
  377. <tr>
  378. <th>Compatibility:</th>
  379. <td>Ant 1.6</td>
  380. </tr>
  381. <tr>
  382. <th>URL:</th>
  383. <td>
  384. <a href="http://www.jeckle.de/freeStuff/AntTimerTask/index.html">http://www.jeckle.de/freeStuff/AntTimerTask/index.html</a>
  385. </td>
  386. </tr>
  387. <tr>
  388. <th>Contact:</th>
  389. <td><a href="mailto:mario@jeckle.de">mario@jeckle.de</a></td>
  390. </tr>
  391. <tr>
  392. <th>License:</th>
  393. <td>Lesser GNU Public License</td>
  394. </tr>
  395. </table>
  396. </subsection>
  397. <subsection name="Ant Web Start Task">
  398. <p>Ant Web Start Task is an Ant task allowing developers to
  399. package a desktop application as a WAR (Web Application
  400. Archive) to be distributed over the net via Java Web Start</p>
  401. <table class="externals">
  402. <tr>
  403. <th>Compatibility:</th>
  404. <td>Ant 1.5 and above</td>
  405. </tr>
  406. <tr>
  407. <th>URL:</th>
  408. <td><a href="http://ant-jnlp-war.sourceforge.net/">http://ant-jnlp-war.sourceforge.net/</a></td>
  409. </tr>
  410. <tr>
  411. <th>License:</th>
  412. <td>Apache Software License 2.0</td>
  413. </tr>
  414. </table>
  415. </subsection>
  416. <subsection name="AntXtras">
  417. <p>A collection of powerful Ant extensions components
  418. organized into five categories: fixture-control,
  419. execution-rules, flow-control, feedback, and helpers.</p>
  420. <table class="externals">
  421. <tr>
  422. <th>Compatibility:</th>
  423. <td>Ant 1.6.5</td>
  424. </tr>
  425. <tr>
  426. <th>URL:</th>
  427. <td><a href="http://antxtras.sourceforge.net/">AntXtras Home</a></td>
  428. </tr>
  429. <tr>
  430. <th>Contact:</th>
  431. <td><a href="http://antxtras.sourceforge.net">SSMC</a></td>
  432. </tr>
  433. <tr>
  434. <th>License:</th>
  435. <td>GNU Lesser General Public License (LGPL 2.1)</td>
  436. </tr>
  437. </table>
  438. </subsection>
  439. <subsection name="Build Number">
  440. <p> Build Number is a tool to track software artifacts such as files and automatically assign
  441. proper version/build numbers to them. It ensures that two different artifacts will have different
  442. version/build numbers, but identical artifacts/builds will be assigned the same number. It doesn't
  443. take version management away from you and doesn't replace your build process, but rather plugs
  444. into the process and introduces version/build number governance by defining who is in charge of
  445. which part of version number. With Build Number you are still in charge of the head of the version
  446. number. E.g. you may decide to have 4 numbers in your version (major, minor, interface, implementation)
  447. and you want to manage the two first numbers (major and minor). Build Number will take care of the
  448. tedium of managing the last two numbers (interface and implementation). </p>
  449. <table class="externals">
  450. <tr>
  451. <th>Compatibility:</th>
  452. <td>Tested with Ant 1.5.4 and 1.6.5</td>
  453. </tr>
  454. <tr>
  455. <th>URL:</th>
  456. <td><a href="http://www.hammurapi.biz/products/buildnumber">http://www.hammurapi.biz/products/buildnumber</a></td>
  457. </tr>
  458. <tr>
  459. <th>Contact:</th>
  460. <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/contact.html">Project Contact Page</a></td>
  461. </tr>
  462. <tr>
  463. <th>License:</th>
  464. <td>Commercial</td>
  465. </tr>
  466. </table>
  467. </subsection>
  468. <subsection name="Checkstyle">
  469. <p>Checkstyle is a development tool to help programmers write
  470. Java code that adheres to a coding standard. Its purpose is to
  471. automate the process of checking Java code, and to spare
  472. humans of this boring (but important) task.</p>
  473. <p>Checkstyle can be run via an Ant task or a command line
  474. utility.</p>
  475. <table class="externals">
  476. <tr>
  477. <th>Compatibility:</th>
  478. <td>Ant 1.4.1 and later</td>
  479. </tr>
  480. <tr>
  481. <th>URL:</th>
  482. <td><a href="http://checkstyle.sourceforge.net/">http://checkstyle.sourceforge.net/</a></td>
  483. </tr>
  484. <tr>
  485. <th>Contact:</th>
  486. <td><a href="mailto:checkstyle@puppycrawl.com">Oliver Burn</a></td>
  487. </tr>
  488. <tr>
  489. <th>License:</th>
  490. <td>Starting with release 2.0 the license is the GNU
  491. Lesser General Public License. Prior releases were under
  492. the GNU General Public License.</td>
  493. </tr>
  494. </table>
  495. </subsection>
  496. <subsection name="ChownTask">
  497. <p>ChownTask is an Ant task to change ownership of files on
  498. Unix.</p>
  499. <table class="externals">
  500. <tr>
  501. <th>Compatibility:</th>
  502. <td>Ant 1.3 and up</td>
  503. </tr>
  504. <tr>
  505. <th>URL:</th>
  506. <td>
  507. <a href="http://sourceforge.net/projects/chowntask/">http://sourceforge.net/projects/chowntask/</a>
  508. </td>
  509. </tr>
  510. <tr>
  511. <th>Contact:</th>
  512. <td><a href="mailto:chowntask-users@lists.sourceforge.net">Wilfred Springer</a>
  513. </td>
  514. </tr>
  515. <tr>
  516. <th>License:</th>
  517. <td>GNU General Public License</td>
  518. </tr>
  519. </table>
  520. </subsection>
  521. <subsection name="CleanImports">
  522. <p>Removes unneeded imports. Formats your import
  523. sections. Flags ambiguous imports.</p>
  524. <table class="externals">
  525. <tr>
  526. <th>Compatibility:</th>
  527. <td>Ant 1.3 and up</td>
  528. </tr>
  529. <tr>
  530. <th>URL:</th>
  531. <td><a href="http://www.cleanimports.tombrus.nl">http://www.cleanimports.tombrus.nl</a></td>
  532. </tr>
  533. <tr>
  534. <th>Contact:</th>
  535. <td><a href="mailto:cleanimports@tombrus.nl">Tom Brus</a></td>
  536. </tr>
  537. <tr>
  538. <th>License:</th>
  539. <td>Apache Software License</td>
  540. </tr>
  541. </table>
  542. </subsection>
  543. <subsection name="Clover">
  544. <p>Clover is an Ant-based Code Coverage tool. It can be used
  545. seamlessly with Ant-based projects. It provides method,
  546. statement, and branch coverage analysis, and has rich
  547. reporting in XML, HTML or via a Swing GUI.</p>
  548. <table class="externals">
  549. <tr>
  550. <th>Compatibility:</th>
  551. <td>Ant 1.4.1 or greater</td>
  552. </tr>
  553. <tr>
  554. <th>URL:</th>
  555. <td><a href="http://www.cenqua.com/clover/">http://www.cenqua.com/clover/</a></td>
  556. </tr>
  557. <tr>
  558. <th>Contact:</th>
  559. <td><a href="mailto:clover-support@cenqua.com">clover-support@cenqua.com</a></td>
  560. </tr>
  561. <tr>
  562. <th>License:</th>
  563. <td>Commercial, free licenses available for open source
  564. projects.</td>
  565. </tr>
  566. </table>
  567. </subsection>
  568. <subsection name="CMSDeploy">
  569. <p><a href="http://cmsdeploy.sourceforge.net">CMSDeploy</a> is
  570. an Apache Ant Task to submit files and templates to Vignette
  571. CMS.</p>
  572. <table class="externals">
  573. <tr>
  574. <th>Compatibility:</th>
  575. <td>Ant 1.5.1 and later</td>
  576. </tr>
  577. <tr>
  578. <th>URL:</th>
  579. <td><a href="http://cmsdeploy.sourceforge.net">http://cmsdeploy.sourceforge.net</a></td>
  580. </tr>
  581. <tr>
  582. <th>Contact:</th>
  583. <td><a href="mailto:masogato@users.sourceforge.net">masogato@users.sourceforge.net</a></td>
  584. </tr>
  585. <tr>
  586. <th>License:</th>
  587. <td>GNU Lesser General Public License</td>
  588. </tr>
  589. </table>
  590. </subsection>
  591. <subsection name="Cocoon Task">
  592. <p>This task allows the generation of static web pages and
  593. sites using Apache Cocoon in off-line mode.</p>
  594. <p>It allows the configuration information for Cocoon to be
  595. included within the Ant build file, and is thus
  596. able to take advantage of Ant properties.</p>
  597. <p>The task shares its code with the Cocoon Command Line, which
  598. means that this task will instantly take
  599. advantage of any new functionality added there.</p>
  600. <table class="externals">
  601. <tr>
  602. <th>Compatibility:</th>
  603. <td>Ant 1.5.3 and above</td>
  604. </tr>
  605. <tr>
  606. <th>URL:</th>
  607. <td><a href="http://cocoon.apache.org/2.1/">http://cocoon.apache.org/2.1/</a></td>
  608. </tr>
  609. <tr>
  610. <th>Documentation:</th>
  611. <td><a href="http://cocoon.apache.org/2.1/userdocs/offiline/ant.html">http://cocoon.apache.org/2.1/userdocs/offline/ant.html</a></td>
  612. </tr>
  613. <tr>
  614. <th>Contact:</th>
  615. <td><a href="mailto:users.at.cocoon.apache.org">users at cocoon.apache.org</a></td>
  616. </tr>
  617. <tr>
  618. <th>License:</th>
  619. <td>Apache Software License</td>
  620. </tr>
  621. </table>
  622. </subsection>
  623. <subsection name="Configure">
  624. <p>Recursive build support (call ant on every package level,
  625. and only build files in that package or in that package and
  626. everything below) with seperation of source and output.</p>
  627. <p>The task generates build files in any subdirectory (except
  628. for CVS-directories) for you. Only place one build.xml file in
  629. the top and call target &apos;setup&apos; or
  630. &apos;rescan&apos;.</p>
  631. <table class="externals">
  632. <tr>
  633. <th>Compatibility:</th>
  634. <td>Ant 1.2 and 1.3</td>
  635. </tr>
  636. <tr>
  637. <th>URL:</th>
  638. <td><a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a></td>
  639. </tr>
  640. <tr>
  641. <th>Contact:</th>
  642. <td><a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a></td>
  643. </tr>
  644. <tr>
  645. <th>License:</th>
  646. <td>License derived from Apache Software License</td>
  647. </tr>
  648. </table>
  649. </subsection>
  650. <subsection name="CVSGrab">
  651. <p>A little CVS client that can be useful when people are
  652. behind corporate firewall that blocks any cvs
  653. communications. It uses the ViewCVS web interface to access
  654. the CVS repository via standard http, and downloads all the
  655. files present in it.</p>
  656. <p>It works from the command line or as an Ant task.</p>
  657. <table class="externals">
  658. <tr>
  659. <th>Compatibility:</th>
  660. <td>Ant 1.3 or higher</td>
  661. </tr>
  662. <tr>
  663. <th>URL:</th>
  664. <td><a href="http://cvsgrab.sourceforge.net/">http://cvsgrab.sourceforge.net/</a></td>
  665. </tr>
  666. <tr>
  667. <th>Contact:</th>
  668. <td><a href="mailto:cvsgrab-users@lists.sourceforge.net">CVSGrab
  669. user mailing list</a></td>
  670. </tr>
  671. <tr>
  672. <th>License:</th>
  673. <td>LGPL</td>
  674. </tr>
  675. </table>
  676. </subsection>
  677. <subsection name="Dependencies">
  678. <p>The dependencies task manages a set of external dependencies which
  679. may be downloaded from a remote repository,
  680. such as ibiblio.org. Uses a local cache to avoid repeated
  681. downloads.</p>
  682. <table class="externals">
  683. <tr>
  684. <th>Compatibility:</th>
  685. <td>Tested with 1.5.1, should work with 1.4+.</td>
  686. </tr>
  687. <tr>
  688. <th>URL:</th>
  689. <td><a href="http://www.httpunit.org/doc/dependencies.html">http://www.httpunit.org/doc/dependencies.html</a></td>
  690. </tr>
  691. <tr>
  692. <th>Contact:</th>
  693. <td><a href="mailto:russgold@httpunit.org">Russell Gold</a></td>
  694. </tr>
  695. <tr>
  696. <th>License:</th>
  697. <td>MIT License</td>
  698. </tr>
  699. </table>
  700. </subsection>
  701. <subsection name="Dependency Finder">
  702. <p>Dependency Finder extracts dependencies and OO metrics from
  703. Java class files produced by most Java compilers. It can compute
  704. API differences between versions; no sources needed. It includes
  705. Ant tasks, web, Swing, and command-line interfaces, with XSL
  706. stylesheets for formatting output.</p>
  707. <p>You can use it to extract dependencies between packages, classes,
  708. or even methods, or any combination thereof. You can use Perl
  709. regular expressions to filter the information and pinpoint only
  710. what you need. There is even a Web Application version (WAR file)
  711. so a whole group of developers can share a common view.</p>
  712. <table class="externals">
  713. <tr>
  714. <th>Compatibility:</th>
  715. <td>Tested with 1.5.3, should work with 1.4+.</td>
  716. </tr>
  717. <tr>
  718. <th>URL:</th>
  719. <td><a href="http://depfind.sourceforge.net/">http://depfind.sourceforge.net/</a></td>
  720. </tr>
  721. <tr>
  722. <th>Contact:</th>
  723. <td><a href="mailto:jeantessier@users.sourceforge.net">Jean Tessier</a></td>
  724. </tr>
  725. <tr>
  726. <th>License:</th>
  727. <td>BSD-like License</td>
  728. </tr>
  729. </table>
  730. </subsection>
  731. <subsection name="Doxygen task">
  732. <p>There are two Ant tasks for running the Doxygen
  733. documentation system.</p>
  734. <table class="externals">
  735. <tr>
  736. <th>Compatibility:</th>
  737. <td>Ant 1.1 and later</td>
  738. </tr>
  739. <tr>
  740. <th>URL:</th>
  741. <td><a href="http://www.bgw.org/projects/java/ant/">http://www.bgw.org/projects/java/ant/</a></td>
  742. </tr>
  743. <tr>
  744. <th>Contact:</th>
  745. <td><a href="mailto:mortis@voicenet.com">Kyle R. Burton</a></td>
  746. </tr>
  747. <tr>
  748. <th>License:</th>
  749. <td>Apache Software Foundation License</td>
  750. </tr>
  751. </table>
  752. <p>and</p>
  753. <table class="externals">
  754. <tr>
  755. <th>Compatibility:</th>
  756. <td>Ant 1.5 and later</td>
  757. </tr>
  758. <tr>
  759. <th>URL:</th>
  760. <td><a href="http://ant-doxygen.sourceforge.net/">http://ant-doxygen.sourceforge.net/</a></td>
  761. </tr>
  762. <tr>
  763. <th>Contact:</th>
  764. <td><a href="mailto:akkumar@users.sourceforge.net">Karthik A Kumar</a></td>
  765. </tr>
  766. <tr>
  767. <th>License:</th>
  768. <td>Apache Software Foundation License</td>
  769. </tr>
  770. </table>
  771. </subsection>
  772. <subsection name="DTDDoc">
  773. <p>DTDDoc is here to help you to document your DTD's efficiently. It is a
  774. straightforward extension of the javadoc concept to the DTD file format.</p>
  775. <table class="externals">
  776. <tr>
  777. <th>Compatibility:</th>
  778. <td>Ant 1.4 and later</td>
  779. </tr>
  780. <tr>
  781. <th>URL:</th>
  782. <td><a href="http://dtddoc.sourceforge.net/">http://dtddoc.sourceforge.net/</a></td>
  783. </tr>
  784. <tr>
  785. <th>Contact:</th>
  786. <td><a href="http://sourceforge.net/mail/?group_id=53704">Project Mailing List</a></td>
  787. </tr>
  788. <tr>
  789. <th>License:</th>
  790. <td>X11 (Open Source)</td>
  791. </tr>
  792. </table>
  793. </subsection>
  794. <subsection name="EMMA">
  795. <p>EMMA is an open-source toolkit for measuring and reporting
  796. Java code coverage. EMMA distinguishes itself from other tools
  797. by going after a unique feature combination: support large-scale
  798. enterprise software development while keeping individual developers
  799. work fast and iterative at the same time.</p>
  800. <table class="externals">
  801. <tr>
  802. <th>Compatibility:</th>
  803. <td>Ant 1.4 and later</td>
  804. </tr>
  805. <tr>
  806. <th>URL:</th>
  807. <td><a href="http://emma.sourceforge.net/">http://emma.sourceforge.net/</a></td>
  808. </tr>
  809. <tr>
  810. <th>Contact:</th>
  811. <td><a href="mailto:emma-users@lists.sourceforge.net">Mailinglist</a></td>
  812. </tr>
  813. <tr>
  814. <th>License:</th>
  815. <td>Common Public License 1.0</td>
  816. </tr>
  817. </table>
  818. </subsection>
  819. <subsection name="FMPP">
  820. <p>FMPP is a general-purpose text file preprocessor tool that
  821. uses FreeMarker templates. It is particularly designed for
  822. HTML preprocessor, for the generation of complete (static)
  823. homepages: directory structure that contains HTML-s, image
  824. files, etc. But of course it can be used to generate source
  825. code or whatever text files. FMPP is extendable with Java
  826. classes to pull data from any data sources (XML file,
  827. database, etc.) and embed the data into the generated
  828. files.</p>
  829. <table class="externals">
  830. <tr>
  831. <th>Compatibility:</th>
  832. <td>Ant 1.5.1</td>
  833. </tr>
  834. <tr>
  835. <th>URL:</th>
  836. <td><a href="http://fmpp.sourceforge.net/">http://fmpp.sourceforge.net/</a></td>
  837. </tr>
  838. <tr>
  839. <th>License:</th>
  840. <td>BSD License</td>
  841. </tr>
  842. </table>
  843. </subsection>
  844. <subsection name="GenJar">
  845. <p>Builds a JAR file based on class dependencies rather than simply the contents of a directory</p>
  846. <table class="externals">
  847. <tr>
  848. <th>Compatibility:</th>
  849. <td>Ant 1.4 alpha (built after 2001/08/04) and later</td>
  850. </tr>
  851. <tr>
  852. <th>URL:</th>
  853. <td><a href="http://genjar.sourceforge.net/">http://genjar.sourceforge.net/</a></td>
  854. </tr>
  855. <tr>
  856. <th>Contact:</th>
  857. <td><a href="mailto:jesse_dev@yahoo.com">Jesse Stockall</a></td>
  858. </tr>
  859. <tr>
  860. <th>License:</th>
  861. <td>Apache Software Foundation License</td>
  862. </tr>
  863. </table>
  864. </subsection>
  865. <subsection name="Grand">
  866. <p>Grand is a set of tools to create a visual representation of Ant target
  867. dependencies. It works by taking an Ant build file and creating a "dot" file. It
  868. differs from the existing tools by relying on the Ant API rather than XML parsing to
  869. get the dependencies. It includes many advanced features such as filtering or
  870. rendering depending on the target's nature. Also features a SWT based GUI.</p>
  871. <table class="externals">
  872. <tr>
  873. <th>Compatibility:</th>
  874. <td>Ant 1.6 and later</td>
  875. </tr>
  876. <tr>
  877. <th>URL:</th>
  878. <td><a href="http://www.ggtools.net/grand/">http://www.ggtools.net/grand/</a></td>
  879. </tr>
  880. <tr>
  881. <th>Contact:</th>
  882. <td>Christophe Labouisse</td>
  883. </tr>
  884. <tr>
  885. <th>License:</th>
  886. <td>BSD License</td>
  887. </tr>
  888. </table>
  889. </subsection>
  890. <subsection name="Greebo">
  891. <p>Greebo is an Ant-task for downloading dependency files
  892. (currently only jars) from a network to a specified directory,
  893. much like Maven. It supports multiple local and remote
  894. repositories with either flat or maven-like structures. It can
  895. read the dependency list from a Maven project file, a
  896. maven-like dependency file, or directly from the build.xml
  897. file.</p>
  898. <table class="externals">
  899. <tr>
  900. <th>Compatibility:</th>
  901. <td>Ant 1.5</td>
  902. </tr>
  903. <tr>
  904. <th>URL:</th>
  905. <td><a href="http://greebo.sourceforge.net/">http://greebo.sourceforge.net/</a></td>
  906. </tr>
  907. <tr>
  908. <th>Contact:</th>
  909. <td><a href="http://sourceforge.net/mail/?group_id=73733">project mailing lists</a></td>
  910. </tr>
  911. <tr>
  912. <th>License:</th>
  913. <td>Apache Software License</td>
  914. </tr>
  915. </table>
  916. </subsection>
  917. <subsection name="GroboUtils CodeCoverage">
  918. <p>The CodeCoverage sub-project of GroboUtils provides a 100%
  919. pure Java code coverage tool. It uses pre-execution class file
  920. recompilation, and generates XML files containing the coverage
  921. statistics. It does not require any advanced VM setup to generate
  922. coverage numbers.
  923. </p>
  924. <table class="externals">
  925. <tr>
  926. <th>Compatibility:</th>
  927. <td>Ant 1.5.1</td>
  928. </tr>
  929. <tr>
  930. <th>URL:</th>
  931. <td><a href="http://groboutils.sourceforge.net/codecoverage/">http://groboutils.sourceforge.net/codecoverage/</a></td>
  932. </tr>
  933. <tr>
  934. <th>Contact:</th>
  935. <td><a href="http://sourceforge.net/mail/?group_id=22594">project mailing lists</a></td>
  936. </tr>
  937. <tr>
  938. <th>License:</th>
  939. <td>MIT License</td>
  940. </tr>
  941. </table>
  942. </subsection>
  943. <subsection name="Hammurapi">
  944. <p>Java code review tool. Performs automated code
  945. review. Contains 111 inspectors which check different aspects
  946. of code quality including coding standards, EJB, threading,
  947. ...</p>
  948. <table class="externals">
  949. <tr>
  950. <th>Compatibility:</th>
  951. <td>Tested with Ant 1.5.x and 1.6.5</td>
  952. </tr>
  953. <tr>
  954. <th>URL:</th>
  955. <td><a href="http://www.hammurapi.biz/products/hammurapi">http://www.hammurapi.biz/products/hammurapi</a></td>
  956. </tr>
  957. <tr>
  958. <th>Contact:</th>
  959. <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/contact.html">Project Contact Page</a></td>
  960. </tr>
  961. <tr>
  962. <th>License:</th>
  963. <td>GNU General Public License (GPL)</td>
  964. </tr>
  965. </table>
  966. </subsection>
  967. <subsection name="HelpStudioAnt">
  968. <p>This task allows for HelpStudio projects to be created via Ant.</p>
  969. <table class="externals">
  970. <tr>
  971. <th>Compatibility:</th>
  972. <td>Ant 1.6.0 and later</td>
  973. </tr>
  974. <tr>
  975. <th>URL:</th>
  976. <td><a href="http://helpstudioant.sourceforge.net">http://helpstudioant.sourceforge.net</a></td>
  977. </tr>
  978. <tr>
  979. <th>License:</th>
  980. <td>GNU General Public License</td>
  981. </tr>
  982. </table>
  983. </subsection>
  984. <subsection name="IDLDepend">
  985. <p>idldepend is a task that (re)generates Java sources to be
  986. created from CORBA/IDL files.</p>
  987. <p>It parses the IDL file and determines the Java files that
  988. must be generated, taking in account the modifications that
  989. can happen due to command line parameters. If any of the Java
  990. files are missing or older than the source IDL specification,
  991. it launches the specified compiler. The compilers of Orbacus,
  992. Jacorb, OpenORB, Orbix2k and Sun'JDK distributions are
  993. supported.</p>
  994. <p>To speed up the process and avoid unnecesary re-parsing, it
  995. keeps the dependencies in intermediate files. This task does
  996. not launch the javac compiler as well, that is, its output are
  997. Java files and not the final bytecode.</p>
  998. <table class="externals">
  999. <tr>
  1000. <th>Compatibility:</th>
  1001. <td>Ant 1.4 or later</td>
  1002. </tr>
  1003. <tr>
  1004. <th>URL:</th>
  1005. <td><a href="http://grasia.fdi.ucm.es/~luismi/idldepend/">http://grasia.fdi.ucm.es/~luismi/idldepend/</a></td>
  1006. </tr>
  1007. <tr>
  1008. <th>Contact:</th>
  1009. <td><a href="mailto:luismpena@gmx.net">luismpena@gmx.net</a></td>
  1010. </tr>
  1011. <tr>
  1012. <th>License:</th>
  1013. <td>free source, no license restrictions</td>
  1014. </tr>
  1015. </table>
  1016. </subsection>
  1017. <subsection name="Image">
  1018. <p>Image task generates and transforms images. It exposes the
  1019. imaging capability available in Java2D, Java Advanced Imaging,
  1020. ImageIO, etc., as set of nested elements.</p>
  1021. <p>Image transformations such as &quot;resize&quot;
  1022. (scale),&quot;overlay&quot; (one image on another),
  1023. &quot;border&quot; (add a border), &quot;text&quot; (text on
  1024. image), &quot;crop&quot; (a sub-image of a bigger image),
  1025. &quot;rotate&quot;, &quot;grayscale&quot; (change a color
  1026. image to shades of gray).<br/>
  1027. Now it supports transparency (making images translucent), a
  1028. bestfit option for Resize, simple support for images within
  1029. a security-constraint, a preliminary support (if pjatools.jar
  1030. is available) for saving files as GIF and some other fixes.</p>
  1031. <p>IMPORTANT: You will need the PMIW (Poor Man's Imaging Wrapper) jar
  1032. for all the operations and the pjatools jar for GIF encoding/ saving
  1033. support.</p>
  1034. <table class="externals">
  1035. <tr>
  1036. <th>Compatibility:</th>
  1037. <td>Ant 1.4</td>
  1038. </tr>
  1039. <tr>
  1040. <th>URL:</th>
  1041. <td><a
  1042. href="http://www.mullassery.com/software/ANT/">http://www.mullassery.com/software/ANT/</a></td>
  1043. </tr>
  1044. <tr>
  1045. <th>pmiw jar</th>
  1046. <td><a
  1047. href="http://www.mullassery.com/software/PMIW/">http://www.mullassery.com/software/PMIW/</a>
  1048. (Poor Man's Imaging Wrapper)</td>
  1049. </tr>
  1050. <tr>
  1051. <th>pjatools jar</th>
  1052. <td><a
  1053. href="http://www.eteks.com/pja/en/">http://www.eteks.com/pja/en/</a>
  1054. (pjatools for GIF encoding support)</td>
  1055. </tr>
  1056. <tr>
  1057. <th>Contact:</th>
  1058. <td><a href="http://www.mullassery.com">Abey Mullassery</a></td>
  1059. </tr>
  1060. <tr>
  1061. <th>License:</th>
  1062. <td>Apache Software License</td>
  1063. </tr>
  1064. </table>
  1065. </subsection>
  1066. <subsection name="Importscrubber">
  1067. <p>Removes unnecessary import statements from a Java source code file.</p>
  1068. <table class="externals">
  1069. <tr>
  1070. <th>Compatibility:</th>
  1071. <td>Ant 1.3</td>
  1072. </tr>
  1073. <tr>
  1074. <th>URL:</th>
  1075. <td><a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a></td>
  1076. </tr>
  1077. <tr>
  1078. <th>Contact:</th>
  1079. <td><a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a></td>
  1080. </tr>
  1081. <tr>
  1082. <th>License:</th>
  1083. <td>LGPL</td>
  1084. </tr>
  1085. </table>
  1086. </subsection>
  1087. <subsection name="ImTask">
  1088. <p>ImTask is a task to allow one to send an Instant
  1089. Message. Currently supports yahoo!, AIM, and Jabber</p>
  1090. <table class="externals">
  1091. <tr>
  1092. <th>Compatibility:</th>
  1093. <td>Ant 1.5 or higher</td>
  1094. </tr>
  1095. <tr>
  1096. <th>URL:</th>
  1097. <td><a href="http://imtask.sourceforge.net/">http://imtask.sourceforge.net</a></td>
  1098. </tr>
  1099. <tr>
  1100. <th>Contact:</th>
  1101. <td><a href="mailto:djallstar@users.sourceforge.net">Jon Madison</a></td>
  1102. </tr>
  1103. <tr>
  1104. <th>License:</th>
  1105. <td>GNU LGPL</td>
  1106. </tr>
  1107. </table>
  1108. </subsection>
  1109. <subsection name="Incanto">
  1110. <p>Ant tasks to provide support for Oracle database tools
  1111. (such as SQL*Plus, Import, Export)</p>
  1112. <table class="externals">
  1113. <tr>
  1114. <th>Compatibility:</th>
  1115. <td>Ant 1.6</td>
  1116. </tr>
  1117. <tr>
  1118. <th>URL:</th>
  1119. <td><a href="http://incanto.sourceforge.net/">http://incanto.sourceforge.net/</a></td>
  1120. </tr>
  1121. <tr>
  1122. <th>Contact:</th>
  1123. <td><a href="mailto:alexrk@users.sourceforge.net">Alexander Karnstedt</a></td>
  1124. </tr>
  1125. <tr>
  1126. <th>License:</th>
  1127. <td>Apache License, Version 2.0</td>
  1128. </tr>
  1129. </table>
  1130. </subsection>
  1131. <subsection name="IsDirValidator">
  1132. <p>Checks whether a given directory structure conforms to
  1133. certain rules that are defined via nested elements of the
  1134. task.</p>
  1135. <table class="externals">
  1136. <tr>
  1137. <th>Compatibility:</th>
  1138. <td>Ant 1.4</td>
  1139. </tr>
  1140. <tr>
  1141. <th>URL:</th>
  1142. <td><a href="http://isvalidator.sourceforge.net/en/isDirValidator.htm">http://isvalidator.sourceforge.net/en/isDirValidator.htm</a></td>
  1143. </tr>
  1144. <tr>
  1145. <th>Contact:</th>
  1146. <td><a href="mailto:news@inigoserrano.com">I&#xF1;igo Serrano</a></td>
  1147. </tr>
  1148. <tr>
  1149. <th>License:</th>
  1150. <td>GNU General Public License</td>
  1151. </tr>
  1152. </table>
  1153. </subsection>
  1154. <subsection name="Ivy">
  1155. <p>Ivy is a simple yet powerful dependency manager featuring
  1156. continuous integration, dependencies of dependencies
  1157. management, multiple repositories including ibiblio and high
  1158. performance (use of a local cache).</p>
  1159. <table class="externals">
  1160. <tr>
  1161. <th>Compatibility:</th>
  1162. <td>1.5.1 or superior</td>
  1163. </tr>
  1164. <tr>
  1165. <th>URL:</th>
  1166. <td><a href="http://ivy.jayasoft.org/">http://ivy.jayasoft.org/</a></td>
  1167. </tr>
  1168. <tr>
  1169. <th>Contact:</th>
  1170. <td>contact at jayasoft dot org</td>
  1171. </tr>
  1172. <tr>
  1173. <th>License:</th>
  1174. <td>BSD License</td>
  1175. </tr>
  1176. </table>
  1177. </subsection>
  1178. <subsection name="J2ME Ant Tasks">
  1179. <p>There are different sets of tasks to help build <a
  1180. href="http://java.sun.com/j2me/">Java 2 Platform, Micro
  1181. Edition</a> (J2ME) applications.</p>
  1182. <subsubsection name="Antenna">
  1183. <p>Antenna provides a set of Ant tasks suitable for developing
  1184. wireless Java applications targeted at the Mobile Information
  1185. Device Profile (MIDP). With Antenna, you can compile,
  1186. preverify, package, obfuscate, and run your MIDP applications
  1187. (aka MIDlets), manipulate Java Application Descriptor (JAD)
  1188. files, as well as convert JAR files to PRC files designed to
  1189. run on MIDP for Palm OS. Deployment is supported via a
  1190. deployment task and a corresponding HTTP servlet for
  1191. Over-the-Air (OTA) provisioning. A small preprocessor allows
  1192. to generate different variants of a MIDlet from a single
  1193. source.</p>
  1194. <table class="externals">
  1195. <tr>
  1196. <th>Compatibility:</th>
  1197. <td>Ant 1.4.1 or later</td>
  1198. </tr>
  1199. <tr>
  1200. <th>URL:</th>
  1201. <td><a href="http://antenna.sourceforge.net/">http://antenna.sourceforge.net/</a></td>
  1202. </tr>
  1203. <tr>
  1204. <th>Contact:</th>
  1205. <td><a href="mailto:joerg@pleumann.de">J&#xF6;rg Pleumann</a></td>
  1206. </tr>
  1207. <tr>
  1208. <th>License:</th>
  1209. <td>GNU Lesser General Public License</td>
  1210. </tr>
  1211. </table>
  1212. </subsubsection>
  1213. <subsubsection name="Antic">
  1214. <p>Antic is a freely available task for packaging J2ME
  1215. applications. It produces both the Jar and Jad files in a
  1216. single step. This allows *all* entries to be correclty set in
  1217. the jad file, including the size of the jar file that is
  1218. produced. This task has been used and tested extensively with
  1219. Sun's Wireless Toolkit and also the Nokia SDK and
  1220. emulators.</p>
  1221. <table class="externals">
  1222. <tr>
  1223. <th>Compatibility:</th>
  1224. <td>Ant 1.5</td>
  1225. </tr>
  1226. <tr>
  1227. <th>URL:</th>
  1228. <td><a href="http://www.smartkey.co.uk/tools/antic/antic.html">http://www.smartkey.co.uk/tools/antic/antic.html</a>
  1229. </td>
  1230. </tr>
  1231. <tr>
  1232. <th>Contact:</th>
  1233. <td><a href="mailto:support@smartkey.co.uk">smartkey.co.uk</a></td>
  1234. </tr>
  1235. <tr>
  1236. <th>License:</th>
  1237. <td>GNU General Public License</td>
  1238. </tr>
  1239. </table>
  1240. </subsubsection>
  1241. <subsubsection name="Dave's J2ME Tasks">
  1242. <p>This set supports CLDC and the K Virtual Machine (KVM):</p>
  1243. <table class="externals">
  1244. <tr>
  1245. <th>Compatibility:</th>
  1246. <td>Ant 1.3</td>
  1247. </tr>
  1248. <tr>
  1249. <th>URL:</th>
  1250. <td><a href="http://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a></td>
  1251. </tr>
  1252. <tr>
  1253. <th>Contact:</th>
  1254. <td><a href="mailto:drib@enteract.com">Dave Dribin</a></td>
  1255. </tr>
  1256. <tr>
  1257. <th>License:</th>
  1258. <td>Apache Software License</td>
  1259. </tr>
  1260. </table>
  1261. </subsubsection>
  1262. <subsubsection name="J2ME Polish">
  1263. <p>J2ME Polish is an Ant-based tool for the creation of
  1264. MIDP applications. It covers the whole circle of preprocessing, compiling,
  1265. obfuscation, preverifying, packaging and JAD-creation. J2ME Polish is
  1266. ideal for creating device optimized applications with its powerful
  1267. preprocessing capabilities and the integrated device database.
  1268. With J2ME Polish no hardcoded values are needed and the portability of an
  1269. application is not sacrificed, even though highly optimized applications are
  1270. created from a single source.
  1271. <br/>
  1272. It contains a logging framework and an optional MIDP-compatible GUI
  1273. which can be designed using the web-standard CSS. With the J2ME Polish GUI
  1274. you can even use MIDP/2.0 features on MIDP/1.0 phones.
  1275. </p>
  1276. <table class="externals">
  1277. <tr>
  1278. <th>Compatibility:</th>
  1279. <td>Ant 1.4.1 or later</td>
  1280. </tr>
  1281. <tr>
  1282. <th>URL:</th>
  1283. <td><a
  1284. href="http://www.j2mepolish.org/">http://www.j2mepolish.org/</a></td>
  1285. </tr>
  1286. <tr>
  1287. <th>Contact:</th>
  1288. <td><a href="mailto:j2mepolish@enough.de">Enough Software</a></td>
  1289. </tr>
  1290. <tr>
  1291. <th>License:</th>
  1292. <td>GNU General Public License; commercial licenses available</td>
  1293. </tr>
  1294. </table>
  1295. </subsubsection>
  1296. <subsubsection name="Stampysoft's J2ME Tasks">
  1297. <p>And this set works with the J2ME Wireless Toolkit and MIDP
  1298. for PalmOS:</p>
  1299. <table class="externals">
  1300. <tr>
  1301. <th>Compatibility:</th>
  1302. <td>Ant 1.3</td>
  1303. </tr>
  1304. <tr>
  1305. <th>URL:</th>
  1306. <td><a href="http://www.stampysoft.com/ant/">http://www.stampysoft.com/ant/</a></td>
  1307. </tr>
  1308. <tr>
  1309. <th>Contact:</th>
  1310. <td><a href="mailto:jeckels@stampysoft.com">Josh Eckels</a></td>
  1311. </tr>
  1312. <tr>
  1313. <th>License:</th>
  1314. <td>MIT License</td>
  1315. </tr>
  1316. </table>
  1317. </subsubsection>
  1318. </subsection>
  1319. <subsection name="Jacson">
  1320. <p>Jacson is a configurable and plugable tool (much like Ant
  1321. itself) to create filters for text (line based) files without
  1322. programming.</p>
  1323. <table class="externals">
  1324. <tr>
  1325. <th>Compatibility:</th>
  1326. <td>Jacson has been used and tested with 1.5.1, should
  1327. work with 1.4+</td>
  1328. </tr>
  1329. <tr>
  1330. <th>URL:</th>
  1331. <td><a href="http://jacson.sourceforge.net/">http://jacson.sourceforge.net/</a></td>
  1332. </tr>
  1333. <tr>
  1334. <th>Contact:</th>
  1335. <td><a href="mailto:jacson-user@lists.sourceforge.de">jacson-user@lists.sourceforge.de</a></td>
  1336. </tr>
  1337. <tr>
  1338. <th>License:</th>
  1339. <td>GNU Library or Lesser General Public License</td>
  1340. </tr>
  1341. </table>
  1342. </subsection>
  1343. <subsection name="Jalopy">
  1344. <p>An Ant Plug-in for the Java Source Code Formatter
  1345. Jalopy.</p>
  1346. <table class="externals">
  1347. <tr>
  1348. <th>Compatibility:</th>
  1349. <td>Ant 1.4 (or higher)</td>
  1350. </tr>
  1351. <tr>
  1352. <th>URL:</th>
  1353. <td><a href="http://jalopy.sourceforge.net/">http://jalopy.sourceforge.net/</a></td>
  1354. </tr>
  1355. <tr>
  1356. <th>Contact:</th>
  1357. <td><a href="http://jalopy.sf.net/contact.html">http://jalopy.sf.net/contact.html</a></td>
  1358. </tr>
  1359. <tr>
  1360. <th>License:</th>
  1361. <td>Starting with release 1.0 Beta 6 the license is the
  1362. BSD License. Prior releases were under the GNU General
  1363. Public License.</td>
  1364. </tr>
  1365. </table>
  1366. </subsection>
  1367. <subsection name="JarBundler">
  1368. <p>JarBundler is a task that generates Mac OS X native Java
  1369. Application Bundles. It is fully configurable and can be used
  1370. to generate Mac OS X application bundles from any supported
  1371. Java platform, making it ideal for targeting multiple
  1372. platforms with one build.</p>
  1373. <table class="externals">
  1374. <tr>
  1375. <th>Compatibility:</th>
  1376. <td>Ant 1.4 and later</td>
  1377. </tr>
  1378. <tr>
  1379. <th>URL:</th>
  1380. <td><a href="http://www.loomcom.com/jarbundler/">http://www.loomcom.com/jarbundler/</a></td>
  1381. </tr>
  1382. <tr>
  1383. <th>Contact:</th>
  1384. <td><a href="mailto:sethm@loomcom.com">Seth Morabito</a></td>
  1385. </tr>
  1386. <tr>
  1387. <th>License:</th>
  1388. <td>GNU General Public License</td>
  1389. </tr>
  1390. </table>
  1391. </subsection>
  1392. <subsection name="JarPatch">
  1393. <p>JarPatch is a task that generates a zip file resulting of
  1394. the diff between the content of 2 jar files.</p>
  1395. <p>The resulting diff file can be use as a patch for a
  1396. previous installation (just ensure that the generated
  1397. patch.zip file is located on the CLASSPATH before the patched
  1398. oldJar jar file)</p>
  1399. <table class="externals">
  1400. <tr>
  1401. <th>Compatibility:</th>
  1402. <td>Ant 1.5 and later</td>
  1403. </tr>
  1404. <tr>
  1405. <th>URL:</th>
  1406. <td><a
  1407. href="http://perso.club-internet.fr/sjobic/ant/">http://perso.club-internet.fr/sjobic/ant/</a></td>
  1408. </tr>
  1409. <tr>
  1410. <th>Contact:</th>
  1411. <td><a href="mailto:norbert.barbosa@laposte.net">Norbert Barbosa</a></td>
  1412. </tr>
  1413. <tr>
  1414. <th>License:</th>
  1415. <td>LGPL License</td>
  1416. </tr>
  1417. </table>
  1418. </subsection>
  1419. <subsection name="Java+ Precompile Task">
  1420. <p>Java+ is an open source Java preprocessor that adds these
  1421. features to any Java compiler:</p>
  1422. <ul>
  1423. <li>Multi-line strings with executable inclusions like Perl
  1424. and Ruby. It eliminates the need for JSP or ASP and their
  1425. need for Java compilers on deployment servers (a security
  1426. concern) while adding no overhead in either space or
  1427. time. </li>
  1428. <li>Optionally supports localization by segregating Java+
  1429. strings into ResourceBundle files with invarient keys based
  1430. on the hash code of the strings's value. This is handled
  1431. automatically and transparently; no intervention is
  1432. required.</li>
  1433. <li>Fast. Negligible impact on build times. By default,
  1434. skips inputs whose outputs are up to date to avoid
  1435. triggering recompilations.</li>
  1436. <li>Pure Java code, portable to any platform, with
  1437. graphical, shell and ant interfaces.</li>
  1438. <li>Simple, general, recursive, digraph-driven string
  1439. syntax. Digraph characters are user-selectable.</li>
  1440. </ul>
  1441. <table class="externals">
  1442. <tr>
  1443. <th>Compatibility:</th>
  1444. <td>Ant 1.5.1</td>
  1445. </tr>
  1446. <tr>
  1447. <th>URL:</th>
  1448. <td><a href="http://virtualschool.edu/java+/">http://virtualschool.edu/java+/</a></td>
  1449. </tr>
  1450. <tr>
  1451. <th>Contact:</th>
  1452. <td><a href="mailto:bcox@virtualschool.edu">Brad Cox</a></td>
  1453. </tr>
  1454. <tr>
  1455. <th>License:</th>
  1456. <td>BSD-like License</td>
  1457. </tr>
  1458. </table>
  1459. </subsection>
  1460. <subsection name="Java2Html">
  1461. <p>There are two different tools both named Java2HTML that
  1462. process Java source code and generate syntax highlighted
  1463. documentation from it. Both include Ant tasks to run
  1464. them.</p>
  1465. <p>Java2Html library for converting java source files
  1466. or snipplets to syntax highlighted html, rtf, tex and
  1467. others.</p>
  1468. <table class="externals">
  1469. <tr>
  1470. <th>Compatibility:</th>
  1471. <td>Ant 1.5 and later</td>
  1472. </tr>
  1473. <tr>
  1474. <th>URL:</th>
  1475. <td><a href="http://www.java2html.de/">http://www.java2html.de/</a></td>
  1476. </tr>
  1477. <tr>
  1478. <th>Contact:</th>
  1479. <td><a href="mailto:java2html@jave.de">java2html@jave.de</a></td>
  1480. </tr>
  1481. <tr>
  1482. <th>License:</th>
  1483. <td>GNU General Public License</td>
  1484. </tr>
  1485. </table>
  1486. <p>Java2HTML is a simple-to-use tool which converts a bunch of
  1487. Java Source Code into a colourized and browsable HTML
  1488. representation.</p>
  1489. <table class="externals">
  1490. <tr>
  1491. <th>Compatibility:</th>
  1492. <td>1.5.1 onwards</td>
  1493. </tr>
  1494. <tr>
  1495. <th>URL:</th>
  1496. <td><a href="http://www.java2html.com/java2html_ant_task.html">http://www.java2html.com/java2html_ant_task.html</a></td>
  1497. </tr>
  1498. <tr>
  1499. <th>Contact:</th>
  1500. <td><a href="mailto:support@java2html.com">support@java2html.com</a></td>
  1501. </tr>
  1502. <tr>
  1503. <th>License:</th>
  1504. <td>FreeWare</td>
  1505. </tr>
  1506. </table>
  1507. </subsection>
  1508. <subsection name="Javamake">
  1509. <p>A task to compile Java sources and manage class file
  1510. dependencies. Functionality is equivalent to that of standard
  1511. Javac and Depend tasks combined, with improved dependency
  1512. checking.</p>
  1513. <table class="externals">
  1514. <tr>
  1515. <th>Compatibility:</th>
  1516. <td>Ant 1.4.1</td>
  1517. </tr>
  1518. <tr>
  1519. <th>URL:</th>
  1520. <td><a href="http://www.experimentalstuff.com/Technologies/JavaMake/index.html">http://www.experimentalstuff.com/Technologies/JavaMake/index.html</a></td>
  1521. </tr>
  1522. <tr>
  1523. <th>Contact:</th>
  1524. <td><a href="mailto:Mikhail.Dmitriev@eng.sun.com">Mikhail Dmitriev</a></td>
  1525. </tr>
  1526. <tr>
  1527. <th>License:</th>
  1528. <td>BSD-like License</td>
  1529. </tr>
  1530. </table>
  1531. </subsection>
  1532. <subsection name="javarec">
  1533. <p>Ant tasks that generate record classes for VisualAge for
  1534. Java from Cobol copy books.</p>
  1535. <table class="externals">
  1536. <tr>
  1537. <th>Compatibility:</th>
  1538. <td>Ant 1.4</td>
  1539. </tr>
  1540. <tr>
  1541. <th>URL:</th>
  1542. <td><a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a></td>
  1543. </tr>
  1544. <tr>
  1545. <th>Contact:</th>
  1546. <td><a href="mailto:pglezen@us.ibm.com">Paul Glezen</a></td>
  1547. </tr>
  1548. <tr>
  1549. <th>License:</th>
  1550. <td>Apache Software License</td>
  1551. </tr>
  1552. </table>
  1553. </subsection>
  1554. <subsection name="JCSC">
  1555. <p>JCSC is a Java Coding Standard Checker which also features
  1556. the generation of some code metrics. It is a command line tool
  1557. with an Ant task to scan whole package trees. The result can
  1558. viewed in an JavaDoc style web page.</p>
  1559. <table class="externals">
  1560. <tr>
  1561. <th>Compatibility:</th>
  1562. <td>Ant &gt;= 1.5</td>
  1563. </tr>
  1564. <tr>
  1565. <th>URL:</th>
  1566. <td><a href="http://jcsc.sourceforge.net/">http://jcsc.sourceforge.net/</a></td>
  1567. </tr>
  1568. <tr>
  1569. <th>Contact:</th>
  1570. <td><a href="mailto:rjocham72@netscape.net">Ralph Jocham</a></td>
  1571. </tr>
  1572. <tr>
  1573. <th>License:</th>
  1574. <td>GNU General Public License</td>
  1575. </tr>
  1576. </table>
  1577. </subsection>
  1578. <subsection name="Jdiff">
  1579. <p>A task that generates an HTML report of all the packages, classes,
  1580. constructors, methods, and fields which have been removed, added or
  1581. changed in any way, including their documentation, when two APIs are
  1582. compared. </p>
  1583. <table class="externals">
  1584. <tr>
  1585. <th>Compatibility:</th>
  1586. <td>Ant 1.6</td>
  1587. </tr>
  1588. <tr>
  1589. <th>URL:</th>
  1590. <td>
  1591. <a href="http://javadiff.sourceforge.net/" >
  1592. http://javadiff.sourceforge.net/</a></td>
  1593. </tr>
  1594. <tr>
  1595. <th>Task Documentation:</th>
  1596. <td>
  1597. <a
  1598. href="http://cvs.sourceforge.net/viewcvs.py/*checkout*/javadiff/jdiff/jdiff.html?rev=HEAD&amp;content-type=text/html#JDiffAntTask"
  1599. >
  1600. (in CVS)</a></td>
  1601. </tr>
  1602. <tr>
  1603. <th>License:</th>
  1604. <td>LGPL</td>
  1605. </tr>
  1606. </table>
  1607. </subsection>
  1608. <subsection name="JFlex">
  1609. <p>JFlex is a lexical analyzer generator (also known as
  1610. scanner generator) for Java, written in Java.</p>
  1611. <table class="externals">
  1612. <tr>
  1613. <th>Compatibility:</th>
  1614. <td>Ant 1.5</td>
  1615. </tr>
  1616. <tr>
  1617. <th>URL:</th>
  1618. <td><a href="http://jflex.de/">http://jflex.de/</a></td>
  1619. </tr>
  1620. <tr>
  1621. <th>Contact:</th>
  1622. <td><a href="http://www.jflex.de/mailing.html">jflex-users mailing list</a></td>
  1623. </tr>
  1624. <tr>
  1625. <th>License:</th>
  1626. <td>GNU General Public License (GPL)</td>
  1627. </tr>
  1628. </table>
  1629. </subsection>
  1630. <subsection name="JindentTask">
  1631. <p>JindentTask is a very straightforward wrapping of the
  1632. Jindent tool, a vendor code beautifier. It enables to use
  1633. Jindent natively from Ant.</p>
  1634. <table class="externals">
  1635. <tr>
  1636. <th>Compatibility:</th>
  1637. <td>Ant 1.4.1 and higher</td>
  1638. </tr>
  1639. <tr>
  1640. <th>URL:</th>
  1641. <td><a href="http://the.edouard.mercier.free.fr/Jindent_content.php">http://the.edouard.mercier.free.fr/Jindent_content.php</a></td>
  1642. </tr>
  1643. <tr>
  1644. <th>Contact:</th>
  1645. <td>Edouard Mercier</td>
  1646. </tr>
  1647. </table>
  1648. </subsection>
  1649. <subsection name="Jing Task">
  1650. <p> Validates XML files against the RELAX NG alternative to XML Schema.
  1651. The Jing task for Ant allows you to efficiently validate
  1652. multiple files against multiple RELAX NG patterns and integrate
  1653. RELAX NG validation with other XML processing.</p>
  1654. <table class="externals">
  1655. <tr>
  1656. <th>Compatibility:</th>
  1657. <td>Ant 1.4 and later</td>
  1658. </tr>
  1659. <tr>
  1660. <th>URL:</th>
  1661. <td><a href="http://www.thaiopensource.com/relaxng/jing-ant.html">
  1662. http://www.thaiopensource.com/relaxng/jing-ant.html</a></td>
  1663. </tr>
  1664. <tr>
  1665. <th>License:</th>
  1666. <td>BSD-like</td>
  1667. </tr>
  1668. </table>
  1669. </subsection>
  1670. <subsection name="jMetra">
  1671. <p>jMetra is a tool for collecting code metrics across a
  1672. project lifecycle and compiling the results into
  1673. JavaDoc-styled documentation to analyze project metrics over
  1674. time. jMetra is best utilized by integrating it with your
  1675. project's scheduled build process.</p>
  1676. <p>It works from the command line or using several provided
  1677. Ant tasks.</p>
  1678. <table class="externals">
  1679. <tr>
  1680. <th>Compatibility:</th>
  1681. <td>Ant 1.4 and higher</td>
  1682. </tr>
  1683. <tr>
  1684. <th>URL:</th>
  1685. <td>
  1686. <a href="http://www.jmetra.com/">http://www.jmetra.com/</a
  1687. >
  1688. </td>
  1689. </tr>
  1690. <tr>
  1691. <th>Contact:</th>
  1692. <td>
  1693. <a href="mailto:tnewton@hypercisioninc.com">R Todd Newton
  1694. </a>
  1695. </td>
  1696. </tr>
  1697. <tr>
  1698. <th>License:</th>
  1699. <td>Commercial, free licenses for open source projects and
  1700. evaluations.</td>
  1701. </tr>
  1702. </table>
  1703. </subsection>
  1704. <subsection name="JMX4Ant">
  1705. <p>JMX4Ant provides tasks for integration with JMX (Java Management
  1706. Extensions). It provides tasks for getting and setting attributes
  1707. of MBeans, invoking their methods and much more.</p>
  1708. <table class="externals">
  1709. <tr>
  1710. <th>Compatibility:</th>
  1711. <td>Ant 1.4 and higher</td>
  1712. </tr>
  1713. <tr>
  1714. <th>URL:</th>
  1715. <td>
  1716. <a href="http://jmx4ant.sourceforge.net/">http://jmx4ant.sourceforge.net/</a>
  1717. </td>
  1718. </tr>
  1719. <tr>
  1720. <th>Contact:</th>
  1721. <td>
  1722. <a href="mailto:bdueck@yahoo.com">Brian Dueck</a>
  1723. </td>
  1724. </tr>
  1725. <tr>
  1726. <th>License:</th>
  1727. <td>Apache Software License 1.1</td>
  1728. </tr>
  1729. </table>
  1730. </subsection>
  1731. <subsection name="JNI">
  1732. <p>
  1733. JNI is a free toolkit that makes easy work of
  1734. integrating Java and C through the Java Native
  1735. Interface (JNI). It includes a code generator that
  1736. generates both Java "proxy" classes to access C
  1737. "peer" classes, and C "proxy" classes to access
  1738. Java "peer" classes or interfaces. It also
  1739. includes a core library with a simplified JVM
  1740. interface as well as "helper" classes to ease
  1741. working with the JNI data types. The code
  1742. generation is driven by an XML project file that
  1743. can be created with the assistance of the GUI
  1744. Project Manager. The code generation can be
  1745. invoked either from Ant or from the
  1746. GUI. Includes a comprehensive printable PDF User
  1747. Guide and plenty of examples.</p>
  1748. <table class="externals">
  1749. <tr>
  1750. <th>Compatibility:</th>
  1751. <td>Ant 1.4</td>
  1752. </tr>
  1753. <tr>
  1754. <th>URL:</th>
  1755. <td><a href="http://jnipp.sf.net/">http://jnipp.sf.net/</a></td>
  1756. </tr>
  1757. <tr>
  1758. <th>Contact:</th>
  1759. <td><a href="mailto:ptrewhella@users.sf.net">Phillip E. Trewhella</a></td>
  1760. </tr>
  1761. <tr>
  1762. <th>License:</th>
  1763. <td>GNU LGPL</td>
  1764. </tr>
  1765. </table>
  1766. </subsection>
  1767. <subsection name="JReleaseInfo">
  1768. <p>Sometimes you are interested at runtime to have information
  1769. from build time. This may be the build date, a build number or
  1770. the version. The JReleaseInfo Ant Task generates a java
  1771. source file with getter methods for any desired and provided
  1772. properties. Furthermore, it can automatically generate a
  1773. viewer (which can e.g. be used as main-class in a library jar
  1774. file) that shows the included release information.</p>
  1775. <table class="externals">
  1776. <tr>
  1777. <th>Compatibility:</th>
  1778. <td>Ant 1.6 and later</td>
  1779. </tr>
  1780. <tr>
  1781. <th>URL:</th>
  1782. <td><a href="http://jreleaseinfo.sourceforge.net/">HomePage on SourceForge</a></td>
  1783. </tr>
  1784. <tr>
  1785. <th>Contact:</th>
  1786. <td><a
  1787. href="http://sourceforge.net/projects/jreleaseinfo/">Forums/Tracker on SourceForge</a></td>
  1788. </tr>
  1789. <tr>
  1790. <th>License:</th>
  1791. <td>Apache Software License</td>
  1792. </tr>
  1793. </table>
  1794. </subsection>
  1795. <subsection name="JRun Ant Tasks">
  1796. <p>JRun 4 SP1 ships with lib/jrun-ant-tasks.jar, which defines
  1797. three Ant tasks: jrun, jrunapp, and jrunjmx. Documentation
  1798. for the tasks can be found in JRun under
  1799. docs/ant/jrun.html.</p>
  1800. <p>Note that the service pack must be installed on top of an
  1801. existing JRun 4 installation.</p>
  1802. <table class="externals">
  1803. <tr>
  1804. <th>Compatibility:</th>
  1805. <td>Ant 1.4 or higher</td>
  1806. </tr>
  1807. <tr>
  1808. <th>URL:</th>
  1809. <td><a href="http://dynamic.macromedia.com/bin/MM/software/trial/hwswrec.jsp?product=jrun_sp">http://dynamic.macromedia.com/bin/MM/software/trial/hwswrec.jsp?product=jrun_sp</a></td>
  1810. </tr>
  1811. <tr>
  1812. <th>Contact:</th>
  1813. <td><a href="mailto:bdeitte@macromedia.com">Brian Deitte</a></td>
  1814. </tr>
  1815. <tr>
  1816. <th>License:</th>
  1817. <td>Commercial</td>
  1818. </tr>
  1819. </table>
  1820. </subsection>
  1821. <subsection name="JudoScript Ant Task">
  1822. <p>The &lt;judoscript&gt; task is an easy way to embed JudoScript
  1823. code in the Ant build script. The tag format is quite simple. You can
  1824. either embed code directly, or can specify an external JudoScript program
  1825. file as the <code>src</code> attribute value. Parameters can be specified
  1826. as the <code>params</code> attribute; this is applicable to both embedded
  1827. code and external files.
  1828. </p>
  1829. <table class="externals">
  1830. <tr>
  1831. <th>Compatibility:</th>
  1832. <td>Ant 1.5 or higher</td>
  1833. </tr>
  1834. <tr>
  1835. <th>URL:</th>
  1836. <td><a
  1837. href="http://www.judoscript.com/articles/ant.html">http://www.judoscript.com/articles/ant.html</a></td>
  1838. </tr>
  1839. <tr>
  1840. <th>Contact:</th>
  1841. <td><a href="mailto:judoscript@hotmail.com">James Jianbo Huang</a></td>
  1842. </tr>
  1843. <tr>
  1844. <th>License:</th>
  1845. <td>Lesser GNU Public License</td>
  1846. </tr>
  1847. </table>
  1848. </subsection>
  1849. <subsection name="Just4log Ant Task">
  1850. <p>Just4log is a ant task to optimize JVM bytecode with regards
  1851. for Logs ( be it, Log4j, Apache Commons or JDK 1.4 )
  1852. It depends on apache BCEL for Bytecode engineering.</p>
  1853. <table class="externals">
  1854. <tr>
  1855. <th>Compatibility:</th>
  1856. <td>Ant 1.5.2 or higher</td>
  1857. </tr>
  1858. <tr>
  1859. <th>URL:</th>
  1860. <td><a href="http://just4log.sourceforge.net">http://just4log.sourceforge.net</a></td>
  1861. </tr>
  1862. <tr>
  1863. <th>Contact:</th>
  1864. <td><a href="mailto:lbruand@wanadoo.fr">Lucas Bruand</a></td>
  1865. </tr>
  1866. <tr>
  1867. <th>License:</th>
  1868. <td>Apache License 1.1.</td>
  1869. </tr>
  1870. </table>
  1871. </subsection>
  1872. <subsection name="Kanaputs">
  1873. <p>Kanaputs is a parser for java based scripting. It is an
  1874. interpreter for Java. With Kanaputs you can use Java as an
  1875. interpreted language: no more compilation, each instruction is
  1876. executed when you write it. It is a small programmation
  1877. language to make script files above Java.</p>
  1878. <p>Kanaputs Ant Task provides a way to add any kind of
  1879. programmatic features in your Ant script. The code you insert
  1880. stays OS independent (because Kanaputs uses Java) and is
  1881. completely integrated with Ant as you can give Ant properties
  1882. to the Kanaputs code and get back the results in other
  1883. properties.</p>
  1884. <p>Moreover, as you can invoke any kind of Java code with
  1885. Kanaputs, you can popup windows from your Ant file to ask the
  1886. user to do a choice.</p>
  1887. <table class="externals">
  1888. <tr>
  1889. <th>Compatibility:</th>
  1890. <td>Ant 1.2 and above</td>
  1891. </tr>
  1892. <tr>
  1893. <th>URL:</th>
  1894. <td>
  1895. <a href="http://www.kanaputs.org/">http://www.kanaputs.org/</a> <br/>
  1896. <a href="http://www.kanaputs.org/ant.html">http://www.kanaputs.org/ant.html</a>
  1897. </td>
  1898. </tr>
  1899. <tr>
  1900. <th>Contact:</th>
  1901. <td>
  1902. <a href="mailto:kfra@kanaputs.org">kfra@kanaputs.org</a>
  1903. </td>
  1904. </tr>
  1905. <tr>
  1906. <th>License:</th>
  1907. <td>Freeware</td>
  1908. </tr>
  1909. </table>
  1910. </subsection>
  1911. <subsection name="LaTeX Task">
  1912. <p>Simple Task to use (PDF)LaTeX, BibTeX, Makeindex and GlossTeX to
  1913. create your documentation.</p>
  1914. <table class="externals">
  1915. <tr>
  1916. <th>Compatibility:</th>
  1917. <td>Ant 1.6.2 and above</td>
  1918. </tr>
  1919. <tr>
  1920. <th>URL:</th>
  1921. <td>
  1922. <a href="http://www.dokutransdata.de/">http://www.dokutransdata.de/</a><br/>
  1923. <a href="http://www.dokutransdata.de/ant_latex/">http://www.dokutransdata.de/ant_latex/</a>
  1924. </td>
  1925. </tr>
  1926. <tr>
  1927. <th>Contact:</th>
  1928. <td>
  1929. <a href="mailto:jaloma@dokutransdata.de">jaloma@dokutransdata.de</a>
  1930. </td>
  1931. </tr>
  1932. <tr>
  1933. <th>License:</th>
  1934. <td>Freeware</td>
  1935. </tr>
  1936. </table>
  1937. </subsection>
  1938. <subsection name="Macker">
  1939. <p>A build-time architectural testing tool, designed
  1940. to maintain clean layering / tiering / modularity.
  1941. Macker works against compiled class files, checking
  1942. dependencies between classes against a set of
  1943. pattern-based access rules you specify for your
  1944. project in an XML rules file. Macker doesn't presume
  1945. anything about your architecture -- you write the
  1946. rules, and Macker keeps you honest about them.</p>
  1947. <table class="externals">
  1948. <tr>
  1949. <th>Compatibility:</th>
  1950. <td>Ant 1.5 and higher (1.4 untested but may work)</td>
  1951. </tr>
  1952. <tr>
  1953. <th>URL:</th>
  1954. <td><a href="http://innig.net/macker/">http://innig.net/macker/</a></td>
  1955. </tr>
  1956. <tr>
  1957. <th>Contact:</th>
  1958. <td><a href="http://innig.net/macker/contact.html">Paul Cantrell</a></td>
  1959. </tr>
  1960. <tr>
  1961. <th>License:</th>
  1962. <td>GNU GPL 2.0</td>
  1963. </tr>
  1964. </table>
  1965. </subsection>
  1966. <subsection name="mtxslt">
  1967. <p>The mtxslt (Multi-XSLT) extends the standard Ant "xslt/style" task
  1968. to make it easy to use multiple XSLT engines during the same build.
  1969. This is useful for regression testing of XSLT scripts against several
  1970. engines.</p>
  1971. <table class="externals">
  1972. <tr>
  1973. <th>Compatibility:</th>
  1974. <td>Ant 1.5</td>
  1975. </tr>
  1976. <tr>
  1977. <th>URL:</th>
  1978. <td><a href="http://mtxslt.sourceforge.net/">http://mtxslt.sourceforge.net/</a></td>
  1979. </tr>
  1980. <tr>
  1981. <th>Contact:</th>
  1982. <td><a href="mailto:abcoates@theOffice.net">Anthony B. Coates</a></td>
  1983. </tr>
  1984. <tr>
  1985. <th>License:</th>
  1986. <td>Apache Software Foundation License</td>
  1987. </tr>
  1988. </table>
  1989. </subsection>
  1990. <subsection name="nsd2LaTeX Task">
  1991. <p>Simple Task to use nsd2ltx to build your Nassi-Shneiderman diagrams.</p>
  1992. <table class="externals">
  1993. <tr>
  1994. <th>Compatibility:</th>
  1995. <td>Ant 1.6.2 and above</td>
  1996. </tr>
  1997. <tr>
  1998. <th>URL:</th>
  1999. <td>
  2000. <a href="http://www.dokutransdata.de/">http://www.dokutransdata.de/</a><br/>
  2001. <a href="http://www.dokutransdata.de/ant_nsd2ltx/">http://www.dokutransdata.de/ant_nsd2ltx/</a>
  2002. </td>
  2003. </tr>
  2004. <tr>
  2005. <th>Contact:</th>
  2006. <td>
  2007. <a href="mailto:jaloma@dokutransdata.de">jaloma@dokutransdata.de</a>
  2008. </td>
  2009. </tr>
  2010. <tr>
  2011. <th>License:</th>
  2012. <td>Freeware</td>
  2013. </tr>
  2014. </table>
  2015. </subsection>
  2016. <subsection name="Nurflugel AntScript Visualizer">
  2017. <p>The Nurflugel AntScript Visualizer takes your build file,
  2018. finds any imported build files, and shows all relationships
  2019. between targets, taskdefs, macrodefs, Ant and Antcalls; output
  2020. options include PDF, SVG, and PNG. Many options including
  2021. grouping by build file, inclusion/exclusion of targets,
  2022. taskdefs, imports, etc. Installation is via Java WebStart, so
  2023. you'll always have the freshest version available.</p>
  2024. <table class="externals">
  2025. <tr>
  2026. <th>Compatibility:</th>
  2027. <td>Ant 1.1 and later</td>
  2028. </tr>
  2029. <tr>
  2030. <th>URL:</th>
  2031. <td><a href="http://www.nurflugel.com/webstart/AntScriptVisualizer/">http://www.nurflugel.com/webstart/AntScriptVisualizer/</a></td>
  2032. </tr>
  2033. <tr>
  2034. <th>Contact:</th>
  2035. <td>dbullard &lt;at&gt; nurflugel &lt;dot&gt; com (email
  2036. will receive a challenge to weed out spam)</td>
  2037. </tr>
  2038. <tr>
  2039. <th>License:</th>
  2040. <td>GNU General Public License</td>
  2041. </tr>
  2042. </table>
  2043. </subsection>
  2044. <subsection name="Orangevolt Ant Tasks">
  2045. <p>Orangevolt ANT Tasks is a collection of Tasks for Apache
  2046. Ant.</p>
  2047. <p>The Orangevolt Ant Tasks collections provides a bunch of
  2048. Appplication Deployment related Tasks from windows specific
  2049. tasks (registry access, executable generation), *nix specific
  2050. tasks (kde/gnome shortcut generation) to many useful utility
  2051. tasks like jnlp generation.</p>
  2052. <table class="externals">
  2053. <tr>
  2054. <th>Compatibility:</th>
  2055. <td>Ant 1.5 or above</td>
  2056. </tr>
  2057. <tr>
  2058. <th>URL:</th>
  2059. <td><a href="http://sourceforge.net/projects/ovanttasks">http://sourceforge.net/projects/ovanttasks</a></td>
  2060. </tr>
  2061. <tr>
  2062. <th>Contact:</th>
  2063. <td><a href="mailto:info@roxes.com">info@roxes.com</a></td>
  2064. </tr>
  2065. <tr>
  2066. <th>License:</th>
  2067. <td>GNU General Public License (GPL)</td>
  2068. </tr>
  2069. </table>
  2070. </subsection>
  2071. <subsection name="pack">
  2072. <p>pack is a task to build the smallest possible JAR to link
  2073. and run one or more classes.</p>
  2074. <table class="externals">
  2075. <tr>
  2076. <th>Compatibility:</th>
  2077. <td>Ant 1.5</td>
  2078. </tr>
  2079. <tr>
  2080. <th>URL:</th>
  2081. <td><a href="http://sadun-util.sourceforge.net/pack.html">http://sadun-util.sourceforge.net/pack.html</a></td>
  2082. </tr>
  2083. <tr>
  2084. <th>Contact:</th>
  2085. <td><a href="mailto:cristiano@xtractor.com">Cristiano Sadun</a></td>
  2086. </tr>
  2087. <tr>
  2088. <th>License:</th>
  2089. <td>GNU Lesser General Public License</td>
  2090. </tr>
  2091. </table>
  2092. </subsection>
  2093. <subsection name="PCT">
  2094. <p>PCT is a task to compile Progress code, and in a more general
  2095. way, to deal with Progress procedures and databases.</p>
  2096. <table class="externals">
  2097. <tr>
  2098. <th>Compatibility:</th>
  2099. <td>Ant 1.5</td>
  2100. </tr>
  2101. <tr>
  2102. <th>URL:</th>
  2103. <td><a href="http://pct.sourceforge.net">http://pct.sourceforge.net</a></td>
  2104. </tr>
  2105. <tr>
  2106. <th>Contact:</th>
  2107. <td><a href="mailto:justus_phenix@users.sourceforge.net">Gilles QUERRET</a></td>
  2108. </tr>
  2109. <tr>
  2110. <th>Licence:</th>
  2111. <td>Apache Software Foundation License</td>
  2112. </tr>
  2113. </table>
  2114. </subsection>
  2115. <subsection name="PesterCat Ant Toolkit">
  2116. <p>PesterCat is a web testing tool that was designed to
  2117. perform functional testing for web applications. The PesterCat
  2118. Ant Toolkit contains tasks to playback test scripts and create
  2119. HTML reports.
  2120. </p>
  2121. <table class="externals">
  2122. <tr>
  2123. <th>Compatibility:</th>
  2124. <td>Ant 1.6 and later</td>
  2125. </tr>
  2126. <tr>
  2127. <th>URL:</th>
  2128. <td><a href="http://www.pestercat.com/">http://www.pestercat.com/</a></td>
  2129. </tr>
  2130. <tr>
  2131. <th>License:</th>
  2132. <td>Commercial</td>
  2133. </tr>
  2134. </table>
  2135. </subsection>
  2136. <subsection name="PMD">
  2137. <p>PMD checks Java source code for unused variables,
  2138. unnecessary object creation, etc</p>
  2139. <table class="externals">
  2140. <tr>
  2141. <th>Compatibility:</th>
  2142. <td>Ant 1.4 and higher</td>
  2143. </tr>
  2144. <tr>
  2145. <th>URL:</th>
  2146. <td><a href="http://pmd.sf.net/">http://pmd.sf.net/</a></td>
  2147. </tr>
  2148. <tr>
  2149. <th>Contact:</th>
  2150. <td><a href="mailto:tcopeland@apache.org">Tom Copeland</a></td>
  2151. </tr>
  2152. <tr>
  2153. <th>License:</th>
  2154. <td>Apache Software Foundation License</td>
  2155. </tr>
  2156. </table>
  2157. </subsection>
  2158. <subsection name="PRes">
  2159. <p>PRes is short for Property Resources and will generate a Java source
  2160. file from name=value pair .property files which can be compiled like any
  2161. other class.</p>
  2162. <table class="externals">
  2163. <tr>
  2164. <th>Compatibility:</th>
  2165. <td>Ant 1.5 and later (may work with earlier)</td>
  2166. </tr>
  2167. <tr>
  2168. <th>URL:</th>
  2169. <td><a href="http://mseries.sourceforge.net">http://mseries.sourceforge.net</a></td>
  2170. </tr>
  2171. <tr>
  2172. <th>Contact:</th>
  2173. <td><a href="http://web.ukonline.co.uk/mseries/contact.html">MSeries</a></td>
  2174. </tr>
  2175. <tr>
  2176. <th>License:</th>
  2177. <td>LGPL</td>
  2178. </tr>
  2179. </table>
  2180. </subsection>
  2181. <subsection name="ProGuard">
  2182. <p><a href="http://proguard.sourceforge.net/">ProGuard</a> is
  2183. a free Java class file shrinker and obfuscator. It can detect
  2184. and remove unused classes, fields, methods, and attributes. It
  2185. can then rename the remaining classes, fields, and methods
  2186. using short meaningless names.</p>
  2187. <table class="externals">
  2188. <tr>
  2189. <th>Compatibility:</th>
  2190. <td>Tested with 1.5. Should work with all versions.</td>
  2191. </tr>
  2192. <tr>
  2193. <th>URL:</th>
  2194. <td>
  2195. <a href="http://proguard.sourceforge.net/">http://proguard.sourceforge.net/</a>
  2196. </td>
  2197. </tr>
  2198. <tr>
  2199. <th>Contact:</th>
  2200. <td>
  2201. <a href="http://proguard.sourceforge.net/feedback.html">Feedback Page</a>
  2202. </td>
  2203. </tr>
  2204. <tr>
  2205. <th>License:</th>
  2206. <td>GNU General Public License</td>
  2207. </tr>
  2208. </table>
  2209. </subsection>
  2210. <subsection name="properties2java">
  2211. <p>Properties2Java is an Ant task for automatic conversion of
  2212. java ".properties" files to ".java" files extending the
  2213. java.util.ListResourceBundle.</p>
  2214. <table class="externals">
  2215. <tr>
  2216. <th>Compatibility:</th>
  2217. <td>Ant 1.6 or above</td>
  2218. </tr>
  2219. <tr>
  2220. <th>URL:</th>
  2221. <td><a href="http://properties2java.jayefem.de/">http://properties2java.jayefem.de/</a></td>
  2222. </tr>
  2223. <tr>
  2224. <th>Contact:</th>
  2225. <td><a href="mailto:properties2java@jayefem.de">Jan-Friedrich Mutter</a></td>
  2226. </tr>
  2227. <tr>
  2228. <th>License:</th>
  2229. <td>Apache Software License 2.0</td>
  2230. </tr>
  2231. </table>
  2232. </subsection>
  2233. <subsection name="Purge">
  2234. <p>Purge deletes all but the most recent few files from a fileset.
  2235. For example: if you have generated files (logs, .ear, .war, .jar
  2236. etc) accumulating in a directory, the purge task will allow you
  2237. to delete the older files, keeping just the most recent ones.</p>
  2238. <table class="externals">
  2239. <tr>
  2240. <th>Compatibility:</th>
  2241. <td>Ant 1.4 or above</td>
  2242. </tr>
  2243. <tr>
  2244. <th>URL:</th>
  2245. <td><a href="http://www.dallaway.com/ant/">http://www.dallaway.com/ant/</a></td>
  2246. </tr>
  2247. <tr>
  2248. <th>Contact:</th>
  2249. <td><a href="mailto:purge@dallaway.com">Richard Dallaway</a></td>
  2250. </tr>
  2251. <tr>
  2252. <th>License:</th>
  2253. <td>LGPL</td>
  2254. </tr>
  2255. </table>
  2256. </subsection>
  2257. <subsection name="RefactorIT">
  2258. <p>RefactorIT includes an Ant task for metrics and audits.
  2259. RefactorIT is a Java refactoring, audit and metrics tool.
  2260. It plugs into major Java IDEs, also runs stand-alone with
  2261. a GUI and a command line interface.</p>
  2262. <table class="externals">
  2263. <tr>
  2264. <th>Compatibility:</th>
  2265. <td>Ant 1.5 and later</td>
  2266. </tr>
  2267. <tr>
  2268. <th>URL:</th>
  2269. <td><a href="http://www.refactorit.com/">http://www.refactorit.com/</a></td>
  2270. </tr>
  2271. <tr>
  2272. <th>Contact:</th>
  2273. <td><a href="mailto:support@refactorit.com">support@refactorit.com</a></td>
  2274. </tr>
  2275. <tr>
  2276. <th>License:</th>
  2277. <td>Commercial. (Free for accredited open source products, see
  2278. <a href="http://www.refactorit.com/osc">http://www.refactorit.com/osc</a>.)</td>
  2279. </tr>
  2280. </table>
  2281. </subsection>
  2282. <subsection name="Reflectant Task">
  2283. <p>This is a task for reflection invocation from within ant build file.</p>
  2284. <table class="externals">
  2285. <tr>
  2286. <th>Compatibility:</th>
  2287. <td>Ant 1.5 or above</td>
  2288. </tr>
  2289. <tr>
  2290. <th>URL:</th>
  2291. <td><a href="http://sourceforge.net/projects/reflectant/">http://sourceforge.net/projects/reflectant/</a></td>
  2292. </tr>
  2293. <tr>
  2294. <th>Contact:</th>
  2295. <td><a href="mailto:sv_ant@mail.bg">sv_ant@mail.bg</a></td>
  2296. </tr>
  2297. <tr>
  2298. <th>License:</th>
  2299. <td>The Apache Software License</td>
  2300. </tr>
  2301. </table>
  2302. </subsection>
  2303. <subsection name="rundoc">
  2304. <p>A task designed to help with the single-sourcing of program
  2305. documentation. Rundoc replaces special commands
  2306. (in the format <i>@@rundoc:command param1 param2...@@</i>) embedded
  2307. within text files with their output in a
  2308. specified format. Currently, only Docbook format is supported.</p>
  2309. <p>Rundoc was written to keep sample code output in program
  2310. documentation synchronized with the actual output
  2311. of the current code, by running the referenced code when the
  2312. documentation is built.</p>
  2313. <table class="externals">
  2314. <tr>
  2315. <th>Compatibility:</th>
  2316. <td>Tested with 1.6 Should work with all versions.</td>
  2317. </tr>
  2318. <tr>
  2319. <th>URL:</th>
  2320. <td><a href="http://www.martiansoftware.com/lab/index.html#rundoc">http://www.martiansoftware.com/lab/index.html#rundoc</a></td>
  2321. </tr>
  2322. <tr>
  2323. <th>Contact:</th>
  2324. <td><a href="http://www.martiansoftware.com/contact.html">Marty Lamb</a></td>
  2325. </tr>
  2326. <tr>
  2327. <th>License:</th>
  2328. <td>Revised BSD</td>
  2329. </tr>
  2330. </table>
  2331. </subsection>
  2332. <subsection name="SerialVer">
  2333. <p>SerialVer adds the Java serialver functionality to Apache
  2334. Ant. This project adds Tasks and FilterReaders to get, to
  2335. insert and to modify the serialVersionUID in the source code
  2336. of a serializable class.</p>
  2337. <table class="externals">
  2338. <tr>
  2339. <th>Compatibility:</th>
  2340. <td>Ant 1.5.1 and later</td>
  2341. </tr>
  2342. <tr>
  2343. <th>URL:</th>
  2344. <td><a href="http://serialver.sourceforge.net/">http://serialver.sourceforge.net/</a></td>
  2345. </tr>
  2346. <tr>
  2347. <th>Contact:</th>
  2348. <td><a href="https://lists.sourceforge.net/lists/listinfo/serialver-development">developer mailing list</a></td>
  2349. </tr>
  2350. <tr>
  2351. <th>License:</th>
  2352. <td>Apache Software License</td>
  2353. </tr>
  2354. </table>
  2355. </subsection>
  2356. <subsection name="Simian">
  2357. <p>Simian (Similarity Analyser) identifies duplication in Java,
  2358. C#, C, CPP, COBOL, JSP, HTML source code and even plain text files.</p>
  2359. <table class="externals">
  2360. <tr>
  2361. <th>Compatibility:</th>
  2362. <td>Ant 1.5.1 and later</td>
  2363. </tr>
  2364. <tr>
  2365. <th>URL:</th>
  2366. <td><a href="http://www.redhillconsulting.com.au/products/simian/">
  2367. http://www.redhillconsulting.com.au/products/simian/</a></td>
  2368. </tr>
  2369. <tr>
  2370. <th>Contact:</th>
  2371. <td><a href="mailto:simian-user-subscribe@redhillconsulting.com.au">
  2372. simian-user-subscribe@redhillconsulting.com.au (User Mailinglist)
  2373. </a></td>
  2374. </tr>
  2375. <tr>
  2376. <th>License:</th>
  2377. <td>Commercial, Free Licenses available for Non-Commercial Projects</td>
  2378. </tr>
  2379. </table>
  2380. </subsection>
  2381. <subsection name="SmartAnalyzer">
  2382. <p>Powerful analysis of dependencies between Java classes.
  2383. Only affected classes will be recompiled and it can be used
  2384. with any bytecode compiler.</p>
  2385. <table class="externals">
  2386. <tr>
  2387. <th>Compatibility:</th>
  2388. <td>Apache Ant version 1.5.1</td>
  2389. </tr>
  2390. <tr>
  2391. <th>URL:</th>
  2392. <td><a href="http://smartanalyzer.sourceforge.net/">http://smartanalyzer.sourceforge.net/</a></td>
  2393. </tr>
  2394. <tr>
  2395. <th>Contact:</th>
  2396. <td><a href="http://sourceforge.net/projects/smartanalyzer">support at sourceforge project page</a></td>
  2397. </tr>
  2398. <tr>
  2399. <th>License:</th>
  2400. <td>GNU General Public Licence (GPL)</td>
  2401. </tr>
  2402. </table>
  2403. </subsection>
  2404. <subsection name="snip">
  2405. <p>A task designed to help with the single-sourcing of program documentation.
  2406. Snip extracts snippets of text from files, placing them into properties in the Ant project.
  2407. These properties can then be used by any other Ant task, and are particularly useful when
  2408. referenced by &lt;filter&gt;s within the &lt;copy&gt; task.</p>
  2409. <p>Snip was originally written to keep snippets of sample code in API documentation synchronized
  2410. with the actual sample classes.</p>
  2411. <table class="externals">
  2412. <tr>
  2413. <th>Compatibility:</th>
  2414. <td>Tested with 1.5.1. Should work with all versions.</td>
  2415. </tr>
  2416. <tr>
  2417. <th>URL:</th>
  2418. <td><a href="http://www.martiansoftware.com/lab/index.html#snip">http://www.martiansoftware.com/lab/index.html#snip</a></td>
  2419. </tr>
  2420. <tr>
  2421. <th>Contact:</th>
  2422. <td><a href="http://www.martiansoftware.com/contact.html">Marty Lamb</a></td>
  2423. </tr>
  2424. <tr>
  2425. <th>License:</th>
  2426. <td>Revised BSD</td>
  2427. </tr>
  2428. </table>
  2429. </subsection>
  2430. <subsection name="SQL Compiler (SQLC)">
  2431. <p>SQL Compiler (SQLC) compiles database metadata and SQL statements into data access and data transfer classes.</p>
  2432. <table class="externals">
  2433. <tr>
  2434. <th>Compatibility:</th>
  2435. <td>Tested with Ant 1.5.4 and 1.6.5</td>
  2436. </tr>
  2437. <tr>
  2438. <th>URL:</th>
  2439. <td><a href="http://www.hammurapi.biz/products/sqlc">http://www.hammurapi.biz/products/sqlc</a></td>
  2440. </tr>
  2441. <tr>
  2442. <th>Contact:</th>
  2443. <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/contact.html">Project Contact Page</a></td>
  2444. </tr>
  2445. <tr>
  2446. <th>License:</th>
  2447. <td>LGPL</td>
  2448. </tr>
  2449. </table>
  2450. </subsection>
  2451. <subsection name="SQLUnit">
  2452. <p>SQLUnit is a regression and unit testing harness for testing
  2453. database stored procedures. The test suite is written as an XML file.
  2454. The SQLUnit harness itself is written in Java and uses the JUnit unit
  2455. testing framework to convert the XML test specifications to JDBC calls
  2456. and compare the results generated from the calls with the specified
  2457. results. It also provides the &lt;sqlunit&gt; task to run the tests
  2458. from a build script.</p>
  2459. <table class="externals">
  2460. <tr>
  2461. <th>Compatibility:</th>
  2462. <td>Tested with Ant 1.6</td>
  2463. </tr>
  2464. <tr>
  2465. <th>URL:</th>
  2466. <td><a href="http://sqlunit.sourceforge.net">http://sqlunit.sourceforge.net</a></td>
  2467. </tr>
  2468. <tr>
  2469. <th>Contact:</th>
  2470. <td><a href="http://sourceforge.net/forum/?group_id=77832">Project forums</a></td>
  2471. </tr>
  2472. <tr>
  2473. <th>License:</th>
  2474. <td>GNU General Public License (GPL)</td>
  2475. </tr>
  2476. </table>
  2477. </subsection>
  2478. <subsection name="Styler">
  2479. <p>The styler task makes useful combinations of XSLT transformations
  2480. easy to specify in an Ant build file. Like the built-in Ant task
  2481. style, styler can apply a single transformation to a set of XML files.
  2482. But it can also:</p>
  2483. <ul>
  2484. <li>handle multiple transformations, in parallel or pipelined.</li>
  2485. <li>enable transformations that split or merge files</li>
  2486. <li>process non-XML files, especially HTML (based on JTidy)</li>
  2487. <li>apply non-XSLT transformation, especially "regular
  2488. fragmentations"</li>
  2489. <li>use any custom XMLReader or XMLFilter class to handle new file
  2490. formats and transformation techniques.</li>
  2491. </ul>
  2492. <table class="externals">
  2493. <tr>
  2494. <th>Compatibility:</th>
  2495. <td>Ant 1.4</td>
  2496. </tr>
  2497. <tr>
  2498. <th>URL:</th>
  2499. <td><a href="http://www.langdale.com.au/styler/">http://www.langdale.com.au/styler/</a></td>
  2500. </tr>
  2501. <tr>
  2502. <th>Contact:</th>
  2503. <td><a href="mailto:adv@langdale.com.au">Arnold deVos</a></td>
  2504. </tr>
  2505. <tr>
  2506. <th>License:</th>
  2507. <td>LGPL</td>
  2508. </tr>
  2509. </table>
  2510. </subsection>
  2511. <subsection name="Syntax">
  2512. <p>Transforms source files into HTML documents with syntax
  2513. highlighting. It can handle a variety of source files
  2514. including Java, HTML, C/C++, SQL, and Java properties. Colors
  2515. for elements are specified using cascading style sheets. The
  2516. output can be templated for easy integration with a site's
  2517. look and feel.</p>
  2518. <table class="externals">
  2519. <tr>
  2520. <th>Compatibility:</th>
  2521. <td>Ant 1.5</td>
  2522. </tr>
  2523. <tr>
  2524. <th>URL:</th>
  2525. <td><a href="http://ostermiller.org/syntax/ant.html">http://ostermiller.org/syntax/ant.html</a></td>
  2526. </tr>
  2527. <tr>
  2528. <th>Contact:</th>
  2529. <td><a href="http://ostermiller.org/contact.pl?regarding=Syntax+Highlighting">Stephen Ostermiller</a></td>
  2530. </tr>
  2531. <tr>
  2532. <th>License:</th>
  2533. <td>GNU General Public License (GPL)</td>
  2534. </tr>
  2535. </table>
  2536. </subsection>
  2537. <subsection name="TestSetGenerator">
  2538. <p>The TestSetGenerator is an ant task for generating property files with
  2539. testsets based on the results of SQL queries and validation plug-ins. Very
  2540. usefull when building unit tests that make use of changing datasets. This
  2541. task is an extension of the Ant SQL task. Hsqldb is used for both the
  2542. examples and the unittests.</p>
  2543. <table class="externals">
  2544. <tr>
  2545. <th>Compatibility:</th>
  2546. <td>ANT 1.4 (or later)</td>
  2547. </tr>
  2548. <tr>
  2549. <th>URL:</th>
  2550. <td><a href="http://anttestsetgen.sourceforge.net/">http://anttestsetgen.sourceforge.net/</a></td>
  2551. </tr>
  2552. <tr>
  2553. <th>Contact:</th>
  2554. <td><a href="mailto:m.c.jansen@planet.nl">m.c.jansen@planet.nl</a></td>
  2555. </tr>
  2556. <tr>
  2557. <th>License:</th>
  2558. <td>GPL</td>
  2559. </tr>
  2560. </table>
  2561. </subsection>
  2562. <subsection name="Tidy Imports (Tim)">
  2563. <p>Tim is a handy utility that can be executed on the command
  2564. line or via Ant that automatically formats your import
  2565. declarations. Tim is capable of removing unused imports,
  2566. expanding or collapsing imports and even organising them into
  2567. pre-determined groups.</p>
  2568. <table class="externals">
  2569. <tr>
  2570. <th>Compatibility:</th>
  2571. <td>Ant 1.3 and later</td>
  2572. </tr>
  2573. <tr>
  2574. <th>URL:</th>
  2575. <td><a href="http://www.chive.com/tim.htm">http://www.chive.com/tim.htm</a></td>
  2576. </tr>
  2577. <tr>
  2578. <th>Contact:</th>
  2579. <td><a href="mailto:support@chive.com">support@chive.com</a></td>
  2580. </tr>
  2581. <tr>
  2582. <th>License:</th>
  2583. <td>Commercial</td>
  2584. </tr>
  2585. </table>
  2586. </subsection>
  2587. <subsection name="TiniAnt">
  2588. <p>TiniAnt is an Ant task to support building applications for
  2589. the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>
  2590. <table class="externals">
  2591. <tr>
  2592. <th>Compatibility:</th>
  2593. <td>Ant 1.2 to 1.4.1</td>
  2594. </tr>
  2595. <tr>
  2596. <th>URL:</th>
  2597. <td><a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a></td>
  2598. </tr>
  2599. <tr>
  2600. <th>Contact:</th>
  2601. <td><a href="mailto:kelly@ad1440.net">Sean Kelly</a></td>
  2602. </tr>
  2603. <tr>
  2604. <th>License:</th>
  2605. <td>BSD-like license</td>
  2606. </tr>
  2607. </table>
  2608. </subsection>
  2609. <subsection name="Transformica">
  2610. <p>Transformica is a versatile and extensible code generator.
  2611. Supports multiple source models including database metadata, Java source files, grammar
  2612. files and custom models.
  2613. </p>
  2614. <table class="externals">
  2615. <tr>
  2616. <th>Compatibility:</th>
  2617. <td>Tested with Ant 1.5.x and 1.6.5</td>
  2618. </tr>
  2619. <tr>
  2620. <th>URL:</th>
  2621. <td><a href="http://www.hammurapi.biz/products/transformica">http://www.hammurapi.biz/products/transformica</a></td>
  2622. </tr>
  2623. <tr>
  2624. <th>Contact:</th>
  2625. <td><a href="http://www.hammurapi.biz/hammurapi-biz/ef/xmenu/contact.html">Project Contact Page</a></td>
  2626. </tr>
  2627. <tr>
  2628. <th>License:</th>
  2629. <td>LGPL</td>
  2630. </tr>
  2631. </table>
  2632. </subsection>
  2633. <subsection name="Venus Application Publisher's (Vamp) Ant Task Suite">
  2634. <p>Venus Application Publisher's (Vamp) Ant Task Suite allows
  2635. you to sign and package your applications into relocatable Web
  2636. Archives that you can drop into your web server for
  2637. single-click launching using Java Web Start or into single
  2638. Java Archive installers that serve up their content through a
  2639. built-in, multi-threaded, ultra light-weight web server.</p>
  2640. <table class="externals">
  2641. <tr>
  2642. <th>Compatibility:</th>
  2643. <td>Ant 1.2 and 1.3</td>
  2644. </tr>
  2645. <tr>
  2646. <th>URL:</th>
  2647. <td><a href="http://www.geocities.com/vamp201/ant.html">http://www.geocities.com/vamp201/ant.html</a></td>
  2648. </tr>
  2649. <tr>
  2650. <th>Contact:</th>
  2651. <td><a href="mailto:vamp201@yahoo.com">Gerald Bauer</a></td>
  2652. </tr>
  2653. <tr>
  2654. <th>License:</th>
  2655. <td>GNU General Public License</td>
  2656. </tr>
  2657. </table>
  2658. </subsection>
  2659. <subsection name="Version_Tool">
  2660. <p>A versioning tool for Ant.</p>
  2661. <table class="externals">
  2662. <tr>
  2663. <th>Compatibility:</th>
  2664. <td>Ant 1.5.1</td>
  2665. </tr>
  2666. <tr>
  2667. <th>URL:</th>
  2668. <td><a href="http://ant.ryangrier.com/">http://ant.ryangrier.com/</a></td>
  2669. </tr>
  2670. <tr>
  2671. <th>Contact:</th>
  2672. <td><a href="mailto:version_tool@ryangrier.com">version_tool@ryangrier.com</a></td>
  2673. </tr>
  2674. <tr>
  2675. <th>License:</th>
  2676. <td>BSD license</td>
  2677. </tr>
  2678. </table>
  2679. </subsection>
  2680. <subsection name="VPP">
  2681. <p>VPP provides general file preprocessing support based on
  2682. the Velocity Template Engine. The core functionality is
  2683. provided as a filter for use with tasks that supports filter
  2684. chains. Also included are replacement tasks for &lt;copy&gt; and
  2685. &lt;javac&gt; that integrate support for preprocessing.</p>
  2686. <table class="externals">
  2687. <tr>
  2688. <th>Compatibility:</th>
  2689. <td>1.5.1 and above</td>
  2690. </tr>
  2691. <tr>
  2692. <th>URL:</th>
  2693. <td><a href="http://vpp.sourceforge.net/">http://vpp.sourceforge.net/</a></td>
  2694. </tr>
  2695. <tr>
  2696. <th>Contact:</th>
  2697. <td><a href="mailto:vpp-user@lists.sourceforge.net">vpp-user@lists.sourceforge.net</a></td>
  2698. </tr>
  2699. <tr>
  2700. <th>License:</th>
  2701. <td>BSD license</td>
  2702. </tr>
  2703. </table>
  2704. </subsection>
  2705. <subsection name="WOProject">
  2706. <p>WOProject provides a set of tools to work with
  2707. <a href="http://webobjects.com/">WebObjects 5.1</a>
  2708. independent from platform and IDE. It significantly
  2709. improves developer productivity
  2710. and makes complex project structures more flexible compared to
  2711. traditional Makefile-based approach.
  2712. </p>
  2713. <table class="externals">
  2714. <tr>
  2715. <th>Compatibility:</th>
  2716. <td>Ant 1.4</td>
  2717. </tr>
  2718. <tr>
  2719. <th>URL:</th>
  2720. <td><a href="http://objectstyle.org/woproject/">http://objectstyle.org/woproject/</a></td>
  2721. </tr>
  2722. <tr>
  2723. <th>Contact:</th>
  2724. <td><a href="mailto:andrus@objectstyle.org">Andrus Adamchik</a></td>
  2725. </tr>
  2726. <tr>
  2727. <th>License:</th>
  2728. <td>Apache license</td>
  2729. </tr>
  2730. </table>
  2731. </subsection>
  2732. <subsection name="WSDLValidate">
  2733. <p>WSDLValidate is, as it sounds, a tool to validate WSDL files.
  2734. <a href="http://dev.eclipse.org/viewcvs/indextech.cgi/~checkout~/wsvt-home/docs/articles/wsdl20Validator/wsdlvalidateant.html">WSDLValidate</a>
  2735. is similar in configuration to the optional Ant task <a href="http://ant.apache.org/manual/OptionalTasks/xmlvalidate.html">XMLValidate</a>.
  2736. WSDLValidate can optionally validate a WSDL document against the <a href="http://www.ws-i.org">WS-I Basic Profile</a>.
  2737. </p>
  2738. <p>WSDLValidate is available as an Ant task, an Eclipse plug-in and a
  2739. command line utility.</p>
  2740. <table class="externals">
  2741. <tr>
  2742. <th>Compatibility:</th>
  2743. <td>Ant 1.5 or later</td>
  2744. </tr>
  2745. <tr>
  2746. <th>URL:</th>
  2747. <td><a href="http://www.eclipse.org/wsvt">http://www.eclipse.org/wsvt</a></td>
  2748. </tr>
  2749. <tr>
  2750. <th>Contact:</th>
  2751. <td><a href="http://www.eclipse.org/wsvt">Project newsgroup and
  2752. mailing list</a></td>
  2753. </tr>
  2754. <tr>
  2755. <th>License:</th>
  2756. <td><a href="http://www-124.ibm.com/developerworks/oss/CPLv1.0.htm">Common Public
  2757. License (CPL)</a></td>
  2758. </tr>
  2759. </table>
  2760. </subsection>
  2761. <subsection name="Xcluder">
  2762. <p>xcluder is an XML Inclusions (XInclude) task for Apache Ant.
  2763. Offers the choice of using Xerces or Elliotte Rusty Harold's XOM API.
  2764. </p>
  2765. <table class="externals">
  2766. <tr>
  2767. <th>Compatibility:</th>
  2768. <td>Ant 1.4 or later. XInclude compliance depends on the
  2769. underlying Xerces or XOM used. Xerces 2.5.0 and above works fine,
  2770. but please note that 2.6.1 and 2.6.2 processed the
  2771. http://www.w3.org/2003/XInclude, now obsolete by
  2772. http://www.w3.org/2001/XInclude used by the latest
  2773. Candidate Recommendation (13 April 2004).
  2774. </td>
  2775. </tr>
  2776. <tr>
  2777. <th>URL:</th>
  2778. <td><a href="http://sourceforge.net/projects/xcluder">http://sourceforge.net/projects/xcluder</a></td>
  2779. </tr>
  2780. <tr>
  2781. <th>Contact:</th>
  2782. <td><a href="mailto:mbatsis@users.sf.net">mbatsis@users.sf.net</a></td>
  2783. </tr>
  2784. <tr>
  2785. <th>License:</th>
  2786. <td>GNU General Public License (GPL), GNU Library or Lesser
  2787. General Public License (LGPL)
  2788. </td>
  2789. </tr>
  2790. </table>
  2791. </subsection>
  2792. <subsection name="XDoclet">
  2793. <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
  2794. It lets you create custom Javadoc @tags and based on those tags
  2795. generates source code or other files (such as xml-ish deployment
  2796. descriptors). Templates and matching tasks are provided to generate
  2797. EJB and web application deployment descriptors.
  2798. </p>
  2799. <table class="externals">
  2800. <tr>
  2801. <th>Compatibility:</th>
  2802. <td>Ant 1.4</td>
  2803. </tr>
  2804. <tr>
  2805. <th>URL:</th>
  2806. <td><a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a></td>
  2807. </tr>
  2808. <tr>
  2809. <th>License:</th>
  2810. <td>BSD license</td>
  2811. </tr>
  2812. </table>
  2813. </subsection>
  2814. <subsection name="XInclude">
  2815. <p><a href="http://www.jeckle.de/freeStuff/xia/index.html">XInclude</a> is
  2816. a W3C standardized vocabulary for including arbitrary text or XML
  2817. documents in other XML documents. This task performes the inclusion
  2818. using an existing XInclude implementation</p>
  2819. <table class="externals">
  2820. <tr>
  2821. <th>Compatibility:</th>
  2822. <td>Ant 1.5.2</td>
  2823. </tr>
  2824. <tr>
  2825. <th>URL:</th>
  2826. <td>
  2827. <a href="http://www.jeckle.de/freeStuff/xia/index.html">http://www.jeckle.de/freeStuff/xia/index.html</a>
  2828. </td>
  2829. </tr>
  2830. <tr>
  2831. <th>Contact:</th>
  2832. <td><a href="mailto:mario@jeckle.de">mario@jeckle.de</a></td>
  2833. </tr>
  2834. <tr>
  2835. <th>License:</th>
  2836. <td>Lesser GNU Public License</td>
  2837. </tr>
  2838. </table>
  2839. </subsection>
  2840. <subsection name="XMLReleaseNotes (XRN)">
  2841. <p>This framework is a release notes framework that enables to
  2842. generate textual release notes from an XML file. This is an
  2843. open framework that enables to integrate the information
  2844. coming from VSC and bug tracking solutions, for instance.</p>
  2845. <table class="externals">
  2846. <tr>
  2847. <th>Compatibility:</th>
  2848. <td>Ant 1.5 and later</td>
  2849. </tr>
  2850. <tr>
  2851. <th>URL:</th>
  2852. <td><a href="http://xmlreleasenotes.free.fr/">http://xmlreleasenotes.free.fr/</a></td>
  2853. </tr>
  2854. <tr>
  2855. <th>Contact:</th>
  2856. <td>Edouard Mercier</td>
  2857. </tr>
  2858. <tr>
  2859. <th>License:</th>
  2860. <td>Apache Software License</td>
  2861. </tr>
  2862. </table>
  2863. </subsection>
  2864. <subsection name="XmlTask">
  2865. <p>XmlTask provides a simple means to modify XML documents
  2866. without having to learn XSLT. A simple path reference to an
  2867. XML node specifies the node you want to change, and how you
  2868. want to allow XML insertion and removal, or attribute
  2869. changes. The emphasis is on providing the simplest means to
  2870. perform common XML replacements</p>
  2871. <table class="externals">
  2872. <tr>
  2873. <th>Compatibility:</th>
  2874. <td>Ant 1.4 and later</td>
  2875. </tr>
  2876. <tr>
  2877. <th>URL:</th>
  2878. <td><a href="http://www.oopsconsultancy.com/software/xmltask/">http://www.oopsconsultancy.com/software/xmltask/</a></td>
  2879. </tr>
  2880. <tr>
  2881. <th>Contact:</th>
  2882. <td><a href="mailto:xmltask-users@lists.sourceforge.net">xmltask-users at lists.sourceforge.net</a> </td>
  2883. </tr>
  2884. <tr>
  2885. <th>License:</th>
  2886. <td>Apache Software License</td>
  2887. </tr>
  2888. </table>
  2889. </subsection>
  2890. <subsection name="yGuard">
  2891. <p>yGuard is a free Java(TM) Bytecode Obfuscator Task that
  2892. needs no external script or project files. It can completely
  2893. be configured and run through the Ant build script. The task
  2894. supports multiple Jar files at once and makes use of
  2895. patternsets and regular expressions to specify elements, which
  2896. should be left unobfuscated. Additionally it can be used to
  2897. produce patches for obfuscated applications that have already
  2898. been deployed.</p>
  2899. <table class="externals">
  2900. <tr>
  2901. <th>Compatibility:</th>
  2902. <td>Ant 1.5 and later</td>
  2903. </tr>
  2904. <tr>
  2905. <th>URL:</th>
  2906. <td><a href="http://www.yworks.com/en/products_yguard_about.htm">http://www.yworks.com/en/products_yguard_about.htm</a></td>
  2907. </tr>
  2908. <tr>
  2909. <th>Contact:</th>
  2910. <td><a href="mailto:yguard@yworks.com">yGuard@yWorks.com</a></td>
  2911. </tr>
  2912. <tr>
  2913. <th>License:</th>
  2914. <td>Library: LGPL, Task: Commercial</td>
  2915. </tr>
  2916. </table>
  2917. </subsection>
  2918. <subsection name="Zelix KlassMaster">
  2919. <p>The task ZKMTask allows the Zelix KlassMaster Java obfuscator to be integrated into an Ant build.</p>
  2920. <table class="externals">
  2921. <tr>
  2922. <th>Compatibility:</th>
  2923. <td>Ant 1.4.1 and later</td>
  2924. </tr>
  2925. <tr>
  2926. <th>URL:</th>
  2927. <td><a href="http://www.zelix.com/klassmaster/docs/buildToolApi.html">http://www.zelix.com/klassmaster/docs/buildToolApi.html</a></td>
  2928. </tr>
  2929. <tr>
  2930. <th>License:</th>
  2931. <td>Commercial</td>
  2932. </tr>
  2933. </table>
  2934. </subsection>
  2935. </section>
  2936. <section name="Compiler Implementations">
  2937. <subsection name="Generics (JSR14) Early-Access Compiler Adapter">
  2938. <p>This is an Ant compiler-adapter that allows you to use the
  2939. normal <code>&lt;javac&gt;</code> task plus Sun's early-access
  2940. compiler to compile Generics-enabled Java code. (This is only
  2941. necessary until JDK1.5 is released.)</p>
  2942. <table class="externals">
  2943. <tr>
  2944. <th>Compatibility:</th>
  2945. <td>Ant 1.5 and later</td>
  2946. </tr>
  2947. <tr>
  2948. <th>URL:</th>
  2949. <td><a href="http://www.madbean.com/blog/3/">http://www.madbean.com/blog/3/</a></td>
  2950. </tr>
  2951. <tr>
  2952. <th>Contact:</th>
  2953. <td>Matt Quail &lt;spud[at]madbean[dot]com&gt;</td>
  2954. </tr>
  2955. <tr>
  2956. <th>License:</th>
  2957. <td>Public Domain</td>
  2958. </tr>
  2959. </table>
  2960. </subsection>
  2961. <subsection name="miniRMI &lt;code&gt;&amp;lt;rmic&amp;gt;&lt;/code&gt; implementation">
  2962. <p>miniRMI is a freeware opensource library that serves as a
  2963. lightweight replacement for the original java.rmi packages and
  2964. is suitable especially for applets. Ant 1.4+
  2965. <code>&lt;rmic&gt;</code> adapter included.</p>
  2966. <table class="externals">
  2967. <tr>
  2968. <th>Compatibility:</th>
  2969. <td>Ant 1.4 and later</td>
  2970. </tr>
  2971. <tr>
  2972. <th>URL:</th>
  2973. <td><a href="http://dione.zcu.cz/~toman40/miniRMI/">http://dione.zcu.cz/~toman40/miniRMI/</a></td>
  2974. </tr>
  2975. <tr>
  2976. <th>Contact:</th>
  2977. <td><a href="mailto:Petr.Toman@pinknet.cz">Petr Toman</a></td>
  2978. </tr>
  2979. <tr>
  2980. <th>License:</th>
  2981. <td>Gnu Lesser Public License</td>
  2982. </tr>
  2983. </table>
  2984. </subsection>
  2985. </section>
  2986. <section name="IDE and Editor Integration">
  2987. <subsection name="AntFarm">
  2988. <p>A plugin that integrates Ant into the jEdit editor.</p>
  2989. <table class="externals">
  2990. <tr>
  2991. <th>Compatibility:</th>
  2992. <td>bundles Ant 1.5</td>
  2993. </tr>
  2994. <tr>
  2995. <th>URL:</th>
  2996. <td><a href="http://plugins.jedit.org/plugins/?AntFarm">http://plugins.jedit.org/plugins/?AntFarm</a></td>
  2997. </tr>
  2998. <tr>
  2999. <th>Contact:</th>
  3000. <td><a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</a></td>
  3001. </tr>
  3002. <tr>
  3003. <th>License:</th>
  3004. <td>Apache Software License</td>
  3005. </tr>
  3006. </table>
  3007. </subsection>
  3008. <subsection name="AntMan">
  3009. <p>An AddIn that integrates Ant with the JDeveloper IDE</p>
  3010. <table class="externals">
  3011. <tr>
  3012. <th>Compatibility:</th>
  3013. <td>Ant 1.4.1</td>
  3014. </tr>
  3015. <tr>
  3016. <th>URL:</th>
  3017. <td><a href="http://www.erudra.com/antman/index.html">http://www.erudra.com/antman/index.html</a></td>
  3018. </tr>
  3019. <tr>
  3020. <th>Contact:</th>
  3021. <td><a href="mailto:ashok@erudra.com">Ashok Sridhar</a></td>
  3022. </tr>
  3023. <tr>
  3024. <th>License:</th>
  3025. <td>GNU General Public License</td>
  3026. </tr>
  3027. </table>
  3028. </subsection>
  3029. <subsection name="AntRunner">
  3030. <p>An OpenTool that integrates Ant into the JBuilder IDE
  3031. (version 5 and later).</p>
  3032. <table class="externals">
  3033. <tr>
  3034. <th>Compatibility:</th>
  3035. <td>Ant 1.2 and later</td>
  3036. </tr>
  3037. <tr>
  3038. <th>URL:</th>
  3039. <td><a href="http://antrunner.sourceforge.net/">http://antrunner.sourceforge.net/</a></td>
  3040. </tr>
  3041. <tr>
  3042. <th>Contact:</th>
  3043. <td><a href="mailto:dirk.schnelle@web.de">Dirk Schnelle</a></td>
  3044. </tr>
  3045. <tr>
  3046. <th>License:</th>
  3047. <td>GNU General Public License</td>
  3048. </tr>
  3049. </table>
  3050. </subsection>
  3051. <subsection name="AntWork">
  3052. <p>A plugin that integrates Ant into the Jext editor.</p>
  3053. <table class="externals">
  3054. <tr>
  3055. <th>Compatibility:</th>
  3056. <td>Ant 1.2 and 1.3</td>
  3057. </tr>
  3058. <tr>
  3059. <th>URL:</th>
  3060. <td><a href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip</a></td>
  3061. </tr>
  3062. <tr>
  3063. <th>Contact:</th>
  3064. <td><a href="mailto:KHartlage@t-online.de">Klaus Hartlage</a></td>
  3065. </tr>
  3066. <tr>
  3067. <th>License:</th>
  3068. <td>GNU General Public License</td>
  3069. </tr>
  3070. </table>
  3071. </subsection>
  3072. <subsection name="Eclipse">
  3073. <p>Eclipse is a universal tool platform with Ant integration.</p>
  3074. <table class="externals">
  3075. <tr>
  3076. <th>Compatibility:</th>
  3077. <td>
  3078. Ant 1.3 - 1.4.1
  3079. Bundles Ant 1.6.2 as of Eclipse 3.0.1 (tested with Ant 1.5.4 - 1.6.2)
  3080. </td>
  3081. </tr>
  3082. <tr>
  3083. <th>URL:</th>
  3084. <td>
  3085. <a href="http://www.eclipse.org/">http://www.eclipse.org/</a>
  3086. or
  3087. <a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-ant-home/index.html">
  3088. http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/platform-ant-home/index.html
  3089. </a>
  3090. </td>
  3091. </tr>
  3092. <tr>
  3093. <th>Contact:</th>
  3094. <td><a href="news://news.eclipse.org/eclipse.platform">news://news.eclipse.org/eclipse.platform</a></td>
  3095. </tr>
  3096. <tr>
  3097. <th>License:</th>
  3098. <td>Common Public License Version 1.0</td>
  3099. </tr>
  3100. </table>
  3101. </subsection>
  3102. <subsection name="Gel">
  3103. <p>Java IDE with support for Ant. Gel is a native Microsoft
  3104. Windows software.</p>
  3105. <table class="externals">
  3106. <tr>
  3107. <th>Compatibility:</th>
  3108. <td>Ant 1.4 and above</td>
  3109. </tr>
  3110. <tr>
  3111. <th>URL:</th>
  3112. <td><a href="http://www.gexperts.com/gel.html">http://www.gexperts.com/gel.html</a></td>
  3113. </tr>
  3114. <tr>
  3115. <th>Contact:</th>
  3116. <td><a href="http://groups.yahoo.com/group/gelide/">Project Mailing List</a></td>
  3117. </tr>
  3118. <tr>
  3119. <th>License:</th>
  3120. <td>Freeware</td>
  3121. </tr>
  3122. </table>
  3123. </subsection>
  3124. <subsection name="IntelliJ IDEA 5.0">
  3125. <p>Java IDE with refactoring support and Ant integration.
  3126. The IDE has special editing and navigation support for Ant.
  3127. </p>
  3128. <table class="externals">
  3129. <tr>
  3130. <th>Compatibility:</th>
  3131. <td>bundles Ant 1.6.5</td>
  3132. </tr>
  3133. <tr>
  3134. <th>URL:</th>
  3135. <td><a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a></td>
  3136. </tr>
  3137. <tr>
  3138. <th>Contact:</th>
  3139. <td><a href="mailto:support@intellij.com">support@intellij.com</a></td>
  3140. </tr>
  3141. <tr>
  3142. <th>License:</th>
  3143. <td>Commercial; Academic and OpenSource licenses available.</td>
  3144. </tr>
  3145. </table>
  3146. </subsection>
  3147. <subsection name="JBuilder">
  3148. <p>Borland JBuilder
  3149. comes with built-in Ant support, including build file editing.
  3150. Some versions come with Ant debugging support.</p>
  3151. <table class="externals">
  3152. <tr>
  3153. <th>Compatibility:</th>
  3154. <td>Bundles Ant 1.6</td>
  3155. </tr>
  3156. <tr>
  3157. <th>URL:</th>
  3158. <td><a href="http://www.borland.com/jbuilder/index.html">http://www.borland.com/jbuilder/index.html</a></td>
  3159. </tr>
  3160. <tr>
  3161. <th>Contact:</th>
  3162. <td><a href="mailto:customer_service@borland.com">customer_service@borland.com</a></td>
  3163. </tr>
  3164. <tr>
  3165. <th>License:</th>
  3166. <td>Commercial; foundation edition is free.</td>
  3167. </tr>
  3168. </table>
  3169. </subsection>
  3170. <subsection name="JDEE">
  3171. <p>The Java Development Environment for Emacs (JDEE) supports
  3172. Apache Ant as one of three built-in ways to build your
  3173. applications.</p>
  3174. <table class="externals">
  3175. <tr>
  3176. <th>Compatibility:</th>
  3177. <td>Ant 1.2 and later</td>
  3178. </tr>
  3179. <tr>
  3180. <th>URL:</th>
  3181. <td><a href="http://jdee.sunsite.dk/">http://jdee.sunsite.dk/</a></td>
  3182. </tr>
  3183. <tr>
  3184. <th>Contact:</th>
  3185. <td><a href="mailto:jde-subscribe@sunsite.auc.dk">JDEE Mailing list.</a></td>
  3186. </tr>
  3187. <tr>
  3188. <th>License:</th>
  3189. <td>GNU General Public License</td>
  3190. </tr>
  3191. </table>
  3192. </subsection>
  3193. <subsection name="NetBeans">
  3194. <p>A module that integrates Ant into the NetBeans IDE, as well as derivative products such as Sun Java
  3195. Studio (formerly Forte for Java and Sun ONE Studio) and Sun Java Studio Creator.
  3196. This IDE uses Ant as its <i>sole</i> means of building applications,
  3197. with custom tasks and an Ant-aware editor.</p>
  3198. <table class="externals">
  3199. <tr>
  3200. <th>Compatibility:</th>
  3201. <td>bundles 1.6.5 for NetBeans 5.0 and 5.5</td>
  3202. </tr>
  3203. <tr>
  3204. <th>URL:</th>
  3205. <td><a href="http://ant.netbeans.org/">http://ant.netbeans.org/</a></td>
  3206. </tr>
  3207. <tr>
  3208. <th>Contact:</th>
  3209. <td><a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a></td>
  3210. </tr>
  3211. <tr>
  3212. <th>License:</th>
  3213. <td>Common Development and Distribution License</td>
  3214. </tr>
  3215. </table>
  3216. </subsection>
  3217. <subsection name="Optistic IDX Java IDE">
  3218. <p>Java IDE with deep Ant integration. IDX is a native Microsoft Windows program.</p>
  3219. <table class="externals">
  3220. <tr>
  3221. <th>Compatibility:</th>
  3222. <td>bundles Ant 1.6</td>
  3223. </tr>
  3224. <tr>
  3225. <th>URL:</th>
  3226. <td>
  3227. <a href="http://www.optistic.com/idx">http://optistic.com/idx</a>
  3228. </td>
  3229. </tr>
  3230. <tr>
  3231. <th>Contact:</th>
  3232. <td>
  3233. <a href="mailto:support@optistic.com">support@optistic.com</a>
  3234. </td>
  3235. </tr>
  3236. <tr>
  3237. <th>License:</th>
  3238. <td>Commercial; Academic and OpenSource licenses available.</td>
  3239. </tr>
  3240. </table>
  3241. </subsection>
  3242. <subsection name="Oracle9i JDeveloper">
  3243. <p>Java IDE with support for Ant.</p>
  3244. <table class="externals">
  3245. <tr>
  3246. <th>Compatibility:</th>
  3247. <td>Ant 1.5.1</td>
  3248. </tr>
  3249. <tr>
  3250. <th>URL:</th>
  3251. <td><a href="http://otn.oracle.com/products/jdev/">http://otn.oracle.com/products/jdev/</a></td>
  3252. </tr>
  3253. <tr>
  3254. <th>Contact:</th>
  3255. <td><a href="mailto:jdeveloperbeta_us@oracle.com">jdeveloperbeta_us@oracle.com</a></td>
  3256. </tr>
  3257. <tr>
  3258. <th>License:</th>
  3259. <td>Commercial</td>
  3260. </tr>
  3261. </table>
  3262. </subsection>
  3263. <subsection name="WebSphere Studio Application Developer">
  3264. <p>WSAD features Ant integrate by virtue of being built on the Eclipse tools platform.</p>
  3265. <table class="externals">
  3266. <tr>
  3267. <th>Compatibility:</th>
  3268. <td>bundles Ant 1.4.1</td>
  3269. </tr>
  3270. <tr>
  3271. <th>Article:</th>
  3272. <td><a href="http://www7b.software.ibm.com/wsdd/library/techarticles/0203_searle/searle1.html">Ant Integration Part1</a></td>
  3273. </tr>
  3274. <tr>
  3275. <th>License:</th>
  3276. <td>Commercial</td>
  3277. </tr>
  3278. </table>
  3279. </subsection>
  3280. </section>
  3281. <section name="Source Control Systems">
  3282. <p>There are several integration with SCM systems. Some are
  3283. <a href="manual/tasksoverview.html#scm">built in</a>. But some are available as
  3284. external libraries. Here a list of task libraries we are aware of:</p>
  3285. <subsection name="Surround SCM">
  3286. <p>These are tasks that allow users to access Surround SCM
  3287. functionality from within Ant build scripts.</p>
  3288. <table class="externals">
  3289. <tr>
  3290. <th>Compatibility:</th>
  3291. <td>Ant 1.5 and later</td>
  3292. </tr>
  3293. <tr>
  3294. <th>URL:</th>
  3295. <td><a href="http://www.seapine.com/scmresources.php#integration">
  3296. Surround SCM Resource Center</a></td>
  3297. </tr>
  3298. <tr>
  3299. <th>Contact:</th>
  3300. <td><a href="mailto:support@seapine.com">Seapine Support</a></td>
  3301. </tr>
  3302. <tr>
  3303. <th>License:</th>
  3304. <td>GNU Lesser General Public License</td>
  3305. </tr>
  3306. </table>
  3307. </subsection>
  3308. </section>
  3309. </body>
  3310. </document>