some elements required for the build process
[phpeclipse.git] / build / lib / ant-contrib / Ant-Contrib Tasks.htm
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html><head><title>Ant-Contrib Tasks</title></head>
3
4   <body>
5     <table border="0" width="100%"><tbody><tr><td valign="bottom"><h1>Ant-Contrib Tasks</h1></td>
6           <td>
7             <!-- PROJECT LOGO -->
8             <a href="http://sourceforge.net/">
9               <img src="Ant-Contrib%20Tasks_files/sflogo.png" alt="SourceForge logo" align="right" border="0">
10             </a>
11           </td>
12       </tr></tbody></table>
13
14     <h2>Contents</h2>
15
16     <ul>
17       <li><a href="#intro">What's this?</a></li>
18       <li><a href="#install">Installation</a></li>
19       <li><a href="http://ant-contrib.sourceforge.net/cc.html">cc compilation task</a></li>
20       <li><a href="http://ant-contrib.sourceforge.net/tasks/index.html">Other tasks</a></li>
21     </ul>
22
23     <h2><a name="intro">What's this?</a></h2>
24
25     <p>The Ant-Contrib project is a collection of tasks (and at one
26     point maybe types and other tools) for <a href="http://ant.apache.org/">Apache Ant</a>.</p>
27
28     <p>This Software is distributed under the <a href="http://ant-contrib.sourceforge.net/LICENSE.txt">Apache Software License</a>.</p>
29
30     <h2><a name="install">Installation</a></h2>
31
32     <p>First you must install Apache Ant itself, most of the
33     Ant-Contrib tasks require Ant 1.5 or higher to work properly.  You can download Ant <a href="http://ant.apache.org/bindownload.cgi">from
34     Apache</a>.</p>
35
36     <p>Ant-contrib releases are available at the <a href="http://sourceforge.net/project/showfiles.php?group_id=36177">downloads</a> page.
37     Mailing lists, CVS and bug trackers can be accessed from the <a href="http://sourceforge.net/projects/ant-contrib">project</a> page.</p>
38
39     <p>See the <a href="http://ant-contrib.sourceforge.net/cc.html">cc</a> tasks for installation instructions for cpptasks.  To install ant-contrib:</p>
40     
41     <ol>
42       <li>Copy <code>ant-contrib-0.3.jar</code> to the
43       <code>lib</code> directory of your Ant installation.  If you
44       want to use one of the tasks in your own project, add the lines
45 <pre>&lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"/&gt;
46 </pre>
47         to your build file.</li>
48
49       <li>Keep <code>ant-contrib-0.3.jar</code> in a separate
50       location.  You now have to tell Ant explicitly where to find it
51       (say in <code>/usr/share/java/lib</code>):
52 <pre>&lt;taskdef resource="net/sf/antcontrib/antcontrib.properties"&gt;
53   &lt;classpath&gt;
54     &lt;pathelement location="/usr/share/java/lib/ant-contrib-0.3.jar"/&gt;
55   &lt;/classpath&gt;
56 &lt;/taskdef&gt;
57 </pre>
58         </li>
59
60     <hr>
61     <p align="center">Copyright © 2002-2003 Ant-Contrib Project. All
62     rights Reserved.</p>
63
64   </ol></body></html>