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:39:41 UTC

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

seibert     2002/08/07 09:39:41

  Modified:    java/test/wsdl/marrays buildComponent.xml
  Log:
  We now have componentized execution
  
  Revision  Changes    Path
  1.3       +7 -5      xml-axis/java/test/wsdl/marrays/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/marrays/buildComponent.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- buildComponent.xml	2 Aug 2002 18:43:37 -0000	1.2
  +++ buildComponent.xml	7 Aug 2002 16:39:41 -0000	1.3
  @@ -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,13 @@
   
   <project default="compile">
   
  +<property name="axis.home" location="../../.." />
  +<property name="componentName" value="test/wsdl/marrays" />
           &properties;
           &paths;
           &taskdefs;
           &taskdefs_post_compile;
  +	&targets;
   
   <target name="clean"/>
   
  @@ -54,10 +58,8 @@
       </javac>
   </target>
   
  -<target name="deploy"/>
  -
  -<target name="run"  depends="compile" />
  -
  -<target name="undeploy"/>
  +<target name="run" >
  +  <antcall target="execute-Component" />
  +</target>
   
   </project>