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.

index.html 5.8 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <!-- Content Stylesheet for Site -->
  3. <!-- start the processing -->
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
  7. <meta name="author" value="Adam Murdoch">
  8. <meta name="email" value="adammurdoch@apache.org">
  9. <title>Apache Myrmidon - Introduction</title>
  10. </head>
  11. <body bgcolor="#ffffff" text="#000000" link="#525D76">
  12. <table border="0" width="100%" cellspacing="0">
  13. <!-- TOP IMAGE -->
  14. <tr>
  15. <td> <td colspan="2">
  16. <a href="http://jakarta.apache.org"><img src="http://jakarta.apache.org/images/jakarta-logo.gif" align="left" border="0"/></a>
  17. </td>
  18. </td>
  19. <td valign="bottom"><div align="right"><b><font size="+3" color="#525D76">Apache Myrmidon</font></b></div></td>
  20. </tr>
  21. </table>
  22. <table border="0" width="100%" cellspacing="4">
  23. <tr><td colspan="2">
  24. <hr noshade="" size="1"/>
  25. </td></tr>
  26. <tr>
  27. <!-- LEFT SIDE NAVIGATION -->
  28. <td valign="top" nowrap="true">
  29. <p><strong>Myrmidon</strong></p>
  30. <ul>
  31. <li> <a href="./index.html">Introduction</a>
  32. </li>
  33. <li> <a href="./getinvolved.html">Get Involved</a>
  34. </li>
  35. <li> <a href="./user.html">Building Myrmidon</a>
  36. </li>
  37. <li> <a href="./todo.html">Todo List</a>
  38. </li>
  39. </ul>
  40. <p><strong>User Guide</strong></p>
  41. <ul>
  42. <li> <a href="./buildfile.html">Build file</a>
  43. </li>
  44. <li> <a href="./vfs.html">Virtual File System</a>
  45. </li>
  46. </ul>
  47. <p><strong>Extending Ant</strong></p>
  48. <ul>
  49. <li> <a href="./task.html">Task Writers HOWTO</a>
  50. </li>
  51. <li> <a href="./classloader.html">ClassLoader HOWTO</a>
  52. </li>
  53. <li> <a href="./librarys.html">Library HOWTO</a>
  54. </li>
  55. </ul>
  56. <p><strong>Container Design</strong></p>
  57. <ul>
  58. </ul>
  59. </td>
  60. <td align="left" valign="top">
  61. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  62. <tr><td bgcolor="#525D76">
  63. <font color="#ffffff" face="arial,helvetica,sanserif">
  64. <a name="What is Myrmidon?"><strong>What is Myrmidon?</strong></a>
  65. </font>
  66. </td></tr>
  67. <tr><td>
  68. <blockquote>
  69. <p>
  70. Myrmidon is one of the Ant 2 proposals currently in development. You can
  71. read more about the goals of Ant 2
  72. <a href="http://jakarta.apache.org/ant/ant2/">here</a>.
  73. </p>
  74. <p>
  75. Myrmidon is a general-purpose <i>task engine</i>. It contains the basic
  76. building blocks for assembling any sort of task-based tool. Ant 2
  77. is an example of such a tool, which could be assembled using the Myrmidon task
  78. engine, and a library of build related tasks.
  79. </p>
  80. <p>
  81. Currently, Myrmidon is a prototype of what a task engine might look. It
  82. includes a small set of tasks and data types. We are currently porting
  83. many of the Ant 1.x tasks to the Myrmidon task engine.
  84. </p>
  85. <p>
  86. </p>
  87. </blockquote>
  88. </td></tr>
  89. </table>
  90. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  91. <tr><td bgcolor="#525D76">
  92. <font color="#ffffff" face="arial,helvetica,sanserif">
  93. <a name="Differences to Ant 1.x"><strong>Differences to Ant 1.x</strong></a>
  94. </font>
  95. </td></tr>
  96. <tr><td>
  97. <blockquote>
  98. <p>Some of the differences between Ant 1.x and Myrmidon:</p>
  99. <ul>
  100. <li>
  101. Groups of tasks can be assembled into self-describing <i>antlib</i> task
  102. libraries. This makes it very easy to distribute and install tasks and data-types.
  103. </li>
  104. <li>
  105. A project can import other projects, and reference their targets.
  106. </li>
  107. <li>
  108. Changes to the property model:
  109. <ul>
  110. <li>Properties and data type references now share the same namespace.</li>
  111. <li>Properties are mutable.</li>
  112. <li>Properties are scoped into global, local, and parent contexts.</li>
  113. <li><code>if</code> and <code>unless</code> checks now test the property
  114. value against <code>false</code>, in addition to testing set/not-set.</li>
  115. </ul>
  116. </li>
  117. <li>
  118. Changes to task and data-type API:
  119. <ul>
  120. <li>An interface based API, through which a task interacts with the
  121. task engine, and the services it provides.</li>
  122. <li>A well-defined object lifecycle.</li>
  123. <li>Polymorphic types are supported when objects are configured.</li>
  124. <li>Reference handling is handled automatically when objects are configured.</li>
  125. <li>Aspects can be used to decorate tasks, to add facilities like logging,
  126. error handling, or user preferences.</li>
  127. </ul>
  128. </li>
  129. <li>
  130. A set of well-defined services and APIs have been introduced, to allow
  131. tasks to do their work without depending on other tasks:
  132. <ul>
  133. <li>Execute external commands.</li>
  134. <li>Execute other tasks.</li>
  135. <li>Manage ClassLoaders and Class-paths.</li>
  136. <li>Virtual file system (in progress).</li>
  137. <li>Execute Java applications (in progress).</li>
  138. <li>...</li>
  139. </ul>
  140. </li>
  141. </ul>
  142. <p>There are plenty more features planned. You can read about them <a href="todo.html">here</a>.</p>
  143. </blockquote>
  144. </td></tr>
  145. </table>
  146. </td>
  147. </tr>
  148. <!-- FOOTER -->
  149. <tr><td colspan="2">
  150. <hr noshade="" size="1"/>
  151. </td></tr>
  152. <tr><td colspan="2">
  153. <div align="center"><font color="#525D76" size="-1"><em>
  154. Copyright &#169; 2000-2002, Apache Software Foundation
  155. </em></font></div>
  156. </td></tr>
  157. </table>
  158. </body>
  159. </html>
  160. <!-- end the processing -->