You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jm...@apache.org on 2002/06/22 18:12:58 UTC

cvs commit: jakarta-commons-sandbox/fileupload build.xml

jmcnally    2002/06/22 09:12:58

  Modified:    fileupload build.xml
  Log:
  gump wants a dist target and maven:dist is not working, so I am creating a
  custom version.
  
  Revision  Changes    Path
  1.3       +19 -0     jakarta-commons-sandbox/fileupload/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/fileupload/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml	3 Jun 2002 16:31:42 -0000	1.2
  +++ build.xml	22 Jun 2002 16:12:58 -0000	1.3
  @@ -112,4 +112,23 @@
       
     <!-- maven:end -->
   
  +  <target name="dist" depends="maven:jar,maven:javadocs"
  +   description="Create binary distribution">
  +    <property name="dist.home" value="${basedir}/dist"/>
  +    <property name="target.home" value="${basedir}/target"/>
  +    <mkdir      dir="${dist.home}"/>
  +    <copy      file="../LICENSE"
  +              todir="${dist.home}"/>
  +    <copy      file="RELEASE-NOTES.txt"
  +              todir="${dist.home}"/>
  +    <copy     todir="${dist.home}">
  +        <fileset dir="${target.home}" includes="commons-fileupload*.jar"/> 
  +    </copy>
  +    <copy     todir="${dist.home}">
  +        <fileset dir="${target.home}" includes="docs"/>
  +    </copy>
  +
  +  </target>
  +
   </project>
  +
  
  
  

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