morgand     2003/01/23 13:15:45

  Modified:    jelly    build-all.xml
  Log:
  added clean-skiplib target for faster builds and documentation
  on noget property
  
  Revision  Changes    Path
  1.14      +20 -1     jakarta-commons-sandbox/jelly/build-all.xml
  
  Index: build-all.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/build-all.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build-all.xml     23 Jan 2003 19:28:02 -0000      1.13
  +++ build-all.xml     23 Jan 2003 21:15:45 -0000      1.14
  @@ -103,6 +103,21 @@
       </antcall>
     </target>
     
  +  <!-- 
  +    clean out all jelly-related builds without 
  +    deleting existing target/lib directories,
  +    not quite as safe as a clean build but much faster
  +    than reloading all the "target/lib" directories
  +  -->
  +  <target name="clean-skiplib">
  +    <delete>
  +      <fileset dir="." >
  +        <include name="**/target/**"/>
  +        <exclude name="**/target/lib/*"/>
  +      </fileset>
  +    </delete>
  +  </target>
  +  
     <target name="ant">
       <antcall target="subexec">
         <param name="sub.command" value="maven.bat ant"/>
  @@ -323,7 +338,11 @@
       </antcall>
     </target>
     
  -  <!-- don't call directly, called inside jar-* tasks -->
  +  <!-- 
  +    don't call directly, called inside jar-* tasks 
  +    if you set the noget property, the jars will
  +    not be checked against the server
  +  -->
     <target name="prepare-taglib-deps">
       <ant dir="jelly-tags/${sub.taglib}" target="get-deps"/>
       
  
  
  

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

Reply via email to