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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482
  1. <?xml version="1.0"?>
  2. <document>
  3. <properties>
  4. <author email="bodewig@apache.org">Stefan Bodewig</author>
  5. <title>External Tools and Tasks</title>
  6. </properties>
  7. <body>
  8. <section name="External Tools and Tasks">
  9. <p>This page lists external resources for Apache Ant: tasks, IDE
  10. integration tools, loggers, you name it. If you've written
  11. something that should be included, please post all relevant
  12. information to one of the mailing lists. For details, see the
  13. <a href="faq.html#adding-external-tasks">FAQ</a>.</p>
  14. <p>Nothing listed here is directly supported by the Ant
  15. developers, if you encounter any problems with them, please use
  16. the contact information.</p>
  17. </section>
  18. <section name="Tasks">
  19. <subsection name="AJC">
  20. <p><a href="http://aspectj.org">AspectJ</a> is an
  21. aspect-oriented extension to Java. This task compiles a
  22. source tree using the AspectJ compiler -- AJC.</p>
  23. <table>
  24. <tr>
  25. <th>Compatibility:</th>
  26. <td>Ant 1.3</td>
  27. </tr>
  28. <tr>
  29. <th>URL:</th>
  30. <td><a href="http://aspectj.org/dl">http://aspectj.org/dl</a></td>
  31. </tr>
  32. <tr>
  33. <th>Contact:</th>
  34. <td><a href="mailto:support@aspectj.org">support@aspectj.org</a></td>
  35. </tr>
  36. <tr>
  37. <th>License:</th>
  38. <td>Apache Software License</td>
  39. </tr>
  40. </table>
  41. </subsection>
  42. <subsection name="Anakia">
  43. <p>Actually, Anakia is more than just an Ant task, it is a an
  44. XML transformation tool based on JDOM, Velocity and Ant.</p>
  45. <table>
  46. <tr>
  47. <th>Compatibility:</th>
  48. <td>Ant 1.2 and later</td>
  49. </tr>
  50. <tr>
  51. <th>URL:</th>
  52. <td><a href="http://jakarta.apache.org/velocity/anakia.html">http://jakarta.apache.org/velocity/anakia.html</a></td>
  53. </tr>
  54. <tr>
  55. <th>Contact:</th>
  56. <td><a href="http://jakarta.apache.org/site/mail2.html">Velocity mailing lists</a></td>
  57. </tr>
  58. <tr>
  59. <th>License:</th>
  60. <td>Apache Software License</td>
  61. </tr>
  62. </table>
  63. </subsection>
  64. <subsection name="Anteater">
  65. <p>Anteater is a set of Ant tasks for the functional testing of websites
  66. and web services (functional testing being; hit a URL and ensure the
  67. response meets certain criteria). Can test HTTP params, response
  68. codes, XPath, regexp and Relax NG expressions. Includes HTML reporting
  69. (based on junitreport) and a hierarchical grouping system for quickly
  70. configuring large test scripts.
  71. </p>
  72. <table>
  73. <tr>
  74. <th>Compatibility:</th>
  75. <td>Ant 1.5 and later</td>
  76. </tr>
  77. <tr>
  78. <th>URL:</th>
  79. <td><a href="http://aft.sourceforge.net">http://aft.sourceforge.net</a></td>
  80. </tr>
  81. <tr>
  82. <th>Contact:</th>
  83. <td><a href="http://lists.sourceforge.net/lists/listinfo/aft-devel">developer
  84. mailing list</a></td>
  85. </tr>
  86. <tr>
  87. <th>License:</th>
  88. <td>Apache Software License</td>
  89. </tr>
  90. </table>
  91. </subsection>
  92. <subsection name="Checkstyle">
  93. <p>Checkstyle is a development tool to help programmers write
  94. Java code that adheres to a coding standard. Its purpose is to
  95. automate the process of checking Java code, and to spare
  96. humans of this boring (but important) task.</p>
  97. <p>Checkstyle can be run via an Ant task or a command line
  98. utility.</p>
  99. <table>
  100. <tr>
  101. <th>Compatibility:</th>
  102. <td>Ant 1.2 to 1.4.1</td>
  103. </tr>
  104. <tr>
  105. <th>URL:</th>
  106. <td><a href="http://checkstyle.sourceforge.net/">http://checkstyle.sourceforge.net/</a></td>
  107. </tr>
  108. <tr>
  109. <th>Contact:</th>
  110. <td><a href="mailto:checkstyle@puppycrawl.com">Oliver Burn</a></td>
  111. </tr>
  112. <tr>
  113. <th>License:</th>
  114. <td>Starting with release 2.0 the license is the GNU
  115. Lesser General Public License. Prior releases were under
  116. the GNU General Public License.</td>
  117. </tr>
  118. </table>
  119. </subsection>
  120. <subsection name="CleanImports">
  121. <p>Removes unneeded imports. Formats your import
  122. sections. Flags ambiguous imports.</p>
  123. <table>
  124. <tr>
  125. <th>Compatibility:</th>
  126. <td>Ant 1.3</td>
  127. </tr>
  128. <tr>
  129. <th>URL:</th>
  130. <td><a href="http://www.euronet.nl/users/tomb/cleanImports/index.html">http://www.euronet.nl/users/tomb/cleanImports/index.html</a></td>
  131. </tr>
  132. <tr>
  133. <th>Contact:</th>
  134. <td><a href="mailto:tomb@euronet.nl">Tom Brus</a></td>
  135. </tr>
  136. <tr>
  137. <th>License:</th>
  138. <td>Apache Software License</td>
  139. </tr>
  140. </table>
  141. </subsection>
  142. <subsection name="Clover">
  143. <p>Clover is an Ant-based Code Coverage tool. It can be used
  144. seamlessly with Ant-based projects. It provides method,
  145. statement, and branch coverage analysis, and has rich
  146. reporting in XML, HTML or via a Swing GUI.</p>
  147. <table>
  148. <tr>
  149. <th>Compatibility:</th>
  150. <td>Ant 1.4.1 or greater</td>
  151. </tr>
  152. <tr>
  153. <th>URL:</th>
  154. <td><a href="http://www.thecortex.net/clover">http://www.thecortex.net/clover</a></td>
  155. </tr>
  156. <tr>
  157. <th>Contact:</th>
  158. <td><a href="mailto:clover-support@cortexebusiness.com.au">clover-support@cortexebusiness.com.au</a></td>
  159. </tr>
  160. <tr>
  161. <th>License:</th>
  162. <td>Commercial, free licenses available for open source
  163. projects.</td>
  164. </tr>
  165. </table>
  166. </subsection>
  167. <subsection name="Configure">
  168. <p>Recursive build support (call ant on every package level,
  169. and only build files in that package or in that package and
  170. everything below) with seperation of source and output.</p>
  171. <p>The task generates build files in any subdirectory (except
  172. for CVS-directories) for you. Only place one build.xml file in
  173. the top and call target &apos;setup&apos; or
  174. &apos;rescan&apos;.</p>
  175. <table>
  176. <tr>
  177. <th>Compatibility:</th>
  178. <td>Ant 1.2 and 1.3</td>
  179. </tr>
  180. <tr>
  181. <th>URL:</th>
  182. <td><a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a></td>
  183. </tr>
  184. <tr>
  185. <th>Contact:</th>
  186. <td><a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a></td>
  187. </tr>
  188. <tr>
  189. <th>License:</th>
  190. <td>License derived from Apache Software License</td>
  191. </tr>
  192. </table>
  193. </subsection>
  194. <subsection name="CVSGrab">
  195. <p>A little CVS client that can be useful when people are
  196. behind corporate firewall that blocks any cvs
  197. communications. It uses the ViewCVS web interface to access
  198. the CVS repository via standard http, and downloads all the
  199. files present in it.</p>
  200. <p>It works from the command line or as an Ant task.</p>
  201. <table>
  202. <tr>
  203. <th>Compatibility:</th>
  204. <td>Ant 1.3 or higher</td>
  205. </tr>
  206. <tr>
  207. <th>URL:</th>
  208. <td><a href="http://cvsgrab.sourceforge.net/">http://cvsgrab.sourceforge.net/</a></td>
  209. </tr>
  210. <tr>
  211. <th>Contact:</th>
  212. <td><a href="mailto:cvsgrab-users@lists.sourceforge.net">CVSGrab
  213. user mailing list</a></td>
  214. </tr>
  215. <tr>
  216. <th>License:</th>
  217. <td>LGPL</td>
  218. </tr>
  219. </table>
  220. </subsection>
  221. <subsection name="Doxygen task">
  222. <p>There are two Ant tasks for running the Doxygen
  223. documentation system.</p>
  224. <table>
  225. <tr>
  226. <th>Compatibility:</th>
  227. <td>Ant 1.1 and later</td>
  228. </tr>
  229. <tr>
  230. <th>URL:</th>
  231. <td><a href="http://www.bgw.org/projects/java/ant/">http://www.bgw.org/projects/java/ant/</a></td>
  232. </tr>
  233. <tr>
  234. <th>Contact:</th>
  235. <td><a href="mailto:mortis@voicenet.com">Kyle R. Burton</a></td>
  236. </tr>
  237. <tr>
  238. <th>License:</th>
  239. <td>Apache Software Foundation License</td>
  240. </tr>
  241. </table>
  242. <p>and</p>
  243. <table>
  244. <tr>
  245. <th>Compatibility:</th>
  246. <td>Ant 1.5 and later</td>
  247. </tr>
  248. <tr>
  249. <th>URL:</th>
  250. <td><a href="http://ant-doxygen.sourceforge.net">http://ant-doxygen.sourceforge.net</a></td>
  251. </tr>
  252. <tr>
  253. <th>Contact:</th>
  254. <td><a href="mailto:akkumar@users.sourceforge.net">Karthik A Kumar</a></td>
  255. </tr>
  256. <tr>
  257. <th>License:</th>
  258. <td>Apache Software Foundation License</td>
  259. </tr>
  260. </table>
  261. </subsection>
  262. <subsection name="GenJar">
  263. <p>Builds a JAR file based on class dependencies rather than simply the contents of a directory</p>
  264. <table>
  265. <tr>
  266. <th>Compatibility:</th>
  267. <td>Ant 1.4 alpha (built after 2001/08/04) and later</td>
  268. </tr>
  269. <tr>
  270. <th>URL:</th>
  271. <td><a href="http://genjar.sourceforge.net/">http://genjar.sourceforge.net/</a></td>
  272. </tr>
  273. <tr>
  274. <th>Contact:</th>
  275. <td><a href="mailto:jesse_dev@yahoo.com">Jesse Stockall</a></td>
  276. </tr>
  277. <tr>
  278. <th>License:</th>
  279. <td>Apache Software Foundation License</td>
  280. </tr>
  281. </table>
  282. </subsection>
  283. <subsection name="Greebo">
  284. <p>Greebo is an Ant-task for downloading dependency files
  285. (currently only jars) from a network to a specified directory,
  286. much like Maven. It supports multiple local and remote
  287. repositories with either flat or maven-like structures. It can
  288. read the dependency list from a Maven project file, a
  289. maven-like dependency file, or directly from the build.xml
  290. file.</p>
  291. <table>
  292. <tr>
  293. <th>Compatibility:</th>
  294. <td>Ant 1.5</td>
  295. </tr>
  296. <tr>
  297. <th>URL:</th>
  298. <td><a href="http://www.discore.com/oz/new/index.htm">http://www.discore.com/oz/new/index.htm</a></td>
  299. </tr>
  300. <tr>
  301. <th>Contact:</th>
  302. <td><a href="mailto:ozbene@discore.com">Ozben Evren</a></td>
  303. </tr>
  304. <tr>
  305. <th>License:</th>
  306. <td>Apache Software License</td>
  307. </tr>
  308. </table>
  309. </subsection>
  310. <subsection name="Importscrubber">
  311. <p>Removes unnecessary import statements from a Java source code file.</p>
  312. <table>
  313. <tr>
  314. <th>Compatibility:</th>
  315. <td>Ant 1.3</td>
  316. </tr>
  317. <tr>
  318. <th>URL:</th>
  319. <td><a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a></td>
  320. </tr>
  321. <tr>
  322. <th>Contact:</th>
  323. <td><a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a></td>
  324. </tr>
  325. <tr>
  326. <th>License:</th>
  327. <td>LGPL</td>
  328. </tr>
  329. </table>
  330. </subsection>
  331. <subsection name="IsDirValidator">
  332. <p>Checks whether a given directory structure conforms to
  333. certain rules that are defined via nested elements of the
  334. task.</p>
  335. <table>
  336. <tr>
  337. <th>Compatibility:</th>
  338. <td>Ant 1.4</td>
  339. </tr>
  340. <tr>
  341. <th>URL:</th>
  342. <td><a href="http://isvalidator.sourceforge.net/en/isDirValidator.htm">http://isvalidator.sourceforge.net/en/isDirValidator.htm</a></td>
  343. </tr>
  344. <tr>
  345. <th>Contact:</th>
  346. <td><a href="mailto:news@inigoserrano.com">I&#xF1;igo Serrano</a></td>
  347. </tr>
  348. <tr>
  349. <th>License:</th>
  350. <td>GNU General Public License</td>
  351. </tr>
  352. </table>
  353. </subsection>
  354. <subsection name="J2ME Ant Tasks">
  355. <p>There are three different sets of tasks to help build <a
  356. href="http://java.sun.com/j2me/">Java 2 Platform, Micro
  357. Edition</a> (J2ME) applications.</p>
  358. <p>This set supports CLDC and the K Virtual Machine (KVM):</p>
  359. <table>
  360. <tr>
  361. <th>Compatibility:</th>
  362. <td>Ant 1.3</td>
  363. </tr>
  364. <tr>
  365. <th>URL:</th>
  366. <td><a href="http://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a></td>
  367. </tr>
  368. <tr>
  369. <th>Contact:</th>
  370. <td><a href="mailto:drib@enteract.com">Dave Dribin</a></td>
  371. </tr>
  372. <tr>
  373. <th>License:</th>
  374. <td>Apache Software License</td>
  375. </tr>
  376. </table>
  377. <p>And this set works with the J2ME Wireless Toolkit and MIDP
  378. for PalmOS:</p>
  379. <table>
  380. <tr>
  381. <th>Compatibility:</th>
  382. <td>Ant 1.3</td>
  383. </tr>
  384. <tr>
  385. <th>URL:</th>
  386. <td><a href="http://www.stampysoft.com/ant/">http://www.stampysoft.com/ant/</a></td>
  387. </tr>
  388. <tr>
  389. <th>Contact:</th>
  390. <td><a href="mailto:jeckels@stampysoft.com">Josh Eckels</a></td>
  391. </tr>
  392. <tr>
  393. <th>License:</th>
  394. <td>MIT License</td>
  395. </tr>
  396. </table>
  397. <p>With Antenna, you can compile, preverify, package, and
  398. obfuscate your MIDP applications, as well as convert them to
  399. PRC files designed to run on MIDP for PalmOS. The tasks are
  400. mostly built around the Wireless Toolkit and the free
  401. RetroGuard obfuscator, with some additional gimmicks like
  402. automatic version numbering.</p>
  403. <table>
  404. <tr>
  405. <th>Compatibility:</th>
  406. <td>Ant 1.4.1 or later</td>
  407. </tr>
  408. <tr>
  409. <th>URL:</th>
  410. <td><a href="http://antenna.sourceforge.net/">http://antenna.sourceforge.net/</a></td>
  411. </tr>
  412. <tr>
  413. <th>Contact:</th>
  414. <td><a href="mailto:joerg@pleumann.de">J&#xF6;rg Pleumann</a></td>
  415. </tr>
  416. <tr>
  417. <th>License:</th>
  418. <td>GNU Lesser General Public License</td>
  419. </tr>
  420. </table>
  421. </subsection>
  422. <subsection name="Jalopy">
  423. <p>An Ant Plug-in for the Java Source Code Formatter
  424. Jalopy.</p>
  425. <table>
  426. <tr>
  427. <th>Compatibility:</th>
  428. <td>Ant 1.4 (or higher)</td>
  429. </tr>
  430. <tr>
  431. <th>URL:</th>
  432. <td><a href="http://jalopy.sourceforge.net">http://jalopy.sourceforge.net</a></td>
  433. </tr>
  434. <tr>
  435. <th>Contact:</th>
  436. <td><a href="http://jalopy.sf.net/contact.html">http://jalopy.sf.net/contact.html</a></td>
  437. </tr>
  438. <tr>
  439. <th>License:</th>
  440. <td>Starting with release 1.0 Beta 6 the license is the
  441. BSD License. Prior releases were under the GNU General
  442. Public License.</td>
  443. </tr>
  444. </table>
  445. </subsection>
  446. <subsection name="Java+ Precompile Task">
  447. <p>Java+ is an open source Java preprocessorthat adds these
  448. features to any Java compiler:</p>
  449. <ul>
  450. <li>Multi-line strings with executable inclusions like Perl
  451. and Ruby. It eliminates the need for JSP or ASP and their
  452. need for Java compilers on deployment servers (a security
  453. concern) while adding no overhead in either space or
  454. time. </li>
  455. <li>Optionally supports localization by segregating Java+
  456. strings into ResourceBundle files with invarient keys based
  457. on the hash code of the strings's value. This is handled
  458. automatically and transparently; no intervention is
  459. required.</li>
  460. <li>Fast. Negligible impact on build times. By default,
  461. skips inputs whose outputs are up to date to avoid
  462. triggering recompilations.</li>
  463. <li>Pure Java code, portable to any platform, with
  464. graphical, shell and ant interfaces.</li>
  465. <li>Simple, general, recursive, digraph-driven string
  466. syntax. Digraph characters are user-selectable.</li>
  467. </ul>
  468. <table>
  469. <tr>
  470. <th>Compatibility:</th>
  471. <td>Ant 1.5.1</td>
  472. </tr>
  473. <tr>
  474. <th>URL:</th>
  475. <td><a href="http://virtualschool.edu/java+/">http://virtualschool.edu/java+/</a></td>
  476. </tr>
  477. <tr>
  478. <th>Contact:</th>
  479. <td><a href="mailto:bcox@virtualschool.edu">Brad Cox</a></td>
  480. </tr>
  481. <tr>
  482. <th>License:</th>
  483. <td>BSD-like License</td>
  484. </tr>
  485. </table>
  486. </subsection>
  487. <subsection name="Javamake">
  488. <p>A task to compile Java sources and manage class file
  489. dependencies. Functionality is equivalent to that of standard
  490. Javac and Depend tasks combined, with improved dependency
  491. checking.</p>
  492. <table>
  493. <tr>
  494. <th>Compatibility:</th>
  495. <td>Ant 1.4.1</td>
  496. </tr>
  497. <tr>
  498. <th>URL:</th>
  499. <td><a href="http://www.experimentalstuff.com/Technologies/JavaMake/index.html">http://www.experimentalstuff.com/Technologies/JavaMake/index.html</a></td>
  500. </tr>
  501. <tr>
  502. <th>Contact:</th>
  503. <td><a href="mailto:Mikhail.Dmitriev@eng.sun.com">Mikhail Dmitriev</a></td>
  504. </tr>
  505. <tr>
  506. <th>License:</th>
  507. <td>BSD-like License</td>
  508. </tr>
  509. </table>
  510. </subsection>
  511. <subsection name="javarec">
  512. <p>Ant tasks that generate record classes for VisualAge for
  513. Java from Cobol copy books.</p>
  514. <table>
  515. <tr>
  516. <th>Compatibility:</th>
  517. <td>Ant 1.4</td>
  518. </tr>
  519. <tr>
  520. <th>URL:</th>
  521. <td><a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a></td>
  522. </tr>
  523. <tr>
  524. <th>Contact:</th>
  525. <td><a href="mailto:pglezen@us.ibm.com">Paul Glezen</a></td>
  526. </tr>
  527. <tr>
  528. <th>License:</th>
  529. <td>Apache Software License</td>
  530. </tr>
  531. </table>
  532. </subsection>
  533. <subsection name="JCSC">
  534. <p>JCSC is a Java Coding Standard Checker which also features
  535. the generation of some code metrics. It is a command line tool
  536. with an Ant task to scan whole package trees. The result can
  537. viewed in an JavaDoc style web page.</p>
  538. <table>
  539. <tr>
  540. <th>Compatibility:</th>
  541. <td>Ant &gt;= 1.5</td>
  542. </tr>
  543. <tr>
  544. <th>URL:</th>
  545. <td><a href="http://jcsc.sourceforge.net/">http://jcsc.sourceforge.net/</a></td>
  546. </tr>
  547. <tr>
  548. <th>Contact:</th>
  549. <td><a href="mailto:rjocham72@netscape.net">Ralph Jocham</a></td>
  550. </tr>
  551. <tr>
  552. <th>License:</th>
  553. <td>GNU General Public License</td>
  554. </tr>
  555. </table>
  556. </subsection>
  557. <subsection name="Jing Task">
  558. <p> Validates XML files against the RELAX NG alternative to XML Schema.
  559. The Jing task for Ant allows you to efficiently validate
  560. multiple files against multiple RELAX NG patterns and integrate
  561. RELAX NG validation with other XML processing.</p>
  562. <table>
  563. <tr>
  564. <th>Compatibility:</th>
  565. <td>Ant 1.4 and later</td>
  566. </tr>
  567. <tr>
  568. <th>URL:</th>
  569. <td><a href="http://www.thaiopensource.com/relaxng/jing-ant.html">
  570. http://www.thaiopensource.com/relaxng/jing-ant.html</a></td>
  571. </tr>
  572. <tr>
  573. <th>License:</th>
  574. <td>BSD-like</td>
  575. </tr>
  576. </table>
  577. </subsection>
  578. <subsection name="jMetra">
  579. <p>jMetra is a tool for collecting code metrics across a
  580. project lifecycle and compiling the results into
  581. JavaDoc-styled documentation to analyze project metrics over
  582. time. jMetra is best utilized by integrating it with your
  583. project's scheduled build process.</p>
  584. <p>It works from the command line or using several provided
  585. Ant tasks.</p>
  586. <table>
  587. <tr>
  588. <th>Compatibility:</th>
  589. <td>Ant 1.4 and higher</td>
  590. </tr>
  591. <tr>
  592. <th>URL:</th>
  593. <td>
  594. <a href="http://www.jmetra.com/">http://www.jmetra.com/</a
  595. >
  596. </td>
  597. </tr>
  598. <tr>
  599. <th>Contact:</th>
  600. <td>
  601. <a href="mailto:tnewton@hypercisioninc.com">R Todd Newton
  602. </a>
  603. </td>
  604. </tr>
  605. <tr>
  606. <th>License:</th>
  607. <td>Commercial, free licenses for open source projects and
  608. evaluations.</td>
  609. </tr>
  610. </table>
  611. </subsection>
  612. <subsection name="JNI">
  613. <p>
  614. JNI is a free toolkit that makes easy work of
  615. integrating Java and C through the Java Native
  616. Interface (JNI). It includes a code generator that
  617. generates both Java "proxy" classes to access C
  618. "peer" classes, and C "proxy" classes to access
  619. Java "peer" classes or interfaces. It also
  620. includes a core library with a simplified JVM
  621. interface as well as "helper" classes to ease
  622. working with the JNI data types. The code
  623. generation is driven by an XML project file that
  624. can be created with the assistance of the GUI
  625. Project Manager. The code generation can be
  626. invoked either from Ant or from the
  627. GUI. Includes a comprehensive printable PDF User
  628. Guide and plenty of examples.</p>
  629. <table>
  630. <tr>
  631. <th>Compatibility:</th>
  632. <td>Ant 1.4</td>
  633. </tr>
  634. <tr>
  635. <th>URL:</th>
  636. <td><a href="http://jnipp.sf.net/">http://jnipp.sf.net/</a></td>
  637. </tr>
  638. <tr>
  639. <th>Contact:</th>
  640. <td><a href="mailto:ptrewhella@users.sf.net">Phillip E. Trewhella</a></td>
  641. </tr>
  642. <tr>
  643. <th>License:</th>
  644. <td>GNU LGPL</td>
  645. </tr>
  646. </table>
  647. </subsection>
  648. <subsection name="JRun Ant Tasks">
  649. <p>JRun 4 SP1 ships with lib/jrun-ant-tasks.jar, which defines
  650. three Ant tasks: jrun, jrunapp, and jrunjmx. Documentation
  651. for the tasks can be found in JRun under
  652. docs/ant/jrun.html.</p>
  653. <p>Note that the service pack must be installed on top of an
  654. existing JRun 4 installation.</p>
  655. <table>
  656. <tr>
  657. <th>Compatibility:</th>
  658. <td>Ant 1.4 or higher</td>
  659. </tr>
  660. <tr>
  661. <th>URL:</th>
  662. <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>
  663. </tr>
  664. <tr>
  665. <th>Contact:</th>
  666. <td><a href="mailto:bdeitte@macromedia.com">Brian Deitte</a></td>
  667. </tr>
  668. <tr>
  669. <th>License:</th>
  670. <td>Commercial</td>
  671. </tr>
  672. </table>
  673. </subsection>
  674. <subsection name="Macker">
  675. <p>A build-time architectural testing tool, designed
  676. to maintain clean layering / tiering / modularity.
  677. Macker works against compiled class files, checking
  678. dependencies between classes against a set of
  679. pattern-based access rules you specify for your
  680. project in an XML rules file. Macker doesn't presume
  681. anything about your architecture -- you write the
  682. rules, and Macker keeps you honest about them.</p>
  683. <table>
  684. <tr>
  685. <th>Compatibility:</th>
  686. <td>Ant 1.5 and higher (1.4 untested but may work)</td>
  687. </tr>
  688. <tr>
  689. <th>URL:</th>
  690. <td><a href="http://innig.net/macker/">http://innig.net/macker/</a></td>
  691. </tr>
  692. <tr>
  693. <th>Contact:</th>
  694. <td><a href="http://innig.net/macker/contact.html">Paul Cantrell</a></td>
  695. </tr>
  696. <tr>
  697. <th>License:</th>
  698. <td>GNU GPL 2.0</td>
  699. </tr>
  700. </table>
  701. </subsection>
  702. <subsection name="pack">
  703. <p>pack is a task to build the smallest possible JAR to link
  704. and run one or more classes.</p>
  705. <table>
  706. <tr>
  707. <th>Compatibility:</th>
  708. <td>Ant 1.5</td>
  709. </tr>
  710. <tr>
  711. <th>URL:</th>
  712. <td><a href="http://sadun-util.sourceforge.net/pack.html">http://sadun-util.sourceforge.net/pack.html</a></td>
  713. </tr>
  714. <tr>
  715. <th>Contact:</th>
  716. <td><a href="mailto:cristiano@xtractor.com">Cristiano Sadun</a></td>
  717. </tr>
  718. <tr>
  719. <th>License:</th>
  720. <td>GNU Lesser General Public License</td>
  721. </tr>
  722. </table>
  723. </subsection>
  724. <subsection name="PMD">
  725. <p>PMD checks Java source code for unused variables,
  726. unnecessary object creation, etc</p>
  727. <table>
  728. <tr>
  729. <th>Compatibility:</th>
  730. <td>Ant 1.4 and higher</td>
  731. </tr>
  732. <tr>
  733. <th>URL:</th>
  734. <td><a href="http://pmd.sf.net/">http://pmd.sf.net/</a></td>
  735. </tr>
  736. <tr>
  737. <th>Contact:</th>
  738. <td><a href="mailto:tcopeland@apache.org">Tom Copeland</a></td>
  739. </tr>
  740. <tr>
  741. <th>License:</th>
  742. <td>Apache Software Foundation License</td>
  743. </tr>
  744. </table>
  745. </subsection>
  746. <subsection name="Purge">
  747. <p>Purge deletes all but the most recent few files from a fileset.
  748. For example: if you have generated files (logs, .ear, .war, .jar
  749. etc) accumulating in a directory, the purge task will allow you
  750. to delete the older files, keeping just the most recent ones.</p>
  751. <table>
  752. <tr>
  753. <th>Compatibility:</th>
  754. <td>Ant 1.4 or above</td>
  755. </tr>
  756. <tr>
  757. <th>URL:</th>
  758. <td><a href="http://www.dallaway.com/ant/">http://www.dallaway.com/ant/</a></td>
  759. </tr>
  760. <tr>
  761. <th>Contact:</th>
  762. <td><a href="mailto:purge@dallaway.com">Richard Dallaway</a></td>
  763. </tr>
  764. <tr>
  765. <th>License:</th>
  766. <td>LGPL</td>
  767. </tr>
  768. </table>
  769. </subsection>
  770. <subsection name="SerialVer">
  771. <p>SerialVer adds the Java serialver functionality to Apache
  772. Ant. This project adds Tasks and FilterReaders to get, to
  773. insert and to modify the serialVersionUID in the source code
  774. of a serializable class.</p>
  775. <table>
  776. <tr>
  777. <th>Compatibility:</th>
  778. <td>Ant 1.5.1 and later</td>
  779. </tr>
  780. <tr>
  781. <th>URL:</th>
  782. <td><a href="http://serialver.sourceforge.net/">http://serialver.sourceforge.net/</a></td>
  783. </tr>
  784. <tr>
  785. <th>Contact:</th>
  786. <td><a href="https://lists.sourceforge.net/lists/listinfo/serialver-development">developer mailing list</a></td>
  787. </tr>
  788. <tr>
  789. <th>License:</th>
  790. <td>Apache Software License</td>
  791. </tr>
  792. </table>
  793. </subsection>
  794. <subsection name="Styler">
  795. <p>The styler task makes useful combinations of XSLT transformations
  796. easy to specify in an Ant build file. Like the built-in Ant task
  797. style, styler can apply a single transformation to a set of XML files.
  798. But it can also:</p>
  799. <ul>
  800. <li>handle multiple transformations, in parallel or pipelined.</li>
  801. <li>enable transformations that split or merge files</li>
  802. <li>process non-XML files, especially HTML (based on JTidy)</li>
  803. <li>apply non-XSLT transformation, especially "regular
  804. fragmentations"</li>
  805. <li>use any custom XMLReader or XMLFilter class to handle new file
  806. formats and transformation techniques.</li>
  807. </ul>
  808. <table>
  809. <tr>
  810. <th>Compatibility:</th>
  811. <td>Ant 1.4</td>
  812. </tr>
  813. <tr>
  814. <th>URL:</th>
  815. <td><a href="http://www.langdale.com.au/styler/">http://www.langdale.com.au/styler/</a></td>
  816. </tr>
  817. <tr>
  818. <th>Contact:</th>
  819. <td><a href="mailto:adv@langdale.com.au">Arnold deVos</a></td>
  820. </tr>
  821. <tr>
  822. <th>License:</th>
  823. <td>LGPL</td>
  824. </tr>
  825. </table>
  826. </subsection>
  827. <subsection name="Tidy Imports (Tim)">
  828. <p>Tim is a handy utility that can be executed on the command
  829. line or via Ant that automatically formats your import
  830. declarations. Tim is capable of removing unused imports,
  831. expanding or collapsing imports and even organising them into
  832. pre-determined groups.</p>
  833. <table>
  834. <tr>
  835. <th>Compatibility:</th>
  836. <td>Ant 1.3 and later</td>
  837. </tr>
  838. <tr>
  839. <th>URL:</th>
  840. <td><a href="http://www.chive.com/tim.htm">http://www.chive.com/tim.htm</a></td>
  841. </tr>
  842. <tr>
  843. <th>Contact:</th>
  844. <td><a href="mailto:support@chive.com">support@chive.com</a></td>
  845. </tr>
  846. <tr>
  847. <th>License:</th>
  848. <td>Commercial</td>
  849. </tr>
  850. </table>
  851. </subsection>
  852. <subsection name="TiniAnt">
  853. <p>TiniAnt is an Ant task to support building applications for
  854. the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>
  855. <table>
  856. <tr>
  857. <th>Compatibility:</th>
  858. <td>Ant 1.2 to 1.4.1</td>
  859. </tr>
  860. <tr>
  861. <th>URL:</th>
  862. <td><a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a></td>
  863. </tr>
  864. <tr>
  865. <th>Contact:</th>
  866. <td><a href="mailto:kelly@ad1440.net">Sean Kelly</a></td>
  867. </tr>
  868. <tr>
  869. <th>License:</th>
  870. <td>BSD-like license</td>
  871. </tr>
  872. </table>
  873. </subsection>
  874. <subsection name="Venus Application Publisher's (Vamp) Ant Task Suite">
  875. <p>Venus Application Publisher's (Vamp) Ant Task Suite allows
  876. you to sign and package your applications into relocatable Web
  877. Archives that you can drop into your web server for
  878. single-click launching using Java Web Start or into single
  879. Java Archive installers that serve up their content through a
  880. built-in, multi-threaded, ultra light-weight web server.</p>
  881. <table>
  882. <tr>
  883. <th>Compatibility:</th>
  884. <td>Ant 1.2 and 1.3</td>
  885. </tr>
  886. <tr>
  887. <th>URL:</th>
  888. <td><a href="http://www.geocities.com/vamp201/ant.html">http://www.geocities.com/vamp201/ant.html</a></td>
  889. </tr>
  890. <tr>
  891. <th>Contact:</th>
  892. <td><a href="mailto:vamp201@yahoo.com">Gerald Bauer</a></td>
  893. </tr>
  894. <tr>
  895. <th>License:</th>
  896. <td>GNU General Public License</td>
  897. </tr>
  898. </table>
  899. </subsection>
  900. <subsection name="Version_Tool">
  901. <p>A versioning tool for Ant.</p>
  902. <table>
  903. <tr>
  904. <th>Compatibility:</th>
  905. <td>Ant 1.5.1</td>
  906. </tr>
  907. <tr>
  908. <th>URL:</th>
  909. <td><a href="http://ant.ryangrier.com/">http://ant.ryangrier.com/</a></td>
  910. </tr>
  911. <tr>
  912. <th>Contact:</th>
  913. <td><a href="mailto:version_tool@ryangrier.com">version_tool@ryangrier.com</a></td>
  914. </tr>
  915. <tr>
  916. <th>License:</th>
  917. <td>BSD license</td>
  918. </tr>
  919. </table>
  920. </subsection>
  921. <subsection name="VPP">
  922. <p>VPP provides general file preprocessing support based on
  923. the Velocity Template Engine. The core funtionality is
  924. provided as a filter for use with tasks that supports filter
  925. chains. Also included are replacement tasks for &lt;copy&gt; and
  926. &lt;javac&gt; that integrate support for preprocessing.</p>
  927. <table>
  928. <tr>
  929. <th>Compatibility:</th>
  930. <td>1.5.1 and above</td>
  931. </tr>
  932. <tr>
  933. <th>URL:</th>
  934. <td><a href="http://vpp.sourceforge.net/">http://vpp.sourceforge.net/</a></td>
  935. </tr>
  936. <tr>
  937. <th>Contact:</th>
  938. <td><a href="mailto:vpp-user@lists.sourceforge.net">vpp-user@lists.sourceforge.net</a></td>
  939. </tr>
  940. <tr>
  941. <th>License:</th>
  942. <td>BSD license</td>
  943. </tr>
  944. </table>
  945. </subsection>
  946. <subsection name="WOProject">
  947. <p>WOProject provides a set of tools to work with
  948. <a href="http://webobjects.com/">WebObjects 5.1</a>
  949. independent from platform and IDE. It significantly
  950. improves developer productivity
  951. and makes complex project structures more flexible compared to
  952. traditional Makefile-based approach.
  953. </p>
  954. <table>
  955. <tr>
  956. <th>Compatibility:</th>
  957. <td>Ant 1.4</td>
  958. </tr>
  959. <tr>
  960. <th>URL:</th>
  961. <td><a href="http://objectstyle.org/woproject/">http://objectstyle.org/woproject/</a></td>
  962. </tr>
  963. <tr>
  964. <th>Contact:</th>
  965. <td><a href="mailto:andrus@objectstyle.org">Andrus Adamchik</a></td>
  966. </tr>
  967. <tr>
  968. <th>License:</th>
  969. <td>Apache license</td>
  970. </tr>
  971. </table>
  972. </subsection>
  973. <subsection name="XDoclet">
  974. <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
  975. It lets you create custom Javadoc @tags and based on those tags
  976. generates source code or other files (such as xml-ish deployment
  977. descriptors). Templates and matching tasks are provided to generate
  978. EJB and web application deployment descriptors.
  979. </p>
  980. <table>
  981. <tr>
  982. <th>Compatibility:</th>
  983. <td>Ant 1.4</td>
  984. </tr>
  985. <tr>
  986. <th>URL:</th>
  987. <td><a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a></td>
  988. </tr>
  989. <tr>
  990. <th>License:</th>
  991. <td>BSD license</td>
  992. </tr>
  993. </table>
  994. </subsection>
  995. <subsection name="XmlTask">
  996. <p>XmlTask provides a simple means to modify XML documents
  997. without having to learn XSLT. A simple path reference to an
  998. XML node specifies the node you want to change, and how you
  999. want to allow XML insertion and removal, or attribute
  1000. changes. The emphasis is on providing the simplest means to
  1001. perform common XML replacements</p>
  1002. <table>
  1003. <tr>
  1004. <th>Compatibility:</th>
  1005. <td>Ant 1.4 and later</td>
  1006. </tr>
  1007. <tr>
  1008. <th>URL:</th>
  1009. <td><a href="http://www.oopsconsultancy.com/software/xmltask.html">http://www.oopsconsultancy.com/software/xmltask.html</a></td>
  1010. </tr>
  1011. <tr>
  1012. <th>Contact:</th>
  1013. <td><a href="mailto:xmltask@oopsconsultancy.com">xmltask@oopsconsultancy.com</a></td>
  1014. </tr>
  1015. <tr>
  1016. <th>License:</th>
  1017. <td>GNU General Public License</td>
  1018. </tr>
  1019. </table>
  1020. </subsection>
  1021. <subsection name="yGuard">
  1022. <p>yGuard is a free Java(TM) Bytecode Obfuscator Task that
  1023. needs no external script or project files. It can completely
  1024. be configured and run through the Ant build script. The task
  1025. supports multiple Jar files at once and makes use of
  1026. patternsets and regular expressions to specify elements, which
  1027. should be left unobfuscated. Additionally it can be used to
  1028. produce patches for obfuscated applications that have already
  1029. been deployed.</p>
  1030. <table>
  1031. <tr>
  1032. <th>Compatibility:</th>
  1033. <td>Ant 1.5 and later</td>
  1034. </tr>
  1035. <tr>
  1036. <th>URL:</th>
  1037. <td><a href="http://www.yworks.com/products/yguard">http://www.yworks.com/products/yguard</a></td>
  1038. </tr>
  1039. <tr>
  1040. <th>Contact:</th>
  1041. <td><a href="mailto:yguard@yworks.com">yGuard@yWorks.com</a></td>
  1042. </tr>
  1043. <tr>
  1044. <th>License:</th>
  1045. <td>Library: LGPL, Task: Commercial</td>
  1046. </tr>
  1047. </table>
  1048. </subsection>
  1049. </section>
  1050. <section name="Compiler Implementations">
  1051. <subsection name="miniRMI &lt;code&gt;&amp;lt;rmic&amp;gt;&lt;/code&gt; implementation">
  1052. <p>miniRMI is a freeware opensource library that serves as a
  1053. lightweight replacement for the original java.rmi packages and
  1054. is suitable especially for applets. Ant 1.4+
  1055. <code>&lt;rmic&gt;</code> adapter included.</p>
  1056. <table>
  1057. <tr>
  1058. <th>Compatibility:</th>
  1059. <td>Ant 1.4 and later</td>
  1060. </tr>
  1061. <tr>
  1062. <th>URL:</th>
  1063. <td><a href="http://dione.zcu.cz/~toman40/miniRMI/">http://dione.zcu.cz/~toman40/miniRMI/</a></td>
  1064. </tr>
  1065. <tr>
  1066. <th>Contact:</th>
  1067. <td><a href="mailto:Petr.Toman@pinknet.cz">Petr Toman</a></td>
  1068. </tr>
  1069. <tr>
  1070. <th>License:</th>
  1071. <td>Gnu Lesser Public License</td>
  1072. </tr>
  1073. </table>
  1074. </subsection>
  1075. </section>
  1076. <section name="IDE and Editor Integration">
  1077. <subsection name="AntFarm">
  1078. <p>A plugin that integrates Ant into the jEdit editor.</p>
  1079. <table>
  1080. <tr>
  1081. <th>Compatibility:</th>
  1082. <td>bundles Ant 1.3</td>
  1083. </tr>
  1084. <tr>
  1085. <th>URL:</th>
  1086. <td><a href="http://plugins.jedit.org/plugins/AntFarm">http://plugins.jedit.org/plugins/AntFarm</a></td>
  1087. </tr>
  1088. <tr>
  1089. <th>Contact:</th>
  1090. <td><a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</a></td>
  1091. </tr>
  1092. <tr>
  1093. <th>License:</th>
  1094. <td>Apache Software License</td>
  1095. </tr>
  1096. </table>
  1097. </subsection>
  1098. <subsection name="AntMan">
  1099. <p>An AddIn that integrates Ant with the JDeveloper IDE</p>
  1100. <table>
  1101. <tr>
  1102. <th>Compatibility:</th>
  1103. <td>Ant 1.4.1</td>
  1104. </tr>
  1105. <tr>
  1106. <th>URL:</th>
  1107. <td><a href="http://www.erudra.com/antman/index.html">http://www.erudra.com/antman/index.html</a></td>
  1108. </tr>
  1109. <tr>
  1110. <th>Contact:</th>
  1111. <td><a href="mailto:ashok@erudra.com">Ashok Sridhar</a></td>
  1112. </tr>
  1113. <tr>
  1114. <th>License:</th>
  1115. <td>GNU General Public License</td>
  1116. </tr>
  1117. </table>
  1118. </subsection>
  1119. <subsection name="AntRunner">
  1120. <p>An OpenTool that integrates Ant into the JBuilder IDE.</p>
  1121. <table>
  1122. <tr>
  1123. <th>Compatibility:</th>
  1124. <td>Ant 1.2 and 1.3</td>
  1125. </tr>
  1126. <tr>
  1127. <th>URL:</th>
  1128. <td><a href="http://www.dieter-bogdoll.de/java/AntRunner/">http://www.dieter-bogdoll.de/java/AntRunner/</a></td>
  1129. </tr>
  1130. <tr>
  1131. <th>Contact:</th>
  1132. <td><a href="mailto:bogdoll@users.sourceforge.net">Dieter Bogdoll</a></td>
  1133. </tr>
  1134. <tr>
  1135. <th>License:</th>
  1136. <td>GNU General Public License</td>
  1137. </tr>
  1138. </table>
  1139. </subsection>
  1140. <subsection name="AntWork">
  1141. <p>A plugin that integrates Ant into the Jext editor.</p>
  1142. <table>
  1143. <tr>
  1144. <th>Compatibility:</th>
  1145. <td>Ant 1.2 and 1.3</td>
  1146. </tr>
  1147. <tr>
  1148. <th>URL:</th>
  1149. <td><a href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip</a></td>
  1150. </tr>
  1151. <tr>
  1152. <th>Contact:</th>
  1153. <td><a href="mailto:KHartlage@t-online.de">Klaus Hartlage</a></td>
  1154. </tr>
  1155. <tr>
  1156. <th>License:</th>
  1157. <td>GNU General Public License</td>
  1158. </tr>
  1159. </table>
  1160. </subsection>
  1161. <subsection name="Eclipse">
  1162. <p>Eclipse is a universal tool platform with Ant integration.</p>
  1163. <table>
  1164. <tr>
  1165. <th>Compatibility:</th>
  1166. <td>Ant 1.3 - 1.4.1</td>
  1167. </tr>
  1168. <tr>
  1169. <th>URL:</th>
  1170. <td><a href="http://www.eclipse.org">http://www.eclipse.org</a></td>
  1171. </tr>
  1172. <tr>
  1173. <th>Contact:</th>
  1174. <td><a href="news://news.eclipse.org/eclipse.tools">news://news.eclipse.org/eclipse.tools</a></td>
  1175. </tr>
  1176. <tr>
  1177. <th>License:</th>
  1178. <td>Common Public License Version 1.0</td>
  1179. </tr>
  1180. </table>
  1181. </subsection>
  1182. <subsection name="HP RadPak">
  1183. <p>
  1184. RadPak comes with the (free) HP Bluestone HPAS J2EE server, and is primarily
  1185. a GUI tool for packaging and deploying java web and EJB applications
  1186. as WAR and EAR files. The tool is ant based, and can be used with
  1187. as a GUI for general ant development, providing form based entry
  1188. of task attributes, and an animated display of task
  1189. execution.
  1190. </p>
  1191. <table>
  1192. <tr>
  1193. <th>Compatibility:</th>
  1194. <td>bundles Ant 1.3 and docs; adds a jar of extra tasks
  1195. to any existing ant installation under ANT_HOME</td>
  1196. </tr>
  1197. <tr>
  1198. <th>URL:</th>
  1199. <td><a href="http://www.bluestone.com/products/hp-as/">http://www.bluestone.com/products/hp-as/</a></td>
  1200. </tr>
  1201. <tr>
  1202. <th>License:</th>
  1203. <td>Proprietary but free to download</td>
  1204. </tr>
  1205. </table>
  1206. </subsection>
  1207. <subsection name="IntelliJ IDEA 2.0">
  1208. <p>Java IDE with refactoring support and Ant integration.</p>
  1209. <table>
  1210. <tr>
  1211. <th>Compatibility:</th>
  1212. <td>bundles Ant 1.3</td>
  1213. </tr>
  1214. <tr>
  1215. <th>URL:</th>
  1216. <td><a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a></td>
  1217. </tr>
  1218. <tr>
  1219. <th>Contact:</th>
  1220. <td><a href="mailto:support@intellij.com">support@intellij.com</a></td>
  1221. </tr>
  1222. <tr>
  1223. <th>License:</th>
  1224. <td>Commercial</td>
  1225. </tr>
  1226. </table>
  1227. </subsection>
  1228. <subsection name="JDE(E) 2.2.8">
  1229. <p>The Java Development Environment for Emacs (JDEE) supports
  1230. Apache Ant as one of three built-in ways to build your
  1231. applications.</p>
  1232. <table>
  1233. <tr>
  1234. <th>Compatibility:</th>
  1235. <td>Ant 1.2 and later</td>
  1236. </tr>
  1237. <tr>
  1238. <th>URL:</th>
  1239. <td><a href="http://jde.sunsite.dk/">http://jde.sunsite.dk/</a></td>
  1240. </tr>
  1241. <tr>
  1242. <th>Contact:</th>
  1243. <td><a href="mailto:jde-subscribe@sunsite.auc.dk">JDEE Mailing list.</a></td>
  1244. </tr>
  1245. <tr>
  1246. <th>License:</th>
  1247. <td>GNU General Public License</td>
  1248. </tr>
  1249. </table>
  1250. </subsection>
  1251. <subsection name="NetBeans / Sun ONE Studio">
  1252. <p>A module that integrates Ant into the NetBeans or Sun ONE Studio (formerly Forte for Java) IDEs.</p>
  1253. <table>
  1254. <tr>
  1255. <th>Compatibility:</th>
  1256. <td>bundles Ant 1.5.1</td>
  1257. </tr>
  1258. <tr>
  1259. <th>URL:</th>
  1260. <td><a href="http://ant.netbeans.org/">http://ant.netbeans.org/</a></td>
  1261. </tr>
  1262. <tr>
  1263. <th>Contact:</th>
  1264. <td><a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a></td>
  1265. </tr>
  1266. <tr>
  1267. <th>License:</th>
  1268. <td>Sun Public License</td>
  1269. </tr>
  1270. </table>
  1271. </subsection>
  1272. <subsection name="Oracle9i JDeveloper">
  1273. <p>Java IDE with support for Ant.</p>
  1274. <table>
  1275. <tr>
  1276. <th>Compatibility:</th>
  1277. <td>Ant 1.5.1</td>
  1278. </tr>
  1279. <tr>
  1280. <th>URL:</th>
  1281. <td><a href="http://otn.oracle.com/products/jdev/">http://otn.oracle.com/products/jdev/</a></td>
  1282. </tr>
  1283. <tr>
  1284. <th>Contact:</th>
  1285. <td><a href="mailto:jdeveloperbeta_us@oracle.com">jdeveloperbeta_us@oracle.com</a></td>
  1286. </tr>
  1287. <tr>
  1288. <th>License:</th>
  1289. <td>Commercial</td>
  1290. </tr>
  1291. </table>
  1292. </subsection>
  1293. <subsection name="WebSphere Studio Application Developer">
  1294. <p>WSAD features Ant integrate by virtue of being built on the Eclipse tools platform.</p>
  1295. <table>
  1296. <tr>
  1297. <th>Compatibility:</th>
  1298. <td>bundles Ant 1.4.1</td>
  1299. </tr>
  1300. <tr>
  1301. <th>Article:</th>
  1302. <td><a href="http://www7b.software.ibm.com/wsdd/library/techarticles/0203_searle/searle1.html">Ant Integration Part1</a></td>
  1303. </tr>
  1304. <tr>
  1305. <th>License:</th>
  1306. <td>Commercial</td>
  1307. </tr>
  1308. </table>
  1309. </subsection>
  1310. </section>
  1311. </body>
  1312. </document>