Fix for MAVEN-648.

Added maven.jar.index property, defaulting to false.
Added docs and changes entry


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113791 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2003-08-05 08:11:47 +00:00
parent ffb0aedaee
commit c6cf6b484d
4 changed files with 14 additions and 1 deletions

View File

@ -27,7 +27,7 @@
<ant:jar
jarfile="${maven.build.dir}/${maven.final.name}.jar"
basedir="${maven.build.dest}"
index="true"
index="${maven.jar.index}"
excludes="${maven.jar.excludes}">
<j:if test="${maven.jar.manifest.available}">

View File

@ -3,4 +3,5 @@
# -------------------------------------------------------------------
maven.jar.manifest.extensions.add=false
maven.jar.excludes = **/package.html
maven.jar.index=false
maven.remote.group=maven

View File

@ -3,11 +3,15 @@
<properties>
<title>Changes</title>
<author email="evenisse@ifrance.com">Emmanuel Venisse</author>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<release version="1.1" date="in CVS">
<action dev="dion" type="update">
Added maven.jar.index property
</action>
<action dev="dion" type="update">
Upgrade to velocity 1.4-dev
</action>

View File

@ -36,6 +36,14 @@
by the "java:jar" goal.
</td>
</tr>
<tr>
<td>maven.jar.index</td>
<td>Yes</td>
<td>
Whether to create an index list to speed up classloading.
This is a JDK 1.3+ specific feature. Defaults to false.
</td>
</tr>
<tr>
<td>maven.jar.manifest</td>
<td>Yes</td>