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:20 UTC

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

seibert     2002/08/07 09:39:20

  Modified:    java/test/wsdl/getPort buildComponent.xml
  Log:
  We now have componentized execution
  
  Revision  Changes    Path
  1.2       +13 -1     xml-axis/java/test/wsdl/getPort/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/getPort/buildComponent.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- buildComponent.xml	2 Aug 2002 18:42:37 -0000	1.1
  +++ buildComponent.xml	7 Aug 2002 16:39:20 -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,14 @@
   
   <project default="compile">
   
  +<property name="axis.home" location="../../.." />
  +<property name="componentName" value="test/wsdl/getPort" />
  +
           &properties;
           &paths;
           &taskdefs;
           &taskdefs_post_compile;
  +        &targets;
   
   <target name="clean"/>
   
  @@ -43,7 +48,14 @@
   
   <target name="deploy"/>
   
  -<target name="run"  depends="compile" />
  +<target name="run"  depends="setenv" >
  +    <runaxisfunctionaltests
  +      url="http://localhost:8088"
  +      startTarget1="start-functional-test-tcp-server"
  +      startTarget2="start-functional-test-http-server"
  +      testTarget="component-junit-functional"
  +      stopTarget="stop-functional-test-http-server" />
  +</target>
   
   <target name="undeploy"/>