You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xmlrpc-dev@ws.apache.org by dl...@apache.org on 2002/02/16 19:11:01 UTC

cvs commit: xml-rpc build.xml

dlr         02/02/16 10:11:01

  Modified:    .        build.xml
  Log:
  Corrected some target descriptions and add stubs for testing targets.
  
  Revision  Changes    Path
  1.5       +21 -4     xml-rpc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-rpc/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -u -r1.4 -r1.5
  --- build.xml	15 Nov 2001 16:17:28 -0000	1.4
  +++ build.xml	16 Feb 2002 18:11:01 -0000	1.5
  @@ -147,7 +147,9 @@
     <!-- J A R                                                              -->
     <!-- ================================================================== -->
     
  -  <target name="jar" depends="compile">
  +  <target name="jar" depends="compile"
  +    description="Builds the two JAR files from source">
  +
       <jar jarfile="${build.dir}/${project}.jar">
         <fileset dir="${build.dest}" excludes="**/applet/*"/>
       </jar>
  @@ -190,6 +192,20 @@
     </target>
   
     <!-- ================================================================== -->
  +  <!-- T E S T                                                            -->
  +  <!-- ================================================================== -->
  +
  +  <!--
  +  <target name="test"
  +    description="Runs unit tests">
  +  </target>
  +
  +  <target name="rttest"
  +    description="Runs run-time tests">
  +  </target>
  +  -->
  +
  +  <!-- ================================================================== -->
     <!-- D O C S                                                            -->
     <!-- ================================================================== -->
     
  @@ -220,8 +236,8 @@
   
     <target 
       name="docs"
  -    depends="docs-prepare-error"
  -    description="--> generates the HTML documentation"
  +    depends="docs-prepare-error,javadocs"
  +    description="Generates the HTML documentation (including JavaDoc)"
       if="jdom.present">
   
       <taskdef 
  @@ -263,7 +279,8 @@
     <!-- ================================================================== -->
   
     <target name="install-jar" depends="jar" 
  -          description="==> Installs .jar file in ${lib.repo}">
  +    description="Installs .jar file in ${lib.repo}">
  +
       <copy todir="${lib.repo}" filtering="no">
         <fileset dir="${build.dir}">
           <include name="${project}.jar"/>