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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. <?xml version="1.0"?>
  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>
  14. <tr>
  15. <th>FAQ:</th>
  16. <td><a href="faq.html">http://jakarta.apache.org/ant/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>
  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. </section>
  34. <section name="Books">
  35. <subsection name="Java Tools for eXtreme Programming">
  36. <p>This book covers the following XP subjects:
  37. <ul>
  38. <li>Automated unit and functional testing</li>
  39. <li>Continuous integration through build and deployment automation</li>
  40. <li>The value of refactoring and continuous integration</li>
  41. <li>How Ant, JUnit, JUnitPerf, Cactus, HTTPUnit, and JMeter
  42. can be used to achieve the goals of the XP methodology</li>
  43. </ul>
  44. </p>
  45. <table>
  46. <tr>
  47. <th>Authors:</th>
  48. <td>Richard Hightower and Nicholas Lesiecki</td>
  49. </tr>
  50. <tr>
  51. <th>URL:</th>
  52. <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>
  53. </tr>
  54. </table>
  55. </subsection>
  56. <subsection name="Ant: The Definitive Guide">
  57. <!-- a soon as somebody submits a description, let's add it -->
  58. <p>Covers Ant release 1.4.1.</p>
  59. <table>
  60. <tr>
  61. <th>Authors:</th>
  62. <td>Jesse E. Tilly and Eric M. Burke</td>
  63. </tr>
  64. <tr>
  65. <th>URL:</th>
  66. <td><a href="http://www.oreilly.com/catalog/anttdg/">http://www.oreilly.com/catalog/anttdg/</a></td>
  67. </tr>
  68. </table>
  69. </subsection>
  70. </section>
  71. <section name="Articles and Presentations">
  72. <p>The following sections list articles and presentations written about Apache Ant. If
  73. you've written something that should be included, please post it to one
  74. of the mailing lists.</p>
  75. </section>
  76. <section name="Articles">
  77. <subsection name="Ant in Anger: Using Ant in a Production Development
  78. System">
  79. <p>This document describes strategies and some basic examples of how to
  80. use Ant in larger team development projects.</p>
  81. <table>
  82. <tr>
  83. <th>Author:</th>
  84. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  85. </tr>
  86. <tr>
  87. <th>URL:</th>
  88. <td><a href="ant_in_anger.html">http://jakarta.apache.org/ant/ant_in_anger.html</a></td>
  89. </tr>
  90. </table>
  91. </subsection>
  92. <subsection name="Ant Task Guidelines">
  93. <p>This document describes how to write custom Ant tasks, and how to submit
  94. them to potentially be included in Ant.</p>
  95. <table>
  96. <tr>
  97. <th>Author:</th>
  98. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  99. </tr>
  100. <tr>
  101. <th>URL:</th>
  102. <td><a href="ant_task_guidelines.html">http://jakarta.apache.org/ant/ant_task_guidelines.html</a></td>
  103. </tr>
  104. </table>
  105. </subsection>
  106. <subsection name="Automating the build and test process">
  107. <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>
  108. <table>
  109. <tr>
  110. <th>Author:</th>
  111. <td><a href="mailto:ehatcher@apache.org">Erik Hatcher</a></td>
  112. </tr>
  113. <tr>
  114. <th>URL:</th>
  115. <td><a href="http://www.ibm.com/developerworks/java/library/j-junitmail/">http://www.ibm.com/developerworks/java/library/j-junitmail/</a></td>
  116. </tr>
  117. </table>
  118. </subsection>
  119. <subsection name="Incremental development with Ant and JUnit">
  120. <p>This article explores the benefits of unit testing with Ant and
  121. JUnit, detailing how to develop automated unit tests and integrate them
  122. into your build process.</p>
  123. <table>
  124. <tr>
  125. <th>Author:</th>
  126. <td><a href="mailto:malcolm@nuearth.com">Malcolm Davis</a></td>
  127. </tr>
  128. <tr>
  129. <th>URL:</th>
  130. <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>
  131. </tr>
  132. </table>
  133. </subsection>
  134. <subsection name="Automate your build process using Java and Ant">
  135. <p>This article provides an introduction to using Ant with some basic
  136. examples and by highlighting some of the important tasks.</p>
  137. <table>
  138. <tr>
  139. <th>Author:</th>
  140. <td><a href="mailto:michael.cymerman@javaworld.com">Michael Cymerman</a></td>
  141. </tr>
  142. <tr>
  143. <th>URL:</th>
  144. <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>
  145. </tr>
  146. </table>
  147. </subsection>
  148. <subsection name="Short tutorial in Cactus&apos; (formerly J2EEUnit)
  149. documentation">
  150. <p>There is a short tutorial on how to use Ant in Cactus&apos;
  151. documentation. It has a slant towards build files that will be used
  152. with Cactus.</p>
  153. <table>
  154. <tr>
  155. <th>Author:</th>
  156. <td>Cactus development team</td>
  157. </tr>
  158. <tr>
  159. <th>URL:</th>
  160. <td><a href="http://jakarta.apache.org/cactus/howto_ant_primer.html">http://jakarta.apache.org/cactus/howto_ant_primer.html</a></td>
  161. </tr>
  162. </table>
  163. </subsection>
  164. <subsection name="Developing custom Ant tasks with VisualAge for Java">
  165. <p>This article outlines how to integrate Ant into VisualAge for Java,
  166. and how to write and debug custom tasks using the IDE and the
  167. integrated debugger.</p>
  168. <table>
  169. <tr>
  170. <th>Author:</th>
  171. <td><a href="mailto:glenn@somanetworks.com">Glenn McAllister</a></td>
  172. </tr>
  173. <tr>
  174. <th>URL:</th>
  175. <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>
  176. </tr>
  177. </table>
  178. </subsection>
  179. <subsection name="Automated builds with VisualAge for Java and Ant">
  180. <p>This article shows how you can perform command line builds with a
  181. VisualAge for Java repository.</p>
  182. <table>
  183. <tr>
  184. <th>Author:</th>
  185. <td><a href="mailto:glenn@somanetworks.com">Glenn McAllister</a></td>
  186. </tr>
  187. <tr>
  188. <th>URL:</th>
  189. <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>
  190. </tr>
  191. </table>
  192. </subsection>
  193. <subsection name="Ant: A Build Tool from the Jakarta Project">
  194. <p>This article is from the &quot;Best Practices&quot; section of
  195. Sun&apos;s Dot-Com Builder Site.</p>
  196. <table>
  197. <tr>
  198. <th>Author:</th>
  199. <td>Laura Geele Wang</td>
  200. </tr>
  201. <tr>
  202. <th>URL:</th>
  203. <td><a href="http://dcb.sun.com/practices/profiles/ant.jsp">http://dcb.sun.com/practices/profiles/ant.jsp</a></td>
  204. </tr>
  205. </table>
  206. </subsection>
  207. <subsection name="Making a Mountain Out of an Anthill">
  208. <p>This article is from the June 2001 issue of the Java Developer&apos;
  209. Journal. You need to be a registered JDJ subscriber to view this
  210. article.</p>
  211. <table>
  212. <tr>
  213. <th>Author:</th>
  214. <td>Neal Ford</td>
  215. </tr>
  216. <tr>
  217. <th>URL:</th>
  218. <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>
  219. </tr>
  220. </table>
  221. </subsection>
  222. <subsection name="Using Ant and Weblogic EJBs">
  223. <p>This article describes how to use Ant to create Weblogic EJBs, and
  224. some workarounds for issues you may encounter.</p>
  225. <table>
  226. <tr>
  227. <th>Author:</th>
  228. <td>Jesse E. Tilly</td>
  229. </tr>
  230. <tr>
  231. <th>URL:</th>
  232. <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>
  233. </tr>
  234. </table>
  235. </subsection>
  236. <subsection name="An Introduction to Ant">
  237. <p>This article is a short introduction into the basic
  238. concepts of Ant.</p>
  239. <table>
  240. <tr>
  241. <th>Author:</th>
  242. <td>Jayakrishnan Nair</td>
  243. </tr>
  244. <tr>
  245. <th>URL:</th>
  246. <td><a href="http://varnam.org/articles/ant.html">http://varnam.org/articles/ant.html</a></td>
  247. </tr>
  248. </table>
  249. </subsection>
  250. <subsection name="Using JavaScript with Ant">
  251. <p>A tutorial about using JavaScript and XSLT with Ant.</p>
  252. <table>
  253. <tr>
  254. <th>Author:</th>
  255. <td>Dylan Schiemann</td>
  256. </tr>
  257. <tr>
  258. <th>URL:</th>
  259. <td><a href="http://www.sitepen.com/ant/javascript.html">http://www.sitepen.com/ant/javascript.html</a></td>
  260. </tr>
  261. </table>
  262. </subsection>
  263. <subsection name="Building with Ant">
  264. <p>Series of articles that describe a framework for web
  265. application development based on Ant and JUnit.</p>
  266. <table>
  267. <tr>
  268. <th>Author:</th>
  269. <td><a href="mailto:alexc@purpletech.com">Alex Chaffee</a></td>
  270. </tr>
  271. <tr>
  272. <th>URL:</th>
  273. <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/>
  274. 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/>
  275. 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>
  276. </tr>
  277. </table>
  278. </subsection>
  279. <subsection name="Developing with JAXB and Ant">
  280. <p>Series of articles that shows how to use Ant together with
  281. the Java API for XML Binding (JAXB).</p>
  282. <table>
  283. <tr>
  284. <th>Author:</th>
  285. <td>Joseph Shelby</td>
  286. </tr>
  287. <tr>
  288. <th>URL:</th>
  289. <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/>
  290. <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>
  291. </tr>
  292. </table>
  293. </subsection>
  294. </section>
  295. <section name="Presentations">
  296. <subsection name="Ant - presented to the Tucson Java Users Group">
  297. <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>
  298. <table>
  299. <tr>
  300. <th>Author:</th>
  301. <td><a href="mailto:ehatcher@apache.org">Erik Hatcher</a></td>
  302. </tr>
  303. <tr>
  304. <th>URL:</th>
  305. <td><a href="http://erik.hatcher.net/ant-jug.zip">http://erik.hatcher.net/ant-jug.zip</a></td>
  306. </tr>
  307. </table>
  308. </subsection>
  309. <subsection name="Ant Build Tool">
  310. <p>A PowerPoint presentation on Ant 1.2. It provides a basic overview
  311. of Ant&apos;s capabilities.</p>
  312. <table>
  313. <tr>
  314. <th>Author:</th>
  315. <td><a href="mailto:chanezon@netscape.com">Patrick Chanezon</a></td>
  316. </tr>
  317. <tr>
  318. <th>URL:</th>
  319. <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>
  320. </tr>
  321. </table>
  322. </subsection>
  323. <subsection name="Ant">
  324. <p>A detailed Ant 1.3 PowerPoint presentation, made at the St. Louis Java Users Group
  325. meeting in March 2001. Includes a detailed build file and basic
  326. descriptions of all the built in and optional tasks. Updated for Ant 1.4 in October 2001.
  327. Available in PDF format now.</p>
  328. <table>
  329. <tr>
  330. <th>Author:</th>
  331. <td>Mark Volkmann</td>
  332. </tr>
  333. <tr>
  334. <th>URL:</th>
  335. <td><a href="http://www.ociweb.com/downloads/Ant.pdf">http://www.ociweb.com/downloads/Ant.pdf</a></td>
  336. </tr>
  337. </table>
  338. </subsection>
  339. <subsection name="Modern Development Crises">
  340. <p>This presentation is an overview of the current state of software
  341. development today. There are a couple of slides that briefly cover
  342. Ant.</p>
  343. <table>
  344. <tr>
  345. <th>Author:</th>
  346. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  347. </tr>
  348. <tr>
  349. <th>URL:</th>
  350. <td><a href="http://www.iseran.com/Steve/modern_development_processes.html">http://www.iseran.com/Steve/modern_development_processes.html</a></td>
  351. </tr>
  352. </table>
  353. </subsection>
  354. <subsection name="When Web Services Go Bad">
  355. <p>A presentation from the <a
  356. href="http://www.sellsbrothers.com/conference/">Web Services
  357. DevCon</a> in March 2002.</p>
  358. <table>
  359. <tr>
  360. <th>Author:</th>
  361. <td><a href="mailto:steve_l@iseran.com">Steve Loughran</a></td>
  362. </tr>
  363. <tr>
  364. <th>URL:</th>
  365. <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>
  366. </tr>
  367. </table>
  368. </subsection>
  369. </section>
  370. </body>
  371. </document>