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/12 23:07:38 UTC

cvs commit: xml-axis/java/test/wsdl/multithread build.xml

seibert     2002/09/12 14:07:38

  Modified:    java/test/encoding build.xml
               java/test/functional build.xml
               java/test/soap build.xml
               java/test/types build.xml
               java/test/wsdl/interop build.xml
               java/test/wsdl/multithread build.xml
  Log:
  SHould fix the (../..) and (../../..) not valid problems
  
  Revision  Changes    Path
  1.7       +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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	11 Sep 2002 19:51:24 -0000	1.6
  +++ build.xml	12 Sep 2002 21:07:38 -0000	1.7
  @@ -49,7 +49,7 @@
   
   <target name="copy" depends="setenv">
     <echo message="Compiling samples.echo"/>
  -  <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml"/>
  +  <ant antfile="${axis.home}/samples/echo/build.xml"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.11      +1 -1      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.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	11 Sep 2002 19:45:23 -0000	1.10
  +++ build.xml	12 Sep 2002 21:07:38 -0000	1.11
  @@ -45,7 +45,7 @@
   <target name="clean"/>
   
   <target name="copy" depends="setenv">
  -<ant dir="${axis.home}" antfile="${axis.home}/buildSamples.xml" target="compile"/>
  +<ant  antfile="${axis.home}/buildSamples.xml" target="compile"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.7       +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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	11 Sep 2002 19:51:24 -0000	1.6
  +++ build.xml	12 Sep 2002 21:07:38 -0000	1.7
  @@ -51,9 +51,9 @@
   
   <target name="copy" depends="setenv">
     <echo message="Compiling test.utils"/>
  -  <ant dir="${axis.home}" antfile="${axis.home}/test/utils/build.xml" target="compile"/>
  +  <ant antfile="${axis.home}/test/utils/build.xml" target="compile"/>
     <echo message="Compiling test.RPCDispatch"/>
  -  <ant dir="${axis.home}" antfile="${axis.home}/test/RPCDispatch/build.xml" target="compile"/>
  +  <ant antfile="${axis.home}/test/RPCDispatch/build.xml" target="compile"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.7       +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.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml	11 Sep 2002 19:51:24 -0000	1.6
  +++ build.xml	12 Sep 2002 21:07:38 -0000	1.7
  @@ -49,7 +49,7 @@
   
   <target name="copy" depends="setenv">
     <echo message="Compiling samples.echo"/>
  -  <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml"/>
  +  <ant antfile="${axis.home}/samples/echo/build.xml"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  
  1.8       +2 -2      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.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	11 Sep 2002 19:51:24 -0000	1.7
  +++ build.xml	12 Sep 2002 21:07:38 -0000	1.8
  @@ -48,8 +48,8 @@
   </target>
    
     <target name="copy" depends="setenv">
  -     <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" />
  +     <ant antfile="${axis.home}/samples/echo/build.xml" target="compile" />
  +     <ant antfile="${axis.home}/samples/jaxrpc/build.xml" target="compile" />
     </target>
   
     <target name="compile" depends="copy" >
  
  
  
  1.8       +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.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	11 Sep 2002 19:51:24 -0000	1.7
  +++ build.xml	12 Sep 2002 21:07:38 -0000	1.8
  @@ -51,7 +51,7 @@
   </target>
   
   <target name="copy" depends="setenv">
  -  <ant dir="${axis.home}" antfile="${axis.home}/samples/addr/build.xml"/>
  +  <ant antfile="${axis.home}/samples/addr/build.xml"/>
   </target>
   
   <target name="compile" depends="copy">
  
  
  

Re: cvs commit: xml-axis/java/test/wsdl/multithread build.xml

Posted by Davanum Srinivas <di...@yahoo.com>.
Matt,

This change broke Gump :(

-- dims

--- seibert@apache.org wrote:
> seibert     2002/09/12 14:07:38
> 
>   Modified:    java/test/encoding build.xml
>                java/test/functional build.xml
>                java/test/soap build.xml
>                java/test/types build.xml
>                java/test/wsdl/interop build.xml
>                java/test/wsdl/multithread build.xml
>   Log:
>   SHould fix the (../..) and (../../..) not valid problems
>   
>   Revision  Changes    Path
>   1.7       +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.6
>   retrieving revision 1.7
>   diff -u -r1.6 -r1.7
>   --- build.xml	11 Sep 2002 19:51:24 -0000	1.6
>   +++ build.xml	12 Sep 2002 21:07:38 -0000	1.7
>   @@ -49,7 +49,7 @@
>    
>    <target name="copy" depends="setenv">
>      <echo message="Compiling samples.echo"/>
>   -  <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml"/>
>   +  <ant antfile="${axis.home}/samples/echo/build.xml"/>
>    </target>
>    
>    <target name="compile" depends="copy">
>   
>   
>   
>   1.11      +1 -1      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.10
>   retrieving revision 1.11
>   diff -u -r1.10 -r1.11
>   --- build.xml	11 Sep 2002 19:45:23 -0000	1.10
>   +++ build.xml	12 Sep 2002 21:07:38 -0000	1.11
>   @@ -45,7 +45,7 @@
>    <target name="clean"/>
>    
>    <target name="copy" depends="setenv">
>   -<ant dir="${axis.home}" antfile="${axis.home}/buildSamples.xml" target="compile"/>
>   +<ant  antfile="${axis.home}/buildSamples.xml" target="compile"/>
>    </target>
>    
>    <target name="compile" depends="copy">
>   
>   
>   
>   1.7       +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.6
>   retrieving revision 1.7
>   diff -u -r1.6 -r1.7
>   --- build.xml	11 Sep 2002 19:51:24 -0000	1.6
>   +++ build.xml	12 Sep 2002 21:07:38 -0000	1.7
>   @@ -51,9 +51,9 @@
>    
>    <target name="copy" depends="setenv">
>      <echo message="Compiling test.utils"/>
>   -  <ant dir="${axis.home}" antfile="${axis.home}/test/utils/build.xml" target="compile"/>
>   +  <ant antfile="${axis.home}/test/utils/build.xml" target="compile"/>
>      <echo message="Compiling test.RPCDispatch"/>
>   -  <ant dir="${axis.home}" antfile="${axis.home}/test/RPCDispatch/build.xml"
> target="compile"/>
>   +  <ant antfile="${axis.home}/test/RPCDispatch/build.xml" target="compile"/>
>    </target>
>    
>    <target name="compile" depends="copy">
>   
>   
>   
>   1.7       +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.6
>   retrieving revision 1.7
>   diff -u -r1.6 -r1.7
>   --- build.xml	11 Sep 2002 19:51:24 -0000	1.6
>   +++ build.xml	12 Sep 2002 21:07:38 -0000	1.7
>   @@ -49,7 +49,7 @@
>    
>    <target name="copy" depends="setenv">
>      <echo message="Compiling samples.echo"/>
>   -  <ant dir="${axis.home}" antfile="${axis.home}/samples/echo/build.xml"/>
>   +  <ant antfile="${axis.home}/samples/echo/build.xml"/>
>    </target>
>    
>    <target name="compile" depends="copy">
>   
>   
>   
>   1.8       +2 -2      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.7
>   retrieving revision 1.8
>   diff -u -r1.7 -r1.8
>   --- build.xml	11 Sep 2002 19:51:24 -0000	1.7
>   +++ build.xml	12 Sep 2002 21:07:38 -0000	1.8
>   @@ -48,8 +48,8 @@
>    </target>
>     
>      <target name="copy" depends="setenv">
>   -     <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"
> />
>   +     <ant antfile="${axis.home}/samples/echo/build.xml" target="compile" />
>   +     <ant antfile="${axis.home}/samples/jaxrpc/build.xml" target="compile" />
>      </target>
>    
>      <target name="compile" depends="copy" >
>   
>   
>   
>   1.8       +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.7
>   retrieving revision 1.8
>   diff -u -r1.7 -r1.8
>   --- build.xml	11 Sep 2002 19:51:24 -0000	1.7
>   +++ build.xml	12 Sep 2002 21:07:38 -0000	1.8
>   @@ -51,7 +51,7 @@
>    </target>
>    
>    <target name="copy" depends="setenv">
>   -  <ant dir="${axis.home}" antfile="${axis.home}/samples/addr/build.xml"/>
>   +  <ant antfile="${axis.home}/samples/addr/build.xml"/>
>    </target>
>    
>    <target name="compile" depends="copy">
>   
>   
>   


=====
Davanum Srinivas - http://xml.apache.org/~dims/

__________________________________________________
Do you Yahoo!?
Yahoo! News - Today's headlines
http://news.yahoo.com