dion        2003/08/05 01:11:47

  Modified:    src/plugins-build/jar plugin.properties plugin.jelly
               src/plugins-build/jar/xdocs changes.xml properties.xml
  Log:
  Fix for MAVEN-648.
  Added maven.jar.index property, defaulting to false.
  Added docs and changes entry
  
  Revision  Changes    Path
  1.5       +1 -0      maven/src/plugins-build/jar/plugin.properties
  
  Index: plugin.properties
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jar/plugin.properties,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.properties 31 Jul 2003 06:55:29 -0000      1.4
  +++ plugin.properties 5 Aug 2003 08:11:47 -0000       1.5
  @@ -3,4 +3,5 @@
   # -------------------------------------------------------------------
   maven.jar.manifest.extensions.add=false
   maven.jar.excludes = **/package.html
  +maven.jar.index=false
   maven.remote.group=maven
  
  
  
  1.17      +1 -1      maven/src/plugins-build/jar/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jar/plugin.jelly,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- plugin.jelly      31 Jul 2003 06:50:27 -0000      1.16
  +++ plugin.jelly      5 Aug 2003 08:11:47 -0000       1.17
  @@ -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}">
  
  
  
  1.3       +4 -0      maven/src/plugins-build/jar/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jar/xdocs/changes.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- changes.xml       25 Jul 2003 06:35:27 -0000      1.2
  +++ changes.xml       5 Aug 2003 08:11:47 -0000       1.3
  @@ -3,11 +3,15 @@
     <properties>
       <title>Changes</title>
       <author email="[EMAIL PROTECTED]">Emmanuel Venisse</author>
  +    <author email="[EMAIL PROTECTED]">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>
  
  
  
  1.5       +8 -0      maven/src/plugins-build/jar/xdocs/properties.xml
  
  Index: properties.xml
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/jar/xdocs/properties.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- properties.xml    22 Apr 2003 12:20:49 -0000      1.4
  +++ properties.xml    5 Aug 2003 08:11:47 -0000       1.5
  @@ -37,6 +37,14 @@
             </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>
             <td>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to