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.

resources.xml 22 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <document>
  3. <properties>
  4. <author email="bodewig@apache.org">Stefan Bodewig</author>
  5. <title>Resources</title>
  6. </properties>
  7. <body>
  8. <section name="FAQs">
  9. <subsection name="At Ant's website">
  10. <p>Starting with the release of Ant 1.4 the Ant's FAQ is
  11. bundled with the distribution, the most recent version can
  12. always be found at the website.</p>
  13. <table class="externals">
  14. <tr>
  15. <th>FAQ:</th>
  16. <td><a href="faq.html">http://ant.apache.org/faq.html</a></td>
  17. </tr>
  18. </table>
  19. </subsection>
  20. <subsection name="jGuru">
  21. <p>jGuru hosts an interactive Ant discussion forum and FAQ system</p>
  22. <table class="externals">
  23. <tr>
  24. <th>Forum:</th>
  25. <td><a href="http://www.jguru.com/forums/home.jsp?topic=Ant">http://www.jguru.com/forums/home.jsp?topic=Ant</a></td>
  26. </tr>
  27. <tr>
  28. <th>FAQ:</th>
  29. <td><a href="http://www.jguru.com/faq/home.jsp?topic=Ant">http://www.jguru.com/faq/home.jsp?topic=Ant</a></td>
  30. </tr>
  31. </table>
  32. </subsection>
  33. <subsection name="FAQ about Borland Application Server tasks">
  34. <p>Benoit Moussaud, the original author if the Borland
  35. Application Server specific <a
  36. href="manual/OptionalTasks/ejb.html#ejbtasks">EJB tasks</a> has put
  37. together a FAQ for this specific subtask.</p>
  38. <table class="externals">
  39. <tr>
  40. <th>FAQ:</th>
  41. <td><a href="http://www.moussaud.org/ejbjar.html">http://www.moussaud.org/ejbjar.html</a></td>
  42. </tr>
  43. </table>
  44. </subsection>
  45. </section>
  46. <section name="Books">
  47. <p>Listed by descending publication date.</p>
  48. <!-- TODO: reorganize as a table? -->
  49. <subsection name="Extreme Programming with Ant">
  50. <p> This book shows how to implement an XP project using Ant 1.5.3, and many other 3rd party tools. Covers:</p>
  51. <ul>
  52. <li>The fundamentals of Ant: concepts, core and optional tasks</li>
  53. <li>How to write custom Ant components, including custom Tasks, Loggers, Listeners, Input Handlers, Selectors, Filters, Mappers and Data Types</li>
  54. <li>Mitigating risks by creating spike tests with Ant buildfiles</li>
  55. <li>Add CVS version control and testing with JUnit</li>
  56. <li>Automate nightly builds and reporting</li>
  57. <li>Deploy applications dynamically using XDoclet</li>
  58. <li>Enforcing Code Standards with Jalopy, PMD, CheckStyle, iContract, JDepend</li>
  59. <li>Using Remote Ant (Rant) and CruiseControl</li>
  60. <li>Generating project documentation</li>
  61. <li>Adapting an XP process for use by other teams or across an enterprise</li>
  62. <li>Custom Task examples to generating UML diagrams, creating reports and metrics on-the-fly</li>
  63. <li>Follows a case-study of a team that implements an XP Project</li>
  64. </ul>
  65. <table class="externals">
  66. <tr>
  67. <th>Authors:</th>
  68. <td>Glenn Niemeyer and Jeremy Poteet</td>
  69. </tr>
  70. <tr>
  71. <th>URL:</th>
  72. <td><a href="http://www.sams.com/catalog/product.asp?product_id=%7BFB825A48-BC04-4C55-BD8C-DF93C6BBF920%7D">http://www.sams.com/catalog/product.asp?product_id=%7BFB825A48-BC04-4C55-BD8C-DF93C6BBF920%7D</a></td>
  73. </tr>
  74. </table>
  75. </subsection>
  76. <subsection name="Ant. Das Java-Build-Tool in der Praxis">
  77. <p>A German language book on Ant that covers Ant 1.5.
  78. This is the original description:</p>
  79. <source>
  80. Das Build-Tool Ant ist das Open-Source-Werkzeug, das den Entwicklungsprozess einer Java-
  81. oder J2EE-Anwendung wesentlich vereinfacht. Gesteuert durch XML-basierte Skripte f�hrt es
  82. nahezu alle Aufgaben aus, die nach dem Kodieren einer Anwendung anfallen.</source>
  83. <p>Some topics:</p>
  84. <ul>
  85. <li>creating archives (zip, jar)</li>
  86. <li>call the java compiler</li>
  87. <li>edit property files</li>
  88. <li>file operation</li>
  89. <li>source code control systems</li>
  90. </ul>
  91. <table class="externals">
  92. <tr>
  93. <th>Authors:</th>
  94. <td>Bernd Matzke</td>
  95. </tr>
  96. <tr>
  97. <th>URL:</th>
  98. <td><a href="http://www.addison-wesley.de/main/main.asp?page=home/bookdetails&amp;ProductID=13459">http://www.addison-wesley.de/main/main.asp?page=home/bookdetails&amp;ProductID=13459</a></td>
  99. </tr>
  100. </table>
  101. </subsection>
  102. <subsection name="Java Development with Ant">
  103. <p>Covers Ant 1.5, including:</p>
  104. <ul>
  105. <li>The new Ant 1.5 features</li>
  106. <li>Ant's datatypes and property handling</li>
  107. <li>JUnit testing and reporting</li>
  108. <li>Continuous integration techniques</li>
  109. <li>XDoclet for attribute-oriented programming</li>
  110. <li>EJB generation, building, and packaging</li>
  111. <li>Writing and testing native code</li>
  112. <li>Building Web Services with Apache Axis</li>
  113. <li>Deploying your system to multiple remote servers</li>
  114. <li>Using and writing
  115. <ul>
  116. <li>Loggers</li>
  117. <li>Listeners</li>
  118. <li>Selectors</li>
  119. <li>Custom tasks</li>
  120. </ul>
  121. </li>
  122. </ul>
  123. <table class="externals">
  124. <tr>
  125. <th>Authors:</th>
  126. <td>Erik Hatcher and Steve Loughran</td>
  127. </tr>
  128. <tr>
  129. <th>URL:</th>
  130. <td><a href="http://www.manning.com/antbook/">http://www.manning.com/antbook/</a></td>
  131. </tr>
  132. </table>
  133. </subsection>
  134. <subsection name="Ant: The Definitive Guide">
  135. <!-- a soon as somebody submits a description, let's add it -->
  136. <p>Covers Ant release 1.4.1.</p>
  137. <table class="externals">
  138. <tr>
  139. <th>Authors:</th>
  140. <td>Jesse E. Tilly and Eric M. Burke</td>
  141. </tr>
  142. <tr>
  143. <th>URL:</th>
  144. <td><a href="http://www.oreilly.com/catalog/anttdg/">http://www.oreilly.com/catalog/anttdg/</a></td>
  145. </tr>
  146. </table>
  147. </subsection>
  148. <subsection name="Ant. Kurz und Gut.">
  149. <p>A German language short reference for Ant that covers Ant
  150. 1.4. This is the original description:</p>
  151. <source>
  152. Ant kurz &amp; gut enth&#xe4;lt eine vollst&#xe4;ndige Referenz der Built-in Tasks
  153. und ihrer jeweiligen Attribute sowie kurze Beispiele f&#xfc;r ihre Verwendung.
  154. Daneben bietet das Buch eine knappe Einf&#xfc;hrung in die Arbeit mit Ant und
  155. eine Erl&#xe4;uterung der Ant-Basiselemente (Projekte, Properties, Targets und Tasks).
  156. Behandelt werden au&#xdf;erdem grundlegende Konzepte wie Filesets, Patternsets und
  157. Pfadstrukturen, das Schreiben eigener Tasks, die Aufruf-Syntax und Optional Tasks. </source>
  158. <table class="externals">
  159. <tr>
  160. <th>Author:</th>
  161. <td>Stefan Edlich</td>
  162. </tr>
  163. <tr>
  164. <th>URL:</th>
  165. <td><a href="http://www.amazon.de/exec/obidos/ASIN/3897212412/">http://www.amazon.de/exec/obidos/ASIN/3897212412/</a></td>
  166. </tr>
  167. </table>
  168. </subsection>
  169. <subsection name="Java Tools for eXtreme Programming">
  170. <p>This book covers the following XP subjects:</p>
  171. <ul>
  172. <li>Automated unit and functional testing</li>
  173. <li>Continuous integration through build and deployment automation</li>
  174. <li>The value of refactoring and continuous integration</li>
  175. <li>How Ant, JUnit, JUnitPerf, Cactus, HTTPUnit, and JMeter
  176. can be used to achieve the goals of the XP methodology</li>
  177. </ul>
  178. <table class="externals">
  179. <tr>
  180. <th>Authors:</th>
  181. <td>Richard Hightower and Nicholas Lesiecki</td>
  182. </tr>
  183. <tr>
  184. <th>URL:</th>
  185. <td><a href="http://www.wiley.com/cda/product/0,,047120708X,00.html">http://www.wiley.com/cda/product/0,,047120708X,00.html</a></td>
  186. </tr>
  187. </table>
  188. </subsection>
  189. </section>
  190. <section name="Articles and Presentations">
  191. <p>The following sections list articles and presentations written about Apache Ant. If
  192. you've written something that should be included, please post it to one
  193. of the mailing lists.</p>
  194. </section>
  195. <section name="Articles">
  196. <subsection name="Ant in Anger: Using Ant in a Production Development
  197. System">
  198. <p>This document describes strategies and some basic examples of how to
  199. use Ant in larger team development projects.</p>
  200. <table class="externals">
  201. <tr>
  202. <th>Author:</th>
  203. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  204. </tr>
  205. <tr>
  206. <th>URL:</th>
  207. <td><a href="ant_in_anger.html">http://ant.apache.org/ant_in_anger.html</a></td>
  208. </tr>
  209. </table>
  210. </subsection>
  211. <subsection name="Ant Task Guidelines">
  212. <p>This document describes how to write custom Ant tasks, and how to submit
  213. them to potentially be included in Ant.</p>
  214. <table class="externals">
  215. <tr>
  216. <th>Author:</th>
  217. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  218. </tr>
  219. <tr>
  220. <th>URL:</th>
  221. <td><a href="ant_task_guidelines.html">http://ant.apache.org/ant_task_guidelines.html</a></td>
  222. </tr>
  223. </table>
  224. </subsection>
  225. <subsection name="Automating the build and test process">
  226. <p>This article demonstrates an approach to the automated build and test process. Working with Ant 1.3 and the JUnit test framework, it shows how to automate a process that captures pertinent information about each test suite run, generates an attractive report, and e-mails the report.</p>
  227. <table class="externals">
  228. <tr>
  229. <th>Author:</th>
  230. <td><a href="mailto:ehatcher@apache.org">Erik Hatcher</a></td>
  231. </tr>
  232. <tr>
  233. <th>URL:</th>
  234. <td><a href="http://www.ibm.com/developerworks/java/library/j-junitmail/">http://www.ibm.com/developerworks/java/library/j-junitmail/</a></td>
  235. </tr>
  236. </table>
  237. </subsection>
  238. <subsection name="Incremental development with Ant and JUnit">
  239. <p>This article explores the benefits of unit testing with Ant and
  240. JUnit, detailing how to develop automated unit tests and integrate them
  241. into your build process.</p>
  242. <table class="externals">
  243. <tr>
  244. <th>Author:</th>
  245. <td><a href="mailto:malcolm@nuearth.com">Malcolm Davis</a></td>
  246. </tr>
  247. <tr>
  248. <th>URL:</th>
  249. <td><a href="http://www-106.ibm.com/developerworks/library/j-ant/?dwzone=java">http://www-106.ibm.com/developerworks/library/j-ant/?dwzone=java</a></td>
  250. </tr>
  251. </table>
  252. </subsection>
  253. <subsection name="Automate your build process using Java and Ant">
  254. <p>This article provides an introduction to using Ant with some basic
  255. examples and by highlighting some of the important tasks.</p>
  256. <table class="externals">
  257. <tr>
  258. <th>Author:</th>
  259. <td><a href="mailto:michael.cymerman@javaworld.com">Michael Cymerman</a></td>
  260. </tr>
  261. <tr>
  262. <th>URL:</th>
  263. <td><a href="http://www.javaworld.com/javaworld/jw-10-2000/jw-1020-ant.html">http://www.javaworld.com/javaworld/jw-10-2000/jw-1020-ant.html</a></td>
  264. </tr>
  265. </table>
  266. </subsection>
  267. <subsection name="Short tutorial in Cactus&apos; (formerly J2EEUnit)
  268. documentation">
  269. <p>There is a short tutorial on how to use Ant in Cactus&apos;
  270. documentation. It has a slant towards build files that will be used
  271. with Cactus.</p>
  272. <table class="externals">
  273. <tr>
  274. <th>Author:</th>
  275. <td>Cactus development team</td>
  276. </tr>
  277. <tr>
  278. <th>URL:</th>
  279. <td><a href="http://jakarta.apache.org/cactus/howto_ant_primer.html">http://jakarta.apache.org/cactus/howto_ant_primer.html</a></td>
  280. </tr>
  281. </table>
  282. </subsection>
  283. <subsection name="Developing custom Ant tasks with VisualAge for Java">
  284. <p>This article outlines how to integrate Ant into VisualAge for Java,
  285. and how to write and debug custom tasks using the IDE and the
  286. integrated debugger.</p>
  287. <table class="externals">
  288. <tr>
  289. <th>Author:</th>
  290. <td><a href="mailto:glenn@somanetworks.com">Glenn McAllister</a></td>
  291. </tr>
  292. <tr>
  293. <th>URL:</th>
  294. <td><a href="http://www7.software.ibm.com/vad.nsf/data/document2366?OpenDocument&amp;p=1&amp;BCT=1&amp;Footer=1">http://www7.software.ibm.com/vad.nsf/data/document2366?OpenDocument&amp;p=1&amp;BCT=1&amp;Footer=1</a></td>
  295. </tr>
  296. </table>
  297. </subsection>
  298. <subsection name="Automated builds with VisualAge for Java and Ant">
  299. <p>This article shows how you can perform command line builds with a
  300. VisualAge for Java repository.</p>
  301. <table class="externals">
  302. <tr>
  303. <th>Author:</th>
  304. <td><a href="mailto:glenn@somanetworks.com">Glenn McAllister</a></td>
  305. </tr>
  306. <tr>
  307. <th>URL:</th>
  308. <td><a href="http://www7.software.ibm.com/vad.nsf/Data/Document4366?OpenDocument&amp;p=1&amp;BCT=3&amp;Footer=1">http://www7.software.ibm.com/vad.nsf/Data/Document4366?OpenDocument&amp;p=1&amp;BCT=3&amp;Footer=1</a></td>
  309. </tr>
  310. </table>
  311. </subsection>
  312. <subsection name="Ant: A Build Tool from the Jakarta Project">
  313. <p>This article is from the &quot;Best Practices&quot; section of
  314. Sun&apos;s Dot-Com Builder Site.</p>
  315. <table class="externals">
  316. <tr>
  317. <th>Author:</th>
  318. <td>Laura Geele Wang</td>
  319. </tr>
  320. <tr>
  321. <th>URL:</th>
  322. <td><a href="http://dcb.sun.com/practices/profiles/ant.jsp">http://dcb.sun.com/practices/profiles/ant.jsp</a></td>
  323. </tr>
  324. </table>
  325. </subsection>
  326. <subsection name="Making a Mountain Out of an Anthill">
  327. <p>This article is from the June 2001 issue of the Java Developer&apos;
  328. Journal. You need to be a registered JDJ subscriber to view this
  329. article.</p>
  330. <table class="externals">
  331. <tr>
  332. <th>Author:</th>
  333. <td>Neal Ford</td>
  334. </tr>
  335. <tr>
  336. <th>URL:</th>
  337. <td><a href="http://www.sys-con.com/java/archivesa.cfm?volume=06&amp;issue=06">http://www.sys-con.com/java/archivesa.cfm?volume=06&amp;issue=06</a></td>
  338. </tr>
  339. </table>
  340. </subsection>
  341. <subsection name="Using Ant and Weblogic EJBs">
  342. <p>This article describes how to use Ant to create Weblogic EJBs, and
  343. some workarounds for issues you may encounter.</p>
  344. <table class="externals">
  345. <tr>
  346. <th>Author:</th>
  347. <td>Jesse E. Tilly</td>
  348. </tr>
  349. <tr>
  350. <th>URL:</th>
  351. <td><a href="http://www.onjava.com/pub/a/onjava/2001/06/25/antejb.html">http://www.onjava.com/pub/a/onjava/2001/06/25/antejb.html</a></td>
  352. </tr>
  353. </table>
  354. </subsection>
  355. <subsection name="Using JavaScript with Ant">
  356. <p>A tutorial about using JavaScript and XSLT with Ant.</p>
  357. <table class="externals">
  358. <tr>
  359. <th>Author:</th>
  360. <td>Dylan Schiemann</td>
  361. </tr>
  362. <tr>
  363. <th>URL:</th>
  364. <td><a href="http://www.sitepen.com/ant/javascript.html">http://www.sitepen.com/ant/javascript.html</a></td>
  365. </tr>
  366. </table>
  367. </subsection>
  368. <subsection name="Building with Ant">
  369. <p>Series of articles that describe a framework for web
  370. application development based on Ant and JUnit.</p>
  371. <table class="externals">
  372. <tr>
  373. <th>Author:</th>
  374. <td><a href="mailto:alexc@purpletech.com">Alex Chaffee</a></td>
  375. </tr>
  376. <tr>
  377. <th>URL:</th>
  378. <td>Introduction: <a href="http://softwaredev.earthweb.com/sdtech/article/0,,12065_989631,00.html">http://softwaredev.earthweb.com/sdtech/article/0,,12065_989631,00.html</a><br/>
  379. Directory Structure: <a href="http://softwaredev.earthweb.com/sdtech/article/0,,12082_994991,00.html">http://softwaredev.earthweb.com/sdtech/article/0,,12082_994991,00.html</a><br/>
  380. Deployment and Distribution: <a href="http://softwaredev.earthweb.com/sdtech/article/0,,12077_998241,00.html">http://softwaredev.earthweb.com/sdtech/article/0,,12077_998241,00.html</a></td>
  381. </tr>
  382. </table>
  383. </subsection>
  384. <subsection name="Developing with JAXB and Ant">
  385. <p>Series of articles that shows how to use Ant together with
  386. the Java API for XML Binding (JAXB).</p>
  387. <table class="externals">
  388. <tr>
  389. <th>Author:</th>
  390. <td>Joseph Shelby</td>
  391. </tr>
  392. <tr>
  393. <th>URL:</th>
  394. <td><a href="http://www.onjava.com/pub/a/onjava/2002/03/06/jaxant1.html">http://www.onjava.com/pub/a/onjava/2002/03/06/jaxant1.html</a><br/>
  395. <a href="http://www.onjava.com/pub/a/onjava/2002/03/13/jaxbant2.html">http://www.onjava.com/pub/a/onjava/2002/03/13/jaxbant2.html</a></td>
  396. </tr>
  397. </table>
  398. </subsection>
  399. </section>
  400. <section name="Presentations">
  401. <subsection name="Ant - presented to the Tucson Java Users Group">
  402. <p>A PowerPoint technical overview presentation on Ant. Comes complete with a straightforward example demonstrating code compilation, JAR'ing, JUnit testing, JUnit reporting, and Zipping a distribution. A few advanced topics are touched upon like property immutabality and using &lt;antcall&gt; to get around it, build listeners, and writing custom tasks.</p>
  403. <table class="externals">
  404. <tr>
  405. <th>Author:</th>
  406. <td><a href="mailto:ehatcher@apache.org">Erik Hatcher</a></td>
  407. </tr>
  408. <tr>
  409. <th>URL:</th>
  410. <td><a href="http://erik.hatcher.net/ant-jug.zip">http://erik.hatcher.net/ant-jug.zip</a></td>
  411. </tr>
  412. </table>
  413. </subsection>
  414. <subsection name="Ant Build Tool">
  415. <p>A PowerPoint presentation on Ant 1.2. It provides a basic overview
  416. of Ant&apos;s capabilities.</p>
  417. <table class="externals">
  418. <tr>
  419. <th>Author:</th>
  420. <td><a href="mailto:chanezon@netscape.com">Patrick Chanezon</a></td>
  421. </tr>
  422. <tr>
  423. <th>URL:</th>
  424. <td><a href="http://people.netscape.com/chanezon/tech/ant/ant_preso.ppt">http://people.netscape.com/chanezon/tech/ant/ant_preso.ppt</a></td>
  425. </tr>
  426. </table>
  427. </subsection>
  428. <subsection name="Ant">
  429. <p>A detailed Ant 1.3 PowerPoint presentation, made at the St. Louis Java Users Group
  430. meeting in March 2001. Includes a detailed build file and basic
  431. descriptions of all the built in and optional tasks. Updated for Ant 1.4 in October 2001.
  432. Available in PDF format now.</p>
  433. <table class="externals">
  434. <tr>
  435. <th>Author:</th>
  436. <td>Mark Volkmann</td>
  437. </tr>
  438. <tr>
  439. <th>URL:</th>
  440. <td><a href="http://www.ociweb.com/jnb/files/Ant.pdf">http://www.ociweb.com/jnb/files/Ant.pdf</a></td>
  441. </tr>
  442. </table>
  443. </subsection>
  444. <subsection name="Modern Development Crises">
  445. <p>This presentation is an overview of the current state of software
  446. development today. There are a couple of slides that briefly cover
  447. Ant.</p>
  448. <table class="externals">
  449. <tr>
  450. <th>Author:</th>
  451. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  452. </tr>
  453. <tr>
  454. <th>URL:</th>
  455. <td><a href="http://www.iseran.com/Steve/modern_development_processes.html">http://www.iseran.com/Steve/modern_development_processes.html</a></td>
  456. </tr>
  457. </table>
  458. </subsection>
  459. <subsection name="When Web Services Go Bad">
  460. <p>A presentation from the <a
  461. href="http://www.sellsbrothers.com/conference/">Web Services
  462. DevCon</a> in March 2002.</p>
  463. <table class="externals">
  464. <tr>
  465. <th>Author:</th>
  466. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  467. </tr>
  468. <tr>
  469. <th>URL:</th>
  470. <td><a href="http://www.iseran.com/Steve/papers/when_web_services_go_bad.html">http://www.iseran.com/Steve/papers/when_web_services_go_bad.html</a></td>
  471. </tr>
  472. </table>
  473. </subsection>
  474. </section>
  475. </body>
  476. </document>