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

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