You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2004/02/28 00:17:54 UTC

cvs commit: jakarta-commons/el build.xml

scolebourne    2004/02/27 15:17:54

  Modified:    el       build.xml
  Log:
  Change to Apache License 2.0
  
  Revision  Changes    Path
  1.10      +11 -4     jakarta-commons/el/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml	25 Feb 2004 22:40:49 -0000	1.9
  +++ build.xml	27 Feb 2004 23:17:53 -0000	1.10
  @@ -246,7 +246,9 @@
     <target name="dist" depends="compile,javadoc"
      description="Create binary distribution">
       <mkdir      dir="${dist.home}"/>
  -    <copy      file="../LICENSE"
  +    <copy      file="LICENSE.txt"
  +              todir="${dist.home}"/>
  +    <copy      file="NOTICE.txt"
                 todir="${dist.home}"/>
       <copy      file="RELEASE-NOTES.txt"
                 todir="${dist.home}"/>
  @@ -258,8 +260,10 @@
      description="Create jar">
       <mkdir      dir="${dist.home}"/>
       <mkdir      dir="${build.home}/classes/META-INF"/>
  -    <copy      file="../LICENSE"
  +    <copy      file="LICENSE.txt"
                tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
  +    <copy      file="NOTICE.txt"
  +             tofile="${build.home}/classes/META-INF/NOTICE.txt"/>
       <jar    jarfile="${commons-el.jar}"
              manifest="${build.home}/conf/MANIFEST.MF">
        <fileset dir="${build.home}/classes" includes="org/apache/commons/el/**" />
  @@ -273,12 +277,15 @@
       <copy  todir="${build.home}/classes/META-INF" filtering="on">
         <fileset dir="${conf.home}" includes="*.MF"/>
       </copy>
  -    <copy      file="../LICENSE"
  +    <copy      file="LICENSE.txt"
                tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
  +    <copy      file="NOTICE.txt"
  +             tofile="${build.home}/classes/META-INF/NOTICE.txt"/>
       <jar    jarfile="${commons-el.jar}"
              manifest="${build.home}/classes/META-INF/MANIFEST.MF">
        <fileset dir="${build.home}/classes" includes="org/apache/commons/el/**" />
        <fileset dir="${build.home}/classes" includes="META-INF/LICENSE.txt" />
  +     <fileset dir="${build.home}/classes" includes="META-INF/NOTICE.txt" />
       </jar>  
   
     </target>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org