mirror of
https://github.com/apache/ant.git
synced 2025-05-18 05:54:48 +00:00
101 lines
3.3 KiB
HTML
101 lines
3.3 KiB
HTML
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Language" content="en-us">
|
||
|
<title>Ant User Manual</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<h2><a name="ear">Ear</a></h2>
|
||
|
<h3>Description</h3>
|
||
|
<p>An extension of the <a href="jar.html">Jar</a> task with special
|
||
|
treatment for files that should end up in an Enterprise Application archive.</p>
|
||
|
<p>(The Ear task is a shortcut for specifying the particular layout of a EAR file.
|
||
|
The same thing can be accomplished by using the <i>prefix</i> and <i>fullpath</i>
|
||
|
attributes of zipfilesets in a Zip or Jar task.)</p>
|
||
|
<p>The extended zipfileset element from the zip task (with attributes <i>prefix</i>, <i>fullpath</i>, and <i>src</i>) is available in the War task.</p>
|
||
|
|
||
|
<h3>Parameters</h3>
|
||
|
<table border="1" cellpadding="2" cellspacing="0">
|
||
|
<tr>
|
||
|
<td valign="top"><b>Attribute</b></td>
|
||
|
<td valign="top"><b>Description</b></td>
|
||
|
<td align="center" valign="top"><b>Required</b></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">earfile</td>
|
||
|
<td valign="top">the ear-file to create.</td>
|
||
|
<td valign="top" align="center">Yes</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">appxml</td>
|
||
|
<td valign="top">The deployment descriptor to use (META-INF/application.xml).</td>
|
||
|
<td valign="top" align="center">Yes</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">basedir</td>
|
||
|
<td valign="top">the directory from which to jar the files.</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">compress</td>
|
||
|
<td valign="top">Not only store data but also compress them, defaults to true</td>
|
||
|
<td align="center" valign="top">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">includes</td>
|
||
|
<td valign="top">comma separated list of patterns of files that must be
|
||
|
included. All files are included when omitted.</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">includesfile</td>
|
||
|
<td valign="top">the name of a file. Each line of this file is
|
||
|
taken to be an include pattern</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">excludes</td>
|
||
|
<td valign="top">comma separated list of patterns of files that must be
|
||
|
excluded. No files (except default excludes) are excluded when omitted.</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">excludesfile</td>
|
||
|
<td valign="top">the name of a file. Each line of this file is
|
||
|
taken to be an exclude pattern</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">defaultexcludes</td>
|
||
|
<td valign="top">indicates whether default excludes should be used or not
|
||
|
("yes"/"no"). Default excludes are used when omitted.</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">manifest</td>
|
||
|
<td valign="top">the manifest file to use.</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td valign="top">whenempty</td>
|
||
|
<td valign="top">Behavior to use if no files match.</td>
|
||
|
<td valign="top" align="center">No</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<h2>Example</h2>
|
||
|
<pre>
|
||
|
<ear earfile="${build.dir}/myapp.ear" appxml="${src.dir}/metadata/application.xml">
|
||
|
<fileset dir="${build.dir}" includes="*.jar,*.war"/>
|
||
|
</ear>
|
||
|
</pre>
|
||
|
<hr>
|
||
|
<p align="center">Copyright © 2000,2001 Apache Software Foundation. All rights
|
||
|
Reserved.</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|