hammant     2003/01/12 02:12:44

  Modified:    demo     build.xml
  Log:
  change 'build' usage to '${build.dir}' to try to fix gump issues.
  
  Revision  Changes    Path
  1.75      +12 -12    jakarta-avalon-apps/demo/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-apps/demo/build.xml,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- build.xml 9 Jan 2003 23:20:00 -0000       1.74
  +++ build.xml 12 Jan 2003 10:12:43 -0000      1.75
  @@ -95,9 +95,9 @@
         <classpath refid="project.class.path"/>
       </rmic>
       
  -    <altrmiproxies genname="helloworld" srcgendir="build/genjava" 
  +    <altrmiproxies genname="helloworld" srcgendir="${build.dir}/genjava" 
           interfaces="org.apache.avalon.apps.demos.helloworldserver.HelloWorldServer"
  -        classgendir="build/genclasses">
  +        classgendir="${build.dir}/genclasses">
         <classpath>
           <pathelement 
location="../common/lib/excalibur-altrmi-client-interfaces-0.8.jar"/>
           <pathelement location="../common/lib/excalibur-altrmi-client-impl-0.8.jar"/>
  @@ -172,7 +172,7 @@
       </jar>
   
       <jar jarfile="${build.lib}/HelloWorldAltrmiProxy.jar" compress="false">
  -      <fileset dir="build/genclasses">
  +      <fileset dir="${build.dir}/genclasses">
           <include name="**"/>
         </fileset>
       </jar>
  @@ -187,26 +187,26 @@
         </fileset>
       </jar>
   
  -    <mkdir dir="build/temp"/>
  -    <unzip src="../common/lib/excalibur-altrmi-common-0.8.jar" dest="build/temp" />
  -    <unzip src="../common/lib/excalibur-altrmi-client-interfaces-0.8.jar" 
dest="build/temp" />
  -    <unzip src="../common/lib/excalibur-altrmi-client-impl-0.8.jar" 
dest="build/temp" />
  +    <mkdir dir="${build.dir}/temp"/>
  +    <unzip src="../common/lib/excalibur-altrmi-common-0.8.jar" 
dest="${build.dir}/temp" />
  +    <unzip src="../common/lib/excalibur-altrmi-client-interfaces-0.8.jar" 
dest="${build.dir}/temp" />
  +    <unzip src="../common/lib/excalibur-altrmi-client-impl-0.8.jar" 
dest="${build.dir}/temp" />
   
       <jar jarfile="${build.lib}/avalon-altrmidemo-tester.jar" compress="false" 
manifest="${manifest.dir}/AltrmiHelloWorldTest.mf">
  -      <fileset dir="build/genclasses">
  +      <fileset dir="${build.dir}/genclasses">
           <include name="**"/>
         </fileset>
  -      <fileset dir="build/temp">
  +      <fileset dir="${build.dir}/temp">
           <include name="org/apache/excalibur/altrmi/**"/>
         </fileset>
  -      <fileset dir="build/classes">
  +      <fileset dir="${build.dir}/classes">
           <include 
name="org/apache/avalon/apps/demos/altrmihelloworldserver/AltrmiHelloWorldServer.class"/>
           <include 
name="org/apache/avalon/apps/demos/altrmihelloworldserver/AltrmiHelloWorldServerTester.class"/>
           <include 
name="org/apache/avalon/apps/demos/helloworldserver/HelloWorldServer.class"/>
         </fileset>
       </jar>
       
  -    <delete    dir="build/temp"/>
  +    <delete    dir="${build.dir}/temp"/>
   
   
     </target>
  @@ -332,7 +332,7 @@
     <target name="test-altrmi" depends="compile">
       <java 
classname="org.apache.avalon.apps.demos.altrmihelloworldserver.AltrmiHelloWorldServerTester">
         <classpath>
  -        <pathelement location="build/lib/avalon-altrmidemo-tester.jar"/>
  +        <pathelement location="${build.dir}/lib/avalon-altrmidemo-tester.jar"/>
         </classpath>
       </java>
     </target>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to