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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <li> <a href="./ant1compat.html">Ant1 Compatibility Layer</a>
  47. </li>
  48. </ul>
  49. <p><strong>Extending Ant</strong></p>
  50. <ul>
  51. <li> <a href="./task.html">Task Writers HOWTO</a>
  52. </li>
  53. <li> <a href="./classloader.html">ClassLoader HOWTO</a>
  54. </li>
  55. <li> <a href="./librarys.html">Library HOWTO</a>
  56. </li>
  57. </ul>
  58. <p><strong>Container Design</strong></p>
  59. <ul>
  60. </ul>
  61. </td>
  62. <td align="left" valign="top">
  63. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  64. <tr><td bgcolor="#525D76">
  65. <font color="#ffffff" face="arial,helvetica,sanserif">
  66. <a name="What is Myrmidon?"><strong>What is Myrmidon?</strong></a>
  67. </font>
  68. </td></tr>
  69. <tr><td>
  70. <blockquote>
  71. <p>
  72. Myrmidon is one of the Ant 2 proposals currently in development. You can
  73. read more about the goals of Ant 2
  74. <a href="http://jakarta.apache.org/ant/ant2/">here</a>.
  75. </p>
  76. <p>
  77. Myrmidon is a general-purpose <i>task engine</i>. It contains the basic
  78. building blocks for assembling any sort of task-based tool. Ant 2
  79. is an example of such a tool, which could be assembled using the Myrmidon task
  80. engine, and a library of build related tasks.
  81. </p>
  82. <p>
  83. Currently, Myrmidon is a prototype of what a task engine might look. It
  84. includes a small set of tasks and data types. We are currently porting
  85. many of the Ant 1.x tasks to the Myrmidon task engine.
  86. </p>
  87. <p>
  88. </p>
  89. </blockquote>
  90. </td></tr>
  91. </table>
  92. <table border="0" cellspacing="0" cellpadding="2" width="100%">
  93. <tr><td bgcolor="#525D76">
  94. <font color="#ffffff" face="arial,helvetica,sanserif">
  95. <a name="Differences to Ant 1.x"><strong>Differences to Ant 1.x</strong></a>
  96. </font>
  97. </td></tr>
  98. <tr><td>
  99. <blockquote>
  100. <p>Some of the differences between Ant 1.x and Myrmidon:</p>
  101. <ul>
  102. <li>
  103. Groups of tasks can be assembled into self-describing <i>antlib</i> task
  104. libraries. This makes it very easy to distribute and install tasks and data-types.
  105. </li>
  106. <li>
  107. A project can import other projects, and reference their targets.
  108. </li>
  109. <li>
  110. Changes to the property model:
  111. <ul>
  112. <li>Properties and data type references now share the same namespace.</li>
  113. <li>Properties are mutable.</li>
  114. <li>Properties are scoped into global, local, and parent contexts.</li>
  115. <li><code>if</code> and <code>unless</code> checks now test the property
  116. value against <code>false</code>, in addition to testing set/not-set.</li>
  117. </ul>
  118. </li>
  119. <li>
  120. Changes to task and data-type API:
  121. <ul>
  122. <li>An interface based API, through which a task interacts with the
  123. task engine, and the services it provides.</li>
  124. <li>A well-defined object lifecycle.</li>
  125. <li>Polymorphic types are supported when objects are configured.</li>
  126. <li>Reference handling is handled automatically when objects are configured.</li>
  127. <li>Aspects can be used to decorate tasks, to add facilities like logging,
  128. error handling, or user preferences.</li>
  129. </ul>
  130. </li>
  131. <li>
  132. A set of well-defined services and APIs have been introduced, to allow
  133. tasks to do their work without depending on other tasks:
  134. <ul>
  135. <li>Execute external commands.</li>
  136. <li>Execute other tasks.</li>
  137. <li>Manage ClassLoaders and Class-paths.</li>
  138. <li>Virtual file system (in progress).</li>
  139. <li>Execute Java applications (in progress).</li>
  140. <li>...</li>
  141. </ul>
  142. </li>
  143. </ul>
  144. <p>There are plenty more features planned. You can read about them <a href="todo.html">here</a>.</p>
  145. </blockquote>
  146. </td></tr>
  147. </table>
  148. </td>
  149. </tr>
  150. <!-- FOOTER -->
  151. <tr><td colspan="2">
  152. <hr noshade="" size="1"/>
  153. </td></tr>
  154. <tr><td colspan="2">
  155. <div align="center"><font color="#525D76" size="-1"><em>
  156. Copyright &#169; 2000-2002, Apache Software Foundation
  157. </em></font></div>
  158. </td></tr>
  159. </table>
  160. </body>
  161. </html>
  162. <!-- end the processing -->