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/11 21:51:24 UTC

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

seibert     2002/09/11 12:51:24

  Modified:    java/test/soap build.xml
               java/test/wsdl/multithread build.xml
               java/test/wsdl/clash build.xml
               java/test/wsdl/interop build.xml
               java/test/types build.xml
               java/test/encoding build.xml
  Log:
  Also fixed the ant home here
  
  Revision  Changes    Path
  1.6       +2 -2      xml-axis/java/test/soap/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/soap/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	10 Sep 2002 16:06:52 -0000	1.5
  +++ build.xml	11 Sep 2002 19:51:24 -0000	1.6
  @@ -51,9 +51,9 @@
   
   <target name="copy" depends="setenv">
     <echo message="Compiling test.utils"/>
  -  <ant inheritAll="true" antfile="${axis.home}/test/utils/build.xml" target="compile"/>
  +  <ant dir="${axis.home}" antfile="${axis.home}/test/utils/build.xml" target="compile"/>
     <echo message="Compiling test.RPCDispatch"/>
  -  <ant inheritAll="true" antfile="${axis.home}/test/RPCDispatch/build.xml" target="compile"/>
  +  <ant dir="${axis.home}" antfile="${axis.home}/test/RPCDispatch/build.xml" target="compile"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.7       +1 -1      xml-axis/java/test/wsdl/multithread/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/multithread/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	10 Sep 2002 16:06:54 -0000	1.6
  +++ build.xml	11 Sep 2002 19:51:24 -0000	1.7
  @@ -51,7 +51,7 @@
   </target>
   
   <target name="copy" depends="setenv">
  -  <ant antfile="${axis.home}/samples/addr/build.xml"/>
  +  <ant dir="${axis.home}" antfile="${axis.home}/samples/addr/build.xml"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.8       +1 -1      xml-axis/java/test/wsdl/clash/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/clash/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	10 Sep 2002 16:06:53 -0000	1.7
  +++ build.xml	11 Sep 2002 19:51:24 -0000	1.8
  @@ -49,7 +49,7 @@
   </target>
   
   <target name="copy" depends="setenv">
  -    <ant antfile="${axis.home}/test/wsdl/filegen/build.xml" target="compile"/>
  +    <ant dir="${axis.home}" antfile="${axis.home}/test/wsdl/filegen/build.xml" target="compile"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.7       +3 -3      xml-axis/java/test/wsdl/interop/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	10 Sep 2002 16:06:54 -0000	1.6
  +++ build.xml	11 Sep 2002 19:51:24 -0000	1.7
  @@ -48,8 +48,8 @@
   </target>
    
     <target name="copy" depends="setenv">
  -     <ant antfile="${axis.home}/samples/echo/build.xml" target="compile" />
  -     <ant antfile="${axis.home}/samples/jaxrpc/build.xml" target="compile" />
  +     <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml" target="compile" />
  +     <ant dir="${axis.home}" antfile="${axis.home}/samples/jaxrpc/build.xml" target="compile" />
     </target>
   
     <target name="compile" depends="copy" >
  @@ -418,7 +418,7 @@
       </javac>
       <!-- Step 7:  see test/wsdl/interop3/Import2TestCase.java -->
       <!-- Step 8:  see test/wsdl/interop3/Import2TestCase.java -->
  -    <ant antfile="${axis.home}/test/wsdl/interop3/groupE/Interop3GroupE.xml"/>
  +    <ant dir="${axis.home}" antfile="${axis.home}/test/wsdl/interop3/groupE/Interop3GroupE.xml"/>
       <!-- UDDI 1.0 WSDL's -->
   <!-- tomj: turn these off while attribute processing is in flux
       <wsdl2java url="http://www.uddi.org/wsdl/inquire_v1.wsdl"
  
  
  
  1.6       +1 -1      xml-axis/java/test/types/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/types/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	10 Sep 2002 16:06:52 -0000	1.5
  +++ build.xml	11 Sep 2002 19:51:24 -0000	1.6
  @@ -49,7 +49,7 @@
   
   <target name="copy" depends="setenv">
     <echo message="Compiling samples.echo"/>
  -  <ant antfile="${axis.home}/samples/echo/build.xml"/>
  +  <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.6       +1 -1      xml-axis/java/test/encoding/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/encoding/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml	10 Sep 2002 16:06:51 -0000	1.5
  +++ build.xml	11 Sep 2002 19:51:24 -0000	1.6
  @@ -49,7 +49,7 @@
   
   <target name="copy" depends="setenv">
     <echo message="Compiling samples.echo"/>
  -  <ant antfile="${axis.home}/samples/echo/build.xml"/>
  +  <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml"/>
   </target>
   
   <target name="compile" depends="copy">