You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ha...@apache.org on 2002/04/10 00:25:23 UTC

cvs commit: jakarta-avalon-excalibur/altrmi piped.xml

hammant     02/04/09 15:25:23

  Added:       altrmi   piped.xml
  Log:
  build file for pipe testing
  
  Revision  Changes    Path
  1.1                  jakarta-avalon-excalibur/altrmi/piped.xml
  
  Index: piped.xml
  ===================================================================
  <project name="Alt (to) RMI" default="usage" basedir=".">
  
  
  <!-- ========== Initialize Properties ===================================== -->
  
  
    <property file="ant.properties"/>                <!-- Component local   -->
    <property file="${user.home}/ant.properties"/>   <!-- User local        -->
   
  
  <!-- ========== Component Declarations ==================================== -->
  
  
    <!-- The base directory for compilation targets -->
    <property name="build.home"              value="build"/>
  
  
  <!-- ========== Compiler Defaults ========================================= -->
  
    
    <!-- For running of tests -->
    <path id="test.classpath">
      <pathelement location="${build.home}/classes"/>
      <pathelement location="${build.home}/genclasses"/>
      <pathelement location="lib/JSX0.9.8.1.jar"/>
      <pathelement location="${avalon-framework.jar}"/>
    </path>    
      
  
  <!-- ========== Executable Targets ======================================== -->
  
    <target name="usage" description="Usage">
      <echo>
        Usage: Run this in two shells.  
        One with target server, the other with target client.
        ${avalon-framework.jar}
      </echo>
    </target>
  
    
    <target name="clientclasses" description="Piped Test - Client Classes">
    
      <ant antfile="base.xml" target="generate"/>
    
      <java classname="org.apache.excalibur.altrmi.test.PipeTest" fork="true">
        <classpath refid="test.classpath"/>
        <arg value="C"/>
      </java>      
    </target>
  
    <target name="serverclasses" description="Piped Test - Server Classes">
    
      <ant antfile="base.xml" target="generate"/>
    
      <java classname="org.apache.excalibur.altrmi.test.PipeTest" fork="true">
        <classpath refid="test.classpath"/>
        <arg value="S"/>
      </java>      
    </target>
  
  
    <target name="dynamicclasses" description="Piped Test - Dynamic Classes">
    
      <ant antfile="base.xml" target="generate"/>
    
      <java classname="org.apache.excalibur.altrmi.test.PipeTest" fork="true">
        <classpath refid="test.classpath"/>
        <arg value="D"/>
      </java>      
    </target>
  
  
  </project>
  
  
  

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