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/08/07 18:38:49 UTC

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

seibert     2002/08/07 09:38:49

  Modified:    java/test/wsdl/multithread buildComponent.xml
  Log:
  We now have componentized test execution
  
  Revision  Changes    Path
  1.2       +10 -6     xml-axis/java/test/wsdl/multithread/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/multithread/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	22 Jul 2002 20:14:24 -0000	1.1
  +++ buildComponent.xml	7 Aug 2002 16:38:49 -0000	1.2
  @@ -4,6 +4,7 @@
           <!ENTITY paths  SYSTEM "file:../../../xmls/path_refs.xml">
           <!ENTITY taskdefs SYSTEM "file:../../../xmls/taskdefs.xml">
           <!ENTITY taskdefs_post_compile SYSTEM "file:../../../xmls/taskdefs_post_compile.xml">
  +        <!ENTITY targets SYSTEM "file:../../../xmls/targets.xml">
   ]>
   
   <!-- ===================================================================
  @@ -11,10 +12,15 @@
   
   <project default="compile">
   
  +<property name="axis.home" location="../../.." />
  +<property name="componentName" value="test/wsdl/multithread" />
  +<property name="extraServices" value="work/samples/addr" />
  +
           &properties;
           &paths;
           &taskdefs;
           &taskdefs_post_compile;
  +        &targets;
   
   <target name="clean"/>
   
  @@ -29,14 +35,12 @@
       <classpath>
           <path refid="classpath"/>
       </classpath>
  -    <include name="test/wsdl/multithread/*.java"/>
  +    <include name="${componentName}/*.java"/>
     </javac>
   </target>
   
  -<target name="deploy"/>
  -
  -<target name="run"  depends="compile" />
  -
  -<target name="undeploy"/>
  +<target name="run" >
  +	<antcall target="execute-Component"/>
  +</target>
   
   </project>