Update docs

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2004-06-19 08:58:52 +00:00
parent 4baab9370e
commit 602ded6152
2 changed files with 12 additions and 12 deletions

View File

@ -26,8 +26,9 @@
<body>
<release version="1.7-SNAPSHOT" date="in CVS">
<action dev="dion" type="fix" issue="MPWAR-22">
Allow use of maven.war.manifest to specify the manifest file location
Allow use of maven.war.manifest to specify the manifest file location.
</action>
<action dev="dion" type="update">Make docs more readable.</action>
</release>
<release version="1.6" date="2004-05-12">
<action dev="brett" type="fix" issue="MPWAR-25">preserve last modified time of source files in the exploded webapp</action>

View File

@ -135,13 +135,12 @@
<td>
Subdirectory of web application context root directory
where tag library descriptors (tld files) will be copied.
Maven WAR Plugin copies to this location all dependencies
(specified in the POM) of the
type <code>"tld"</code> and marked with special meta-information.
The Maven WAR Plugin copies to this location all dependencies,
specified in the POM, of the type <code>tld</code> and marked
with a property of <code>war.bundle</code> set to <code>true</code>.
See the section below for more information.
<br/>
It defaults to
<code>WEB-INF/tld</code>.
It defaults to <code>WEB-INF/tld</code>.
This setting is adhering to
<a href="http://developer.java.sun.com/developer/technicalArticles/javaserverpages/code_convention/"
>SUN Code Conventions for the JavaServer Pages</a>
@ -149,10 +148,10 @@
</tr>
</table>
</section>
<section name="Including artifact in the Webapp">
<section name="Including artifacts in the Webapp">
<p>
You must tell Maven what artifact you want included in the Webapp. This
is achieved by specifying meta-information in the POM, using the
You must tell Maven what artifacts you want included in the Webapp. This
is achieved by specifying a property in the POM, using the
following syntax:
</p>
@ -179,11 +178,11 @@
]]></source>
<p>
This process in type senstive.
This process is type senstive.
Currently following types are supported:
<ol>
<li>jar</li>
<li>tld (see: <a href="#tld_dir">maven.war.tld.dir</a>)</li>
<li>jar (bundled into WEB-INF/lib)</li>
<li>tld (bundled into WEB-INF/tld, see: <a href="#tld_dir">maven.war.tld.dir</a>)</li>
</ol>
</p>
</section>