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/01 18:02:50 UTC

cvs commit: xml-axis/java/samples/jaxrpc buildComponent.xml

seibert     2002/08/01 09:02:50

  Added:       java/samples/jaxrpc buildComponent.xml
  Log:
  New file for the jaxrpc sample(s)
  
  Revision  Changes    Path
  1.1                  xml-axis/java/samples/jaxrpc/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">
      <!-- jaxrpc Dynamic proxy with bean - Bug 10824 -->
      <wsdl2java url="samples/jaxrpc/address/Address.wsdl"
                 output="build/work"
                 serverSide="yes"
                 testcase="no">
      </wsdl2java>
  
      <!-- Compile the echo sample generated java files -->
      <javac srcdir="${build.dir}/work" destdir="${build.dest}" debug="${debug}">
        <classpath refid="classpath" />
        <include name="samples/addr/**.java" />
        <include name="samples/jaxrpc/address/**.java" />
      </javac>
  </target>
  
  <target name="deploy"/>
  
  <target name="run"/>
  
  <target name="undeploy"/>
  
  </project>