You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2004/02/06 15:09:57 UTC

cvs commit: jakarta-jmeter build.xml

sebb        2004/02/06 06:09:57

  Modified:    .        build.xml
  Log:
  Added get-bsf and get-beanshell targets to download the optional jars
  
  Revision  Changes    Path
  1.159     +23 -5     jakarta-jmeter/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/build.xml,v
  retrieving revision 1.158
  retrieving revision 1.159
  diff -u -r1.158 -r1.159
  --- build.xml	21 Jan 2004 15:54:07 -0000	1.158
  +++ build.xml	6 Feb 2004 14:09:57 -0000	1.159
  @@ -59,7 +59,7 @@
       <echo message="Target has been renamed to docs-all"/>
       <antcall target="docs-all"/>
      </target>
  -    
  +
     <target name="api-docs">
       <echo message="Target has been renamed to docs-api"/>
       <antcall target="docs-api"/>
  @@ -1032,6 +1032,24 @@
       </java>
     </target>
   
  -  
  +    
  +    <target name="get-beanshell">
  +      <get src="http://www.beanshell.org/bsh-1.3.0.jar" 
  +        dest="lib/bsh-1.3.0.jar" 
  +        verbose="true" usetimestamp="true"/>
  +    </target>
  +
  +    <target name="get-bsf">
  +      <get src="http://cvs.apache.org/dist/jakarta/bsf/v2.3.0rc1/bin/bsf-bin-2.3.0.zip" 
  +        dest="bsf-bin-2.3.0.zip" 
  +        verbose="true" usetimestamp="true"/>
  +        <!--
  +        Does not appear to be possible to junk the path names in unzip,
  +        so use a temporary directory and delete it.
  +        -->
  +        <unzip src="bsf-bin-2.3.0.zip" dest="tmp"/>
  +        <move file="tmp/bsf-2.3.0/lib/bsf.jar" todir="lib"></move>
  +        <delete dir="tmp"></delete>
  +    </target>
     
   </project>
  
  
  

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