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 di...@apache.org on 2004/12/02 14:16:11 UTC

cvs commit: ws-axis/java build.xml

dims        2004/12/02 05:16:11

  Modified:    java     build.xml
  Log:
  Fix for AXIS-1691 - add two new targets to build.xml to build api and src jars
  from  Ian Springer (ian.springer@hp.com)
  
  Revision  Changes    Path
  1.256     +20 -0     ws-axis/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/build.xml,v
  retrieving revision 1.255
  retrieving revision 1.256
  diff -u -r1.255 -r1.256
  --- build.xml	3 Nov 2004 14:34:04 -0000	1.255
  +++ build.xml	2 Dec 2004 13:16:11 -0000	1.256
  @@ -374,6 +374,26 @@
     </target>
   
     <!-- =================================================================== -->
  +  <!-- Jars up the the API documentation                                   -->
  +  <!-- =================================================================== -->
  +  <target name="api-jar" depends="javadocs"
  +          description="create API docs jar">
  +
  +    <jar jarfile="${build.lib}/${name}-api.jar" basedir="${build.javadocs}" />
  +    
  +  </target>
  +
  +  <!-- =================================================================== -->
  +  <!-- Jars up the the source code                                         -->
  +  <!-- =================================================================== -->
  +  <target name="src-jar"
  +          description="create source code jar">
  +
  +    <jar jarfile="${build.lib}/${name}-src.jar" basedir="${src.dir}" />
  +    
  +  </target>
  +
  +  <!-- =================================================================== -->
     <!-- Build/Test EVERYTHING from scratch!                                 -->
     <!-- =================================================================== -->
     <target name="all" depends="junit, functional-tests, dist"