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/20 17:38:38 UTC

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

seibert     2002/08/20 08:38:38

  Added:       java/test/concurrency buildComponent.xml
               java/test/dynamic buildComponent.xml
               java/test/inheritance buildComponent.xml
               java/test/message buildComponent.xml
               java/test/properties buildComponent.xml
               java/test/saaj buildComponent.xml
               java/test/wsdl/omit buildComponent.xml
  Log:
  New buildComponent.xml files, and ones that I missed
  
  Revision  Changes    Path
  1.1                  xml-axis/java/test/concurrency/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/concurrency" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  	&targets;
  
  <target name="clean"/>
  
  <target name="copy" depends="setenv"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.concurrency"/>
    <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/concurrency/*.java"/>
    </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>
  
  
  
  1.1                  xml-axis/java/test/dynamic/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/dynamic" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  	&targets;
  
  <target name="clean"/>
  
  <target name="copy" depends="setenv"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.dynamic"/>
    <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/dynamic/*.java"/>
    </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>
  
  
  
  1.1                  xml-axis/java/test/inheritance/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/inheritance" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  	&targets;
  
  <target name="clean"/>
  
  <target name="copy" depends="setenv"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.inheritance"/>
    <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/inheritance/*.java"/>
    </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>
  
  
  
  1.1                  xml-axis/java/test/message/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/message" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  	&targets;
  
  <target name="clean"/>
  
  <target name="copy" depends="setenv"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.message"/>
    <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/message/*.java"/>
    </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>
  
  
  
  1.1                  xml-axis/java/test/properties/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/properties" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  	&targets;
  
  <target name="clean"/>
  
  <target name="copy" depends="setenv"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.properties"/>
    <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/properties/*.java"/>
    </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>
  
  
  
  1.1                  xml-axis/java/test/saaj/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  <property name="axis.home" location="../.." />
  <property name="componentName" value="test/saaj" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  	&targets;
  
  <target name="clean"/>
  
  <target name="copy" depends="setenv"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.saaj"/>
    <javac srcdir="${axis.home}" destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/saaj/*.java"/>
    </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>
  
  
  
  1.1                  xml-axis/java/test/wsdl/omit/buildComponent.xml
  
  Index: buildComponent.xml
  ===================================================================
  <?xml version="1.0" ?>
  <!DOCTYPE project [
          <!ENTITY properties SYSTEM "file:../../../xmls/properties.xml">
          <!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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  
  <property name="axis.home" location="../../.." />
  <property name="componentName" value="test/wsdl/omit" />
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
          &targets;
  
  <target name="clean"/>
  
  <target name="copy"/>
  
  <target name="compile" depends="copy">
    <echo message="Compilig test.wsdl.omit"/>
      <!-- Omit Test -->
      <wsdl2java url="${axis.home}/test/wsdl/omit/omit.wsdl"
                 output="${axis.home}/build/work"
                 serverSide="yes">
      </wsdl2java>
  
      <copy todir="${build.dir}/work/test/wsdl/omit" overwrite="yes">
        <fileset dir="${axis.home}/test/wsdl/omit">
          <include name="**/*Impl.java"/>
        </fileset>
        <fileset dir="${axis.home}/test/wsdl/omit">
          <include name="**/*TestCase.java"/>
          <exclude name="**/EmptySATestCase.java"/>
          <exclude name="**/SalesRankNPrice_ServiceTestCase.java"/>
        </fileset>
        <fileset dir="${axis.home}/test/wsdl/omit">
          <include name="**/Main.java"/>
        </fileset>
      </copy>
  
      <javac srcdir="${build.dir}/work" destdir="${build.dest}"
             debug="${debug}">
        <classpath refid="classpath" />
        <include name="test/wsdl/omit/*.java" />
      </javac>
  
      <javac srcdir="${axis.home}" destdir="${build.dest}"
             debug="${debug}">
        <include name="test/wsdl/omit/*.java" />
      </javac>
  </target>
  
  <target name="run" >
    <antcall target="execute-Component" />
  </target>
  
  </project>