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/02 22:23:36 UTC

cvs commit: xml-axis/java/test/soap12 buildComponent.xml

seibert     2002/08/02 13:23:36

  Added:       java/test/soap12 buildComponent.xml
  Log:
  New test file
  
  Revision  Changes    Path
  1.1                  xml-axis/java/test/soap12/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">
  ]>
  
  <!-- ===================================================================
  ==================================================================== -->
  
  <project default="compile">
  
          &properties;
          &paths;
          &taskdefs;
          &taskdefs_post_compile;
  
  <target name="clean"/>
  
  <target name="copy"/>
  
  <target name="compile" depends="copy">
    <echo message="Compiling test.soap12"/>
    <javac srcdir="." destdir="${build.dest}" debug="${debug}">
      <classpath>
          <path refid="classpath"/>
      </classpath>
      <include name="test/soap12/*.java"/>
    </javac>
  </target>
  
  <target name="deploy"/>
  
  <target name="run"/>
  
  <target name="undeploy"/>
  
  </project>