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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820
  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.</p>
  13. <p>Nothing listed here is directly supported by the Ant
  14. developers, if you encounter any problems with them, please use
  15. the contact information.</p>
  16. </section>
  17. <section name="Tasks">
  18. <subsection name="AJC">
  19. <p><a href="http://aspectj.org">AspectJ</a> is an
  20. aspect-oriented extension to Java. This task compiles a
  21. source tree using the AspectJ compiler -- AJC.</p>
  22. <table>
  23. <tr>
  24. <th>Compatibility:</th>
  25. <td>Ant 1.3</td>
  26. </tr>
  27. <tr>
  28. <th>URL:</th>
  29. <td><a href="http://aspectj.org/dl">http://aspectj.org/dl</a></td>
  30. </tr>
  31. <tr>
  32. <th>Contact:</th>
  33. <td><a href="mailto:support@aspectj.org">support@aspectj.org</a></td>
  34. </tr>
  35. <tr>
  36. <th>License:</th>
  37. <td>Apache Software License</td>
  38. </tr>
  39. </table>
  40. </subsection>
  41. <subsection name="Anakia">
  42. <p>Actually, Anakia is more than just an Ant task, it is a an
  43. XML transformation tool based on JDOM, Velocity and Ant.</p>
  44. <table>
  45. <tr>
  46. <th>Compatibility:</th>
  47. <td>Ant 1.2 and later</td>
  48. </tr>
  49. <tr>
  50. <th>URL:</th>
  51. <td><a href="http://jakarta.apache.org/velocity/anakia.html">http://jakarta.apache.org/velocity/anakia.html</a></td>
  52. </tr>
  53. <tr>
  54. <th>Contact:</th>
  55. <td><a href="http://jakarta.apache.org/site/mail2.html">Velocity mailing lists</a></td>
  56. </tr>
  57. <tr>
  58. <th>License:</th>
  59. <td>Apache Software License</td>
  60. </tr>
  61. </table>
  62. </subsection>
  63. <subsection name="Checkstyle">
  64. <p>Checkstyle is a development tool to help programmers write
  65. Java code that adheres to a coding standard. Its purpose is to
  66. automate the process of checking Java code, and to spare
  67. humans of this boring (but important) task.</p>
  68. <p>Checkstyle can be run via an Ant task or a command line
  69. utility.</p>
  70. <table>
  71. <tr>
  72. <th>Compatibility:</th>
  73. <td>Ant 1.2 to 1.4.1</td>
  74. </tr>
  75. <tr>
  76. <th>URL:</th>
  77. <td><a href="http://checkstyle.sourceforge.net/">http://checkstyle.sourceforge.net/</a></td>
  78. </tr>
  79. <tr>
  80. <th>Contact:</th>
  81. <td><a href="mailto:checkstyle@puppycrawl.com">Oliver Burn</a></td>
  82. </tr>
  83. <tr>
  84. <th>License:</th>
  85. <td>Starting with release 2.0 the license is the GNU
  86. Lesser General Public License. Prior releases were under
  87. the GNU General Public License.</td>
  88. </tr>
  89. </table>
  90. </subsection>
  91. <subsection name="CleanImports">
  92. <p>Removes unneeded imports. Formats your import
  93. sections. Flags ambiguous imports.</p>
  94. <table>
  95. <tr>
  96. <th>Compatibility:</th>
  97. <td>Ant 1.3</td>
  98. </tr>
  99. <tr>
  100. <th>URL:</th>
  101. <td><a href="http://www.euronet.nl/users/tomb/cleanImports/index.html">http://www.euronet.nl/users/tomb/cleanImports/index.html</a></td>
  102. </tr>
  103. <tr>
  104. <th>Contact:</th>
  105. <td><a href="mailto:tomb@euronet.nl">Tom Brus</a></td>
  106. </tr>
  107. <tr>
  108. <th>License:</th>
  109. <td>Apache Software License</td>
  110. </tr>
  111. </table>
  112. </subsection>
  113. <subsection name="Configure">
  114. <p>Recursive build support (call ant on every package level,
  115. and only build files in that package or in that package and
  116. everything below) with seperation of source and output.</p>
  117. <p>The task generates build files in any subdirectory (except
  118. for CVS-directories) for you. Only place one build.xml file in
  119. the top and call target &apos;setup&apos; or
  120. &apos;rescan&apos;.</p>
  121. <table>
  122. <tr>
  123. <th>Compatibility:</th>
  124. <td>Ant 1.2 and 1.3</td>
  125. </tr>
  126. <tr>
  127. <th>URL:</th>
  128. <td><a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a></td>
  129. </tr>
  130. <tr>
  131. <th>Contact:</th>
  132. <td><a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a></td>
  133. </tr>
  134. <tr>
  135. <th>License:</th>
  136. <td>License derived from Apache Software License</td>
  137. </tr>
  138. </table>
  139. </subsection>
  140. <subsection name="Doxygen task">
  141. <p>Ant task for running the Doxygen documentation system.</p>
  142. <table>
  143. <tr>
  144. <th>Compatibility:</th>
  145. <td>Ant 1.1 and later</td>
  146. </tr>
  147. <tr>
  148. <th>URL:</th>
  149. <td><a href="http://www.bgw.org/projects/java/ant/">http://www.bgw.org/projects/java/ant/</a></td>
  150. </tr>
  151. <tr>
  152. <th>Contact:</th>
  153. <td><a href="mailto:mortis@voicenet.com">Kyle R. Burton</a></td>
  154. </tr>
  155. <tr>
  156. <th>License:</th>
  157. <td>Apache Software Foundation License</td>
  158. </tr>
  159. </table>
  160. </subsection>
  161. <subsection name="GenJar">
  162. <p>Builds a JAR file based on class dependencies rather than simply the contents of a directory</p>
  163. <table>
  164. <tr>
  165. <th>Compatibility:</th>
  166. <td>Ant 1.4 alpha (built after 2001/08/04) and later</td>
  167. </tr>
  168. <tr>
  169. <th>URL:</th>
  170. <td><a href="http://www.riggshill.com/projects/genjar/">http://www.riggshill.com/projects/genjar/</a></td>
  171. </tr>
  172. <tr>
  173. <th>Contact:</th>
  174. <td><a href="mailto:jake@riggshill.com">John Kohler</a></td>
  175. </tr>
  176. <tr>
  177. <th>License:</th>
  178. <td>Apache Software Foundation License</td>
  179. </tr>
  180. </table>
  181. </subsection>
  182. <subsection name="Importscrubber">
  183. <p>Removes unnecessary import statements from a Java source code file.</p>
  184. <table>
  185. <tr>
  186. <th>Compatibility:</th>
  187. <td>Ant 1.3</td>
  188. </tr>
  189. <tr>
  190. <th>URL:</th>
  191. <td><a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a></td>
  192. </tr>
  193. <tr>
  194. <th>Contact:</th>
  195. <td><a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a></td>
  196. </tr>
  197. <tr>
  198. <th>License:</th>
  199. <td>LGPL</td>
  200. </tr>
  201. </table>
  202. </subsection>
  203. <subsection name="IsDirValidator">
  204. <p>Checks whether a given directory structure conforms to
  205. certain rules that are defined via nested elements of the
  206. task.</p>
  207. <table>
  208. <tr>
  209. <th>Compatibility:</th>
  210. <td>Ant 1.4</td>
  211. </tr>
  212. <tr>
  213. <th>URL:</th>
  214. <td><a href="http://isvalidator.sourceforge.net/en/isDirValidator.htm">http://isvalidator.sourceforge.net/en/isDirValidator.htm</a></td>
  215. </tr>
  216. <tr>
  217. <th>Contact:</th>
  218. <td><a href="mailto:news@inigoserrano.com">I&#xF1;igo Serrano</a></td>
  219. </tr>
  220. <tr>
  221. <th>License:</th>
  222. <td>GNU General Public License</td>
  223. </tr>
  224. </table>
  225. </subsection>
  226. <subsection name="Jalopy">
  227. <p>An Ant Plug-in for the Java Source Code Formatter
  228. Jalopy.</p>
  229. <table>
  230. <tr>
  231. <th>Compatibility:</th>
  232. <td>Ant 1.4</td>
  233. </tr>
  234. <tr>
  235. <th>URL:</th>
  236. <td><a href="http://jalopy.sourceforge.net">http://jalopy.sourceforge.net</a></td>
  237. </tr>
  238. <tr>
  239. <th>Contact:</th>
  240. <td><a href="mailto:jalopy@hunsicker.de">jalopy@hunsicker.de</a></td>
  241. </tr>
  242. <tr>
  243. <th>License:</th>
  244. <td>GNU General Public License</td>
  245. </tr>
  246. </table>
  247. </subsection>
  248. <subsection name="Javamake">
  249. <p>A task to compile Java sources and manage class file
  250. dependencies. Functionality is equivalent to that of standard
  251. Javac and Depend tasks combined, with improved dependency
  252. checking.</p>
  253. <table>
  254. <tr>
  255. <th>Compatibility:</th>
  256. <td>Ant 1.4.1</td>
  257. </tr>
  258. <tr>
  259. <th>URL:</th>
  260. <td><a href="http://www.experimentalstuff.com/Technologies/JavaMake/index.html">http://www.experimentalstuff.com/Technologies/JavaMake/index.html</a></td>
  261. </tr>
  262. <tr>
  263. <th>Contact:</th>
  264. <td><a href="mailto:Mikhail.Dmitriev@eng.sun.com">Mikhail Dmitriev</a></td>
  265. </tr>
  266. <tr>
  267. <th>License:</th>
  268. <td>BSD-like License</td>
  269. </tr>
  270. </table>
  271. </subsection>
  272. <subsection name="J2ME Ant Tasks">
  273. <p>There are two different sets of tasks to help build <a
  274. href="http://java.sun.com/j2me/">Java 2 Platform, Micro
  275. Edition</a> (J2ME) applications.</p>
  276. <p>This set supports CLDC and the K Virtual Machine (KVM):</p>
  277. <table>
  278. <tr>
  279. <th>Compatibility:</th>
  280. <td>Ant 1.3</td>
  281. </tr>
  282. <tr>
  283. <th>URL:</th>
  284. <td><a href="http://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a></td>
  285. </tr>
  286. <tr>
  287. <th>Contact:</th>
  288. <td><a href="mailto:drib@enteract.com">Dave Dribin</a></td>
  289. </tr>
  290. <tr>
  291. <th>License:</th>
  292. <td>Apache Software License</td>
  293. </tr>
  294. </table>
  295. <p>And this set works with the J2ME Wireless Toolkit and MIDP
  296. for PalmOS:</p>
  297. <table>
  298. <tr>
  299. <th>Compatibility:</th>
  300. <td>Ant 1.3</td>
  301. </tr>
  302. <tr>
  303. <th>URL:</th>
  304. <td><a href="http://www.stampysoft.com/ant/">http://www.stampysoft.com/ant/</a></td>
  305. </tr>
  306. <tr>
  307. <th>Contact:</th>
  308. <td><a href="mailto:jeckels@stampysoft.com">Josh Eckels</a></td>
  309. </tr>
  310. <tr>
  311. <th>License:</th>
  312. <td>MIT License</td>
  313. </tr>
  314. </table>
  315. </subsection>
  316. <subsection name="javarec">
  317. <p>Ant tasks that generate record classes for VisualAge for
  318. Java from Cobol copy books.</p>
  319. <table>
  320. <tr>
  321. <th>Compatibility:</th>
  322. <td>Ant 1.4</td>
  323. </tr>
  324. <tr>
  325. <th>URL:</th>
  326. <td><a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a></td>
  327. </tr>
  328. <tr>
  329. <th>Contact:</th>
  330. <td><a href="mailto:pglezen@us.ibm.com">Paul Glezen</a></td>
  331. </tr>
  332. <tr>
  333. <th>License:</th>
  334. <td>Apache Software License</td>
  335. </tr>
  336. </table>
  337. </subsection>
  338. <subsection name="Styler">
  339. <p>The styler task makes useful combinations of XSLT transformations
  340. easy to specify in an Ant build file. Like the built-in Ant task
  341. style, styler can apply a single transformation to a set of XML files.
  342. But it can also:</p>
  343. <ul>
  344. <li>handle multiple transformations, in parallel or pipelined.</li>
  345. <li>enable transformations that split or merge files</li>
  346. <li>process non-XML files, especially HTML (based on JTidy)</li>
  347. <li>apply non-XSLT transformation, especially "regular
  348. fragmentations"</li>
  349. <li>use any custom XMLReader or XMLFilter class to handle new file
  350. formats and transformation techniques.</li>
  351. </ul>
  352. <table>
  353. <tr>
  354. <th>Compatibility:</th>
  355. <td>Ant 1.4</td>
  356. </tr>
  357. <tr>
  358. <th>URL:</th>
  359. <td><a href="http://www.langdale.com.au/styler/">http://www.langdale.com.au/styler/</a></td>
  360. </tr>
  361. <tr>
  362. <th>Contact:</th>
  363. <td><a href="mailto:adv@langdale.com.au">Arnold deVos</a></td>
  364. </tr>
  365. <tr>
  366. <th>License:</th>
  367. <td>LGPL</td>
  368. </tr>
  369. </table>
  370. </subsection>
  371. <subsection name="Tidy Imports (Tim)">
  372. <p>Tim is a handy utility that can be executed on the command
  373. line or via Ant that automatically formats your import
  374. declarations. Tim is capable of removing unused imports,
  375. expanding or collapsing imports and even organising them into
  376. pre-determined groups.</p>
  377. <table>
  378. <tr>
  379. <th>Compatibility:</th>
  380. <td>Ant 1.3 and later</td>
  381. </tr>
  382. <tr>
  383. <th>URL:</th>
  384. <td><a href="http://www.chive.com/tim.htm">http://www.chive.com/tim.htm</a></td>
  385. </tr>
  386. <tr>
  387. <th>Contact:</th>
  388. <td><a href="mailto:support@chive.com">support@chive.com</a></td>
  389. </tr>
  390. <tr>
  391. <th>License:</th>
  392. <td>Commercial</td>
  393. </tr>
  394. </table>
  395. </subsection>
  396. <subsection name="TiniAnt">
  397. <p>TiniAnt is an Ant task to support building applications for
  398. the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>
  399. <table>
  400. <tr>
  401. <th>Compatibility:</th>
  402. <td>Ant 1.2 to 1.4.1</td>
  403. </tr>
  404. <tr>
  405. <th>URL:</th>
  406. <td><a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a></td>
  407. </tr>
  408. <tr>
  409. <th>Contact:</th>
  410. <td><a href="mailto:kelly@ad1440.net">Sean Kelly</a></td>
  411. </tr>
  412. <tr>
  413. <th>License:</th>
  414. <td>BSD-like license</td>
  415. </tr>
  416. </table>
  417. </subsection>
  418. <subsection name="Venus Application Publisher's (Vamp) Ant Task Suite">
  419. <p>Venus Application Publisher's (Vamp) Ant Task Suite allows
  420. you to sign and package your applications into relocatable Web
  421. Archives that you can drop into your web server for
  422. single-click launching using Java Web Start or into single
  423. Java Archive installers that serve up their content through a
  424. built-in, multi-threaded, ultra light-weight web server.</p>
  425. <table>
  426. <tr>
  427. <th>Compatibility:</th>
  428. <td>Ant 1.2 and 1.3</td>
  429. </tr>
  430. <tr>
  431. <th>URL:</th>
  432. <td><a href="http://www.geocities.com/vamp201/ant.html">http://www.geocities.com/vamp201/ant.html</a></td>
  433. </tr>
  434. <tr>
  435. <th>Contact:</th>
  436. <td><a href="mailto:vamp201@yahoo.com">Gerald Bauer</a></td>
  437. </tr>
  438. <tr>
  439. <th>License:</th>
  440. <td>GNU General Public License</td>
  441. </tr>
  442. </table>
  443. </subsection>
  444. <subsection name="WOProject">
  445. <p>WOProject provides a set of tools to work with
  446. <a href="http://webobjects.com/">WebObjects 5.1</a>
  447. independent from platform and IDE. It significantly
  448. improves developer productivity
  449. and makes complex project structures more flexible compared to
  450. traditional Makefile-based approach.
  451. </p>
  452. <table>
  453. <tr>
  454. <th>Compatibility:</th>
  455. <td>Ant 1.4</td>
  456. </tr>
  457. <tr>
  458. <th>URL:</th>
  459. <td><a href="http://objectstyle.org/woproject/">http://objectstyle.org/woproject/</a></td>
  460. </tr>
  461. <tr>
  462. <th>Contact:</th>
  463. <td><a href="mailto:andrus@objectstyle.org">Andrus Adamchik</a></td>
  464. </tr>
  465. <tr>
  466. <th>License:</th>
  467. <td>Apache license</td>
  468. </tr>
  469. </table>
  470. </subsection>
  471. <subsection name="XDoclet">
  472. <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
  473. It lets you create custom Javadoc @tags and based on those tags
  474. generates source code or other files (such as xml-ish deployment
  475. descriptors). Templates and matching tasks are provided to generate
  476. EJB and web application deployment descriptors.
  477. </p>
  478. <table>
  479. <tr>
  480. <th>Compatibility:</th>
  481. <td>Ant 1.4</td>
  482. </tr>
  483. <tr>
  484. <th>URL:</th>
  485. <td><a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a></td>
  486. </tr>
  487. <tr>
  488. <th>License:</th>
  489. <td>BSD license</td>
  490. </tr>
  491. </table>
  492. </subsection>
  493. <subsection name="XmlTask">
  494. <p>XmlTask provides a simple means to modify XML documents
  495. without having to learn XSLT. A simple path reference to an
  496. XML node specifies the node you want to change, and how you
  497. want to allow XML insertion and removal, or attribute
  498. changes. The emphasis is on providing the simplest means to
  499. perform common XML replacements</p>
  500. <table>
  501. <tr>
  502. <th>Compatibility:</th>
  503. <td>Ant 1.4 and later</td>
  504. </tr>
  505. <tr>
  506. <th>URL:</th>
  507. <td><a href="http://www.oopsconsultancy.com/software/xmltask.html">http://www.oopsconsultancy.com/software/xmltask.html</a></td>
  508. </tr>
  509. <tr>
  510. <th>Contact:</th>
  511. <td><a href="mailto:xmltask@oopsconsultancy.com">xmltask@oopsconsultancy.com</a></td>
  512. </tr>
  513. <tr>
  514. <th>License:</th>
  515. <td>GNU General Public License</td>
  516. </tr>
  517. </table>
  518. </subsection>
  519. </section>
  520. <section name="Compiler Implementations">
  521. <subsection name="miniRMI &lt;code&gt;&amp;lt;rmic&amp;gt;&lt;/code&gt; implementation">
  522. <p>miniRMI is a freeware opensource library that serves as a
  523. lightweight replacement for the original java.rmi packages and
  524. is suitable especially for applets. Ant 1.4+
  525. <code>&lt;rmic&gt;</code> adapter included.</p>
  526. <table>
  527. <tr>
  528. <th>Compatibility:</th>
  529. <td>Ant 1.4 and later</td>
  530. </tr>
  531. <tr>
  532. <th>URL:</th>
  533. <td><a href="http://dione.zcu.cz/~toman40/miniRMI/">http://dione.zcu.cz/~toman40/miniRMI/</a></td>
  534. </tr>
  535. <tr>
  536. <th>Contact:</th>
  537. <td><a href="mailto:Petr.Toman@pinknet.cz">Petr Toman</a></td>
  538. </tr>
  539. <tr>
  540. <th>License:</th>
  541. <td>Gnu Lesser Public License</td>
  542. </tr>
  543. </table>
  544. </subsection>
  545. </section>
  546. <section name="IDE and Editor Integration">
  547. <subsection name="AntFarm">
  548. <p>A plugin that integrates Ant into the jEdit editor.</p>
  549. <table>
  550. <tr>
  551. <th>Compatibility:</th>
  552. <td>bundles Ant 1.3</td>
  553. </tr>
  554. <tr>
  555. <th>URL:</th>
  556. <td><a href="http://plugins.jedit.org/plugins/AntFarm">http://plugins.jedit.org/plugins/AntFarm</a></td>
  557. </tr>
  558. <tr>
  559. <th>Contact:</th>
  560. <td><a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</a></td>
  561. </tr>
  562. <tr>
  563. <th>License:</th>
  564. <td>Apache Software License</td>
  565. </tr>
  566. </table>
  567. </subsection>
  568. <subsection name="AntMan">
  569. <p>An AddIn that integrates Ant with the JDeveloper IDE</p>
  570. <table>
  571. <tr>
  572. <th>Compatibility:</th>
  573. <td>Ant 1.4.1</td>
  574. </tr>
  575. <tr>
  576. <th>URL:</th>
  577. <td><a href="http://www.erudra.com/antman/index.html">http://www.erudra.com/antman/index.html</a></td>
  578. </tr>
  579. <tr>
  580. <th>Contact:</th>
  581. <td><a href="mailto:ashok@erudra.com">Ashok Sridhar</a></td>
  582. </tr>
  583. <tr>
  584. <th>License:</th>
  585. <td>GNU General Public License</td>
  586. </tr>
  587. </table>
  588. </subsection>
  589. <subsection name="AntRunner">
  590. <p>An OpenTool that integrates Ant into the JBuilder IDE.</p>
  591. <table>
  592. <tr>
  593. <th>Compatibility:</th>
  594. <td>Ant 1.2 and 1.3</td>
  595. </tr>
  596. <tr>
  597. <th>URL:</th>
  598. <td><a href="http://www.dieter-bogdoll.de/java/AntRunner/">http://www.dieter-bogdoll.de/java/AntRunner/</a></td>
  599. </tr>
  600. <tr>
  601. <th>Contact:</th>
  602. <td><a href="mailto:bogdoll@users.sourceforge.net">Dieter Bogdoll</a></td>
  603. </tr>
  604. <tr>
  605. <th>License:</th>
  606. <td>GNU General Public License</td>
  607. </tr>
  608. </table>
  609. </subsection>
  610. <subsection name="AntWork">
  611. <p>A plugin that integrates Ant into the Jext editor.</p>
  612. <table>
  613. <tr>
  614. <th>Compatibility:</th>
  615. <td>Ant 1.2 and 1.3</td>
  616. </tr>
  617. <tr>
  618. <th>URL:</th>
  619. <td><a href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip</a></td>
  620. </tr>
  621. <tr>
  622. <th>Contact:</th>
  623. <td><a href="mailto:KHartlage@t-online.de">Klaus Hartlage</a></td>
  624. </tr>
  625. <tr>
  626. <th>License:</th>
  627. <td>GNU General Public License</td>
  628. </tr>
  629. </table>
  630. </subsection>
  631. <subsection name="IntelliJ IDEA 2.0">
  632. <p>Java IDE with refactoring support and Ant integration.</p>
  633. <table>
  634. <tr>
  635. <th>Compatibility:</th>
  636. <td>bundles Ant 1.3</td>
  637. </tr>
  638. <tr>
  639. <th>URL:</th>
  640. <td><a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a></td>
  641. </tr>
  642. <tr>
  643. <th>Contact:</th>
  644. <td><a href="mailto:support@intellij.com">support@intellij.com</a></td>
  645. </tr>
  646. <tr>
  647. <th>License:</th>
  648. <td>Commercial</td>
  649. </tr>
  650. </table>
  651. </subsection>
  652. <subsection name="JDE(E) 2.2.8">
  653. <p>The Java Development Environment for Emacs (JDEE) supports
  654. Apache Ant as one of three built-in ways to build your
  655. applications.</p>
  656. <table>
  657. <tr>
  658. <th>Compatibility:</th>
  659. <td>Ant 1.2 and later</td>
  660. </tr>
  661. <tr>
  662. <th>URL:</th>
  663. <td><a href="http://jde.sunsite.dk/">http://jde.sunsite.dk/</a></td>
  664. </tr>
  665. <tr>
  666. <th>Contact:</th>
  667. <td><a href="mailto:jde-subscribe@sunsite.auc.dk">JDEE Mailing list.</a></td>
  668. </tr>
  669. <tr>
  670. <th>License:</th>
  671. <td>GNU General Public License</td>
  672. </tr>
  673. </table>
  674. </subsection>
  675. <subsection name="NetBeans / Forte for Java">
  676. <p>A module that integrates Ant into the NetBeans or Forte for Java IDEs.</p>
  677. <table>
  678. <tr>
  679. <th>Compatibility:</th>
  680. <td>bundles Ant 1.4.1</td>
  681. </tr>
  682. <tr>
  683. <th>URL:</th>
  684. <td><a href="http://ant.netbeans.org/">http://ant.netbeans.org/</a></td>
  685. </tr>
  686. <tr>
  687. <th>Contact:</th>
  688. <td><a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a></td>
  689. </tr>
  690. <tr>
  691. <th>License:</th>
  692. <td>Sun Public License</td>
  693. </tr>
  694. </table>
  695. </subsection>
  696. <subsection name="HP RadPak">
  697. <p>
  698. RadPak comes with the (free) HP Bluestone HPAS J2EE server, and is primarily
  699. a GUI tool for packaging and deploying java web and EJB applications
  700. as WAR and EAR files. The tool is ant based, and can be used with
  701. as a GUI for general ant development, providing form based entry
  702. of task attributes, and an animated display of task
  703. execution.
  704. </p>
  705. <table>
  706. <tr>
  707. <th>Compatibility:</th>
  708. <td>bundles Ant 1.3 and docs; adds a jar of extra tasks
  709. to any existing ant installation under ANT_HOME</td>
  710. </tr>
  711. <tr>
  712. <th>URL:</th>
  713. <td><a href="http://www.bluestone.com/products/hp-as/">http://www.bluestone.com/products/hp-as/</a></td>
  714. </tr>
  715. <tr>
  716. <th>License:</th>
  717. <td>Proprietary but free to download</td>
  718. </tr>
  719. </table>
  720. </subsection>
  721. </section>
  722. </body>
  723. </document>