You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by eh...@apache.org on 2002/01/06 14:55:55 UTC

cvs commit: jakarta-ant build.xml

ehatcher    02/01/06 05:55:55

  Modified:    .        build.xml
  Log:
  Added LICENSE.txt to META-INF of distributable JAR's per jakarta-general suggestions.
  
  Revision  Changes    Path
  1.219     +4 -0      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.218
  retrieving revision 1.219
  diff -u -r1.218 -r1.219
  --- build.xml	19 Dec 2001 18:49:48 -0000	1.218
  +++ build.xml	6 Jan 2002 13:55:55 -0000	1.219
  @@ -349,16 +349,20 @@
             depends="build"
             description="--> creates the Apache Ant jars">
   
  +    <copy file="LICENSE" tofile="${build.dir}/LICENSE.txt"/>
  +    
       <jar file="${build.lib}/${name}.jar"
            basedir="${build.classes}"
            manifest="${manifest}">
         <exclude name="org/apache/tools/ant/taskdefs/optional/**" />
  +      <metainf dir="${build.dir}" includes="LICENSE.txt"/>
       </jar>
   
       <jar file="${build.lib}/optional.jar"
            basedir="${build.classes}"
            manifest="${manifest}">
         <include name="org/apache/tools/ant/taskdefs/optional/**" />
  +      <metainf dir="${build.dir}" includes="LICENSE.txt"/>
       </jar>
   
     </target>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>