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 st...@apache.org on 2003/10/04 07:40:00 UTC

cvs commit: ws-axis/java/tools/org/apache axis.xml

stevel      2003/10/03 22:40:00

  Modified:    java/tools build.xml
  Added:       java/tools/org/apache axis.xml
  Log:
  support for the new ant1.6 xml declaration mechanism
  
  Revision  Changes    Path
  1.14      +1 -0      ws-axis/java/tools/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/tools/build.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build.xml	26 Apr 2003 22:36:37 -0000	1.13
  +++ build.xml	4 Oct 2003 05:40:00 -0000	1.14
  @@ -103,6 +103,7 @@
       </fileset>
       <fileset dir="${tools.dir}"
         includes="*-tasks.properties"/>
  +    <fileset dir="." file="org/apache/axis.xml"/>
       <manifest>
         <section name="org/apache/axis/tools">
           <attribute name="Implementation-Title" value="Apache Axis"/>
  
  
  
  1.1                  ws-axis/java/tools/org/apache/axis.xml
  
  Index: axis.xml
  ===================================================================
  <?xml version="1.0"?>
  <antlib>
      <!-- ant1.6+ antlib declaration for the classes
      use with the declaration xmlns:axis="antlib:org.apache.axis" to
      trigger ant's autoload of this file, provided the relevant jars
      are in the antlib directory, or a dir stated with -lib on the command line"
      Alternative, load with something like
      <typedef uri="http://ws.apache.org/axis"
          resource="org.apache.axis.xml"
          classpathref="axis.classpath"
          xmlns:axis="http://ws.apache.org/axis"
      -->
      <typedef name="wsdl2java" classname="org.apache.axis.tools.ant.wsdl.Wsdl2javaAntTask"/>
      <typedef name="java2wsdl" classname="org.apache.axis.tools.ant.wsdl.Java2WsdlAntTask"/>
      <typedef name="admin" classname="org.apache.axis.tools.ant.axis.AdminClientTask"/>
      <typedef name="foreach" classname="org.apache.axis.tools.ant.foreach.ForeachTask.java"/>
      <typedef name="runaxisfunctionaltests" classname="org.apache.axis.tools.ant.axis.RunAxisFunctionalTests"/>
  </antlib>