You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by co...@apache.org on 2002/05/01 04:31:45 UTC

cvs commit: jakarta-avalon-apps/httpproxy build.xml

colus       02/04/30 19:31:45

  Modified:    httpproxy build.xml
  Log:
  Follow sar naming scheme.
  Other applications are use avalon-${name}.sar style.
  
  Revision  Changes    Path
  1.13      +4 -4      jakarta-avalon-apps/httpproxy/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-apps/httpproxy/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml	25 Apr 2002 14:57:50 -0000	1.12
  +++ build.xml	1 May 2002 02:31:44 -0000	1.13
  @@ -142,7 +142,7 @@
   
     <target name="sars" depends="jars">
   
  -    <sar sarfile="${build.lib}/${name}.sar"
  +    <sar sarfile="${build.lib}/avalon-${name}.sar"
            config="${conf.dir}/${name}-config.xml"
            environment="${conf.dir}/${name}-environment.xml"
            assembly="${conf.dir}/${name}-assembly.xml" >
  @@ -321,7 +321,7 @@
       </copy>
   
       <!-- Not allowed to distribute glue thus no soaphttpproxy jar -->
  -    <copy file="${build.lib}/${name}.sar" tofile="${bin.dist.dir}/${name}-${version}.sar"/>
  +    <copy file="${build.lib}/avalon-${name}.sar" tofile="${bin.dist.dir}/avalon-${name}-${version}.sar"/>
   
       <chmod dir="${bin.dist.dir}" perm="go-rwx" />
     </target>
  @@ -350,14 +350,14 @@
       <!-- <fail message="install.dir not specified." unless="install.dir"/> -->
       <echo message="Installing to ${install.dir}" />
       <delete dir="${install.dir}/${name}" />
  -    <copy file="${build.lib}/${name}.sar" todir="${install.dir}" />
  +    <copy file="${build.lib}/avalon-${name}.sar" todir="${install.dir}" />
     </target>
   
     <target name="uninstall" description="Uninstalls from Phoenix">
   
       <!-- <fail message="install.dir not specified." unless="install.dir"/> -->
       <delete dir="${install.dir}/${name}/" />
  -    <delete file="${name}.sar" dir="${install.dir}"/>
  +    <delete file="avalon-${name}.sar" dir="${install.dir}"/>
     </target>
   
     <target name="clean" description="Cleans up artifacts from build process">
  
  
  

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