You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2002/09/04 21:17:04 UTC

cvs commit: xml-axis/java/test/functional build.xml

seibert     2002/09/04 12:17:04

  Modified:    java/test/functional build.xml
  Log:
  Changed up path references for the axis.home syntax
  
  Revision  Changes    Path
  1.5       +4 -4      xml-axis/java/test/functional/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/functional/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml	27 Aug 2002 14:23:10 -0000	1.4
  +++ build.xml	4 Sep 2002 19:17:04 -0000	1.5
  @@ -50,16 +50,16 @@
   
   <target name="compile" depends="copy">
     <echo message="Compiling test.functional"/>
  -  <javac srcdir="." destdir="${build.dest}" debug="${debug}">
  +  <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
       <classpath>
           <path refid="classpath"/>
       </classpath>
       <include name="test/functional/*.java"/>
     </javac>
     <!-- first, put the JWS where the functional test can see it -->
  -  <mkdir dir="build/jws" />
  -  <copy file="${axis.home}/test/functional/AltStockQuoteService.jws" todir="build/jws" />
  -  <copy file="${axis.home}/test/functional/GlobalTypeTest.jws" todir="build/jws"/>
  +  <mkdir dir="${axis.home}/build/jws" />
  +  <copy file="${axis.home}/test/functional/AltStockQuoteService.jws" todir="${axis.home}/build/jws" />
  +  <copy file="${axis.home}/test/functional/GlobalTypeTest.jws" todir="${axis.home}/build/jws"/>
   </target>
   
   <target name="junit-functional-prepare" if="junit.present">