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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  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>GNU General Public License</td>
  86. </tr>
  87. </table>
  88. </subsection>
  89. <subsection name="Configure">
  90. <p>Recursive build support (call ant on every package level,
  91. and only build files in that package or in that package and
  92. everything below) with seperation of source and output.</p>
  93. <p>The task generates build files in any subdirectory (except
  94. for CVS-directories) for you. Only place one build.xml file in
  95. the top and call target &apos;setup&apos; or
  96. &apos;rescan&apos;.</p>
  97. <table>
  98. <tr>
  99. <th>Compatibility:</th>
  100. <td>Ant 1.2 and 1.3</td>
  101. </tr>
  102. <tr>
  103. <th>URL:</th>
  104. <td><a href="http://www.dsdelft.nl/~lemval/ant/">http://www.dsdelft.nl/~lemval/ant/</a></td>
  105. </tr>
  106. <tr>
  107. <th>Contact:</th>
  108. <td><a href="mailto:lemval@dsdelft.nl">M.J.P. van Leeuwen</a></td>
  109. </tr>
  110. <tr>
  111. <th>License:</th>
  112. <td>License derived from Apache Software License</td>
  113. </tr>
  114. </table>
  115. </subsection>
  116. <subsection name="Doxygen task">
  117. <p>Ant task for running the Doxygen documentation system.</p>
  118. <table>
  119. <tr>
  120. <th>Compatibility:</th>
  121. <td>Ant 1.1 and later</td>
  122. </tr>
  123. <tr>
  124. <th>URL:</th>
  125. <td><a href="http://www.bgw.org/projects/java/ant/">http://www.bgw.org/projects/java/ant/</a></td>
  126. </tr>
  127. <tr>
  128. <th>Contact:</th>
  129. <td><a href="mailto:mortis@voicenet.com">Kyle R. Burton</a></td>
  130. </tr>
  131. <tr>
  132. <th>License:</th>
  133. <td>Apache Software Foundation License</td>
  134. </tr>
  135. </table>
  136. </subsection>
  137. <subsection name="GenJar">
  138. <p>Builds a jar file based on class dependencies rather than simply the contents of a directory</p>
  139. <table>
  140. <tr>
  141. <th>Compatibility:</th>
  142. <td>Ant 1.4 alpha (built after 2001/08/04) and later</td>
  143. </tr>
  144. <tr>
  145. <th>URL:</th>
  146. <td><a href="http://www.riggshill.com/projects/genjar/">http://www.riggshill.com/projects/genjar/</a></td>
  147. </tr>
  148. <tr>
  149. <th>Contact:</th>
  150. <td><a href="mailto:jake@riggshill.com">John Kohler</a></td>
  151. </tr>
  152. <tr>
  153. <th>License:</th>
  154. <td>Apache Software Foundation License</td>
  155. </tr>
  156. </table>
  157. </subsection>
  158. <subsection name="Importscrubber">
  159. <p>Removes unncessary import statements from a Java source code file.</p>
  160. <table>
  161. <tr>
  162. <th>Compatibility:</th>
  163. <td>Ant 1.3</td>
  164. </tr>
  165. <tr>
  166. <th>URL:</th>
  167. <td><a href="http://importscrubber.sourceforge.net/">http://importscrubber.sourceforge.net/</a></td>
  168. </tr>
  169. <tr>
  170. <th>Contact:</th>
  171. <td><a href="mailto:tomcopeland@users.sourceforge.net">Tom Copeland</a></td>
  172. </tr>
  173. <tr>
  174. <th>License:</th>
  175. <td>LGPL</td>
  176. </tr>
  177. </table>
  178. </subsection>
  179. <subsection name="J2ME Ant Tasks">
  180. <p>There are two different sets of tasks to help build <a
  181. href="http://java.sun.com/j2me/">Java 2 Platform, Micro
  182. Edition</a> (J2ME) applications.</p>
  183. <p>This set supports CLDC and the K Virtual Machine (KVM):</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://www.dribin.org/dave/j2me_ant/">http://www.dribin.org/dave/j2me_ant/</a></td>
  192. </tr>
  193. <tr>
  194. <th>Contact:</th>
  195. <td><a href="mailto:drib@enteract.com">Dave Dribin</a></td>
  196. </tr>
  197. <tr>
  198. <th>License:</th>
  199. <td>Apache Software License</td>
  200. </tr>
  201. </table>
  202. <p>And this set works with the J2ME Wireless Toolkit and MIDP
  203. for PalmOS:</p>
  204. <table>
  205. <tr>
  206. <th>Compatibility:</th>
  207. <td>Ant 1.3</td>
  208. </tr>
  209. <tr>
  210. <th>URL:</th>
  211. <td><a href="http://www.stampysoft.com/ant/">http://www.stampysoft.com/ant/</a></td>
  212. </tr>
  213. <tr>
  214. <th>Contact:</th>
  215. <td><a href="mailto:jeckels@stampysoft.com">Josh Eckels</a></td>
  216. </tr>
  217. <tr>
  218. <th>License:</th>
  219. <td>MIT License</td>
  220. </tr>
  221. </table>
  222. </subsection>
  223. <subsection name="javarec">
  224. <p>Ant tasks that generate record classes for VisualAge for
  225. Java from Cobol copy books.</p>
  226. <table>
  227. <tr>
  228. <th>Compatibility:</th>
  229. <td>Ant 1.4</td>
  230. </tr>
  231. <tr>
  232. <th>URL:</th>
  233. <td><a href="http://glezen.org/javarec/">http://glezen.org/javarec/</a></td>
  234. </tr>
  235. <tr>
  236. <th>Contact:</th>
  237. <td><a href="mailto:pglezen@us.ibm.com">Paul Glezen</a></td>
  238. </tr>
  239. <tr>
  240. <th>License:</th>
  241. <td>Apache Software License</td>
  242. </tr>
  243. </table>
  244. </subsection>
  245. <subsection name="TiniAnt">
  246. <p>TiniAnt is an Ant task to support building applications for
  247. the <a href="http://www.ibutton.com/TINI/">TINI</a>.</p>
  248. <table>
  249. <tr>
  250. <th>Compatibility:</th>
  251. <td>Ant 1.2 to 1.4.1</td>
  252. </tr>
  253. <tr>
  254. <th>URL:</th>
  255. <td><a href="http://tiniant.sourceforge.net/">http://tiniant.sourceforge.net/</a></td>
  256. </tr>
  257. <tr>
  258. <th>Contact:</th>
  259. <td><a href="mailto:kelly@ad1440.net">Sean Kelly</a></td>
  260. </tr>
  261. <tr>
  262. <th>License:</th>
  263. <td>BSD-like license</td>
  264. </tr>
  265. </table>
  266. </subsection>
  267. <subsection name="Venus Application Publisher's (Vamp) Ant Task Suite">
  268. <p>Venus Application Publisher's (Vamp) Ant Task Suite allows
  269. you to sign and package your applications into relocatable Web
  270. Archives that you can drop into your web server for
  271. single-click launching using Java Web Start or into single
  272. Java Archive installers that serve up their content through a
  273. built-in, multi-threaded, ultra light-weight web server.</p>
  274. <table>
  275. <tr>
  276. <th>Compatibility:</th>
  277. <td>Ant 1.2 and 1.3</td>
  278. </tr>
  279. <tr>
  280. <th>URL:</th>
  281. <td><a href="http://www.geocities.com/vamp201/ant.html">http://www.geocities.com/vamp201/ant.html</a></td>
  282. </tr>
  283. <tr>
  284. <th>Contact:</th>
  285. <td><a href="mailto:vamp201@yahoo.com">Gerald Bauer</a></td>
  286. </tr>
  287. <tr>
  288. <th>License:</th>
  289. <td>GNU General Public License</td>
  290. </tr>
  291. </table>
  292. </subsection>
  293. <subsection name="XDoclet">
  294. <p>XDoclet is an extended Javadoc Doclet engine for use in Ant.
  295. It lets you create custom Javadoc @tags and based on those tags
  296. generates source code or other files (such as xml-ish deployment
  297. descriptors). Templates and matching tasks are provided to generate
  298. EJB and web application deployment descriptors.
  299. </p>
  300. <table>
  301. <tr>
  302. <th>Compatibility:</th>
  303. <td>Ant 1.4</td>
  304. </tr>
  305. <tr>
  306. <th>URL:</th>
  307. <td><a href="http://sourceforge.net/projects/xdoclet/">http://sourceforge.net/projects/xdoclet/</a></td>
  308. </tr>
  309. <tr>
  310. <th>License:</th>
  311. <td>BSD license</td>
  312. </tr>
  313. </table>
  314. </subsection>
  315. </section>
  316. <section name="IDE and Editor Integration">
  317. <subsection name="AntFarm">
  318. <p>A plugin that integrates Ant into the jEdit editor.</p>
  319. <table>
  320. <tr>
  321. <th>Compatibility:</th>
  322. <td>bundles Ant 1.3</td>
  323. </tr>
  324. <tr>
  325. <th>URL:</th>
  326. <td><a href="http://plugins.jedit.org/plugins/AntFarm">http://plugins.jedit.org/plugins/AntFarm</a></td>
  327. </tr>
  328. <tr>
  329. <th>Contact:</th>
  330. <td><a href="mailto:jedit-devel@lists.sourceforge.net">jEdit developers mailinglist</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="AntRunner">
  339. <p>An OpenTool that integrates Ant into the JBuilder IDE.</p>
  340. <table>
  341. <tr>
  342. <th>Compatibility:</th>
  343. <td>Ant 1.2 and 1.3</td>
  344. </tr>
  345. <tr>
  346. <th>URL:</th>
  347. <td><a href="http://www.dieter-bogdoll.de/java/AntRunner/">http://www.dieter-bogdoll.de/java/AntRunner/</a></td>
  348. </tr>
  349. <tr>
  350. <th>Contact:</th>
  351. <td><a href="mailto:bogdoll@users.sourceforge.net">Dieter Bogdoll</a></td>
  352. </tr>
  353. <tr>
  354. <th>License:</th>
  355. <td>GNU General Public License</td>
  356. </tr>
  357. </table>
  358. </subsection>
  359. <subsection name="AntWork">
  360. <p>A plugin that integrates Ant into the Jext editor.</p>
  361. <table>
  362. <tr>
  363. <th>Compatibility:</th>
  364. <td>Ant 1.2 and 1.3</td>
  365. </tr>
  366. <tr>
  367. <th>URL:</th>
  368. <td><a href="ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip">ftp://jext.sourceforge.net/pub/jext/plugins/AntWork.zip</a></td>
  369. </tr>
  370. <tr>
  371. <th>Contact:</th>
  372. <td><a href="mailto:KHartlage@t-online.de">Klaus Hartlage</a></td>
  373. </tr>
  374. <tr>
  375. <th>License:</th>
  376. <td>GNU General Public License</td>
  377. </tr>
  378. </table>
  379. </subsection>
  380. <subsection name="IntelliJ IDEA 2.0">
  381. <p>Java IDE with refactoring support and Ant integration.</p>
  382. <table>
  383. <tr>
  384. <th>Compatibility:</th>
  385. <td>bundles Ant 1.3</td>
  386. </tr>
  387. <tr>
  388. <th>URL:</th>
  389. <td><a href="http://www.intellij.com/idea/">http://www.intellij.com/idea/</a></td>
  390. </tr>
  391. <tr>
  392. <th>Contact:</th>
  393. <td><a href="mailto:support@intellij.com">support@intellij.com</a></td>
  394. </tr>
  395. <tr>
  396. <th>License:</th>
  397. <td>Commercial</td>
  398. </tr>
  399. </table>
  400. </subsection>
  401. <subsection name="JDE(E) 2.2.8">
  402. <p>The Java Development Environment for Emacs (JDEE) supports
  403. Apache Ant as one of three built-in ways to build your
  404. applications.</p>
  405. <table>
  406. <tr>
  407. <th>Compatibility:</th>
  408. <td>Ant 1.2 and later</td>
  409. </tr>
  410. <tr>
  411. <th>URL:</th>
  412. <td><a href="http://jde.sunsite.dk/">http://jde.sunsite.dk/</a></td>
  413. </tr>
  414. <tr>
  415. <th>Contact:</th>
  416. <td><a href="mailto:jde-subscribe@sunsite.auc.dk">JDEE Mailing list.</a></td>
  417. </tr>
  418. <tr>
  419. <th>License:</th>
  420. <td>GNU General Public License</td>
  421. </tr>
  422. </table>
  423. </subsection>
  424. <subsection name="NetBeans / Forte for Java">
  425. <p>A module that integrates Ant into the NetBeans or Forte for Java IDEs.</p>
  426. <table>
  427. <tr>
  428. <th>Compatibility:</th>
  429. <td>bundles Ant 1.3</td>
  430. </tr>
  431. <tr>
  432. <th>URL:</th>
  433. <td><a href="http://ant.netbeans.org/">http://ant.netbeans.org/</a></td>
  434. </tr>
  435. <tr>
  436. <th>Contact:</th>
  437. <td><a href="mailto:nbdev@netbeans.org">nbdev@netbeans.org</a></td>
  438. </tr>
  439. <tr>
  440. <th>License:</th>
  441. <td>Sun Public License</td>
  442. </tr>
  443. </table>
  444. </subsection>
  445. <subsection name="HP RadPak">
  446. <p>
  447. RadPak comes with the (free) HP Bluestone HPAS J2EE server, and is primarily
  448. a GUI tool for packaging and deploying java web and EJB applications
  449. as WAR and EAR files. The tool is ant based, and can be used with
  450. as a GUI for general ant development, providing form based entry
  451. of task attributes, and an animated display of task
  452. execution.
  453. </p>
  454. <table>
  455. <tr>
  456. <th>Compatibility:</th>
  457. <td>bundles Ant 1.3 and docs; adds a jar of extra tasks
  458. to any existing ant installation under ANT_HOME</td>
  459. </tr>
  460. <tr>
  461. <th>URL:</th>
  462. <td><a href="http://www.bluestone.com/products/hp-as/">http://www.bluestone.com/products/hp-as/</a></td>
  463. </tr>
  464. <tr>
  465. <th>License:</th>
  466. <td>Proprietary but free to download</td>
  467. </tr>
  468. </table>
  469. </subsection>
  470. </section>
  471. <section name="Other">
  472. <subsection name="AntHill">
  473. <p>Anthill is a build tool that promotes a controlled build
  474. process by ensuring that every build reflects the source
  475. repository contents and tagging the repository with a unique
  476. build number after every build. Anthill also encourages the
  477. sharing of knowledge within an organization by automatically
  478. updating a project intranet site with artifacts from the
  479. latest build.</p>
  480. <table>
  481. <tr>
  482. <th>Compatibility:</th>
  483. <td>bundles Ant 1.3, is compatible with Ant 1.3 to 1.4.1</td>
  484. </tr>
  485. <tr>
  486. <th>URL:</th>
  487. <td><a href="http://www.urbancode.com/projects/anthill/">http://www.urbancode.com/projects/anthill/</a></td>
  488. </tr>
  489. <tr>
  490. <th>Contact:</th>
  491. <td><a href ='mailto:mbz@urbancode.com'>Maciej Zawadzki</a></td>
  492. </tr>
  493. <tr>
  494. <th>License:</th>
  495. <td>Mozilla-like license</td>
  496. </tr>
  497. </table>
  498. </subsection>
  499. <subsection name="CruiseControl">
  500. <p>CruiseControl is a tool for setting up a continuous build
  501. process. CruiseControl provides an Ant wrapper and a set of
  502. tasks to automate the checkout/build/test cycle. CruiseControl
  503. also comes bundled with a servlet for viewing the status of
  504. the current build, as well as previous build results.</p>
  505. <table>
  506. <tr>
  507. <th>Compatibility:</th>
  508. <td>Ant 1.2 and higher</td>
  509. </tr>
  510. <tr>
  511. <th>URL:</th>
  512. <td><a href="http://cruisecontrol.sourceforge.net/">http://cruisecontrol.sourceforge.net/</a></td>
  513. </tr>
  514. <tr>
  515. <th>Contact:</th>
  516. <td><a href ='http://cruisecontrol.sourceforge.net/contact.html'>Project Mailing Lists and Administrators</a></td>
  517. </tr>
  518. <tr>
  519. <th>License:</th>
  520. <td>Release 1.0 has been licensed under the GNU General Public
  521. License. Starting with release 1.1 the license has been
  522. changed to a BSD-like license.</td>
  523. </tr>
  524. </table>
  525. </subsection>
  526. <subsection name="XML Publication">
  527. <p>XML Publication is a set of tools to generate Web pages
  528. from desktop documents or other structured documents using
  529. XSLT and Ant.</p>
  530. <table>
  531. <tr>
  532. <th>Compatibility:</th>
  533. <td>Ant 1.4</td>
  534. </tr>
  535. <tr>
  536. <th>URL:</th>
  537. <td><a href="http://XMLpublication.org/">http://XMLpublication.org/</a></td>
  538. </tr>
  539. <tr>
  540. <th>Contact:</th>
  541. <td><a href ="mailto:jmvanel@free.fr">Jean-Marc Vanel</a></td>
  542. </tr>
  543. <tr>
  544. <th>License:</th>
  545. <td>GNU General Public License.</td>
  546. </tr>
  547. </table>
  548. </subsection>
  549. </section>
  550. </body>
  551. </document>