You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by na...@locus.apache.org on 2000/05/10 15:17:41 UTC

cvs commit: jakarta-taglibs build.xml

nacho       00/05/10 06:17:41

  Modified:    .        build.xml
  Log:
  Added building of
  Sample Sql tags library contributed
  by Boyd Waters (NRAO, Socorro)
  
  Revision  Changes    Path
  1.2       +6 -2      jakarta-taglibs/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	2000/04/10 00:50:27	1.1
  +++ build.xml	2000/05/10 13:17:41	1.2
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the JAKARTA-TAGLIBS Project -->
  -<!-- $Id: build.xml,v 1.1 2000/04/10 00:50:27 craigmcc Exp $ -->
  +<!-- $Id: build.xml,v 1.2 2000/05/10 13:17:41 nacho Exp $ -->
   <project name="jakarta-taglibs" default="dist" basedir=".">
   
   
  @@ -76,10 +76,14 @@
     <target name="jspspec">
       <ant dir="./jspspec" target="dist"/>
     </target>
  +  
  +  <target name="sql">
  +    <ant dir="./sql" target="dist"/>
  +  </target>
   
   
     <!-- *********************** Overall Build Command ********************** -->
   
  -  <target name="dist" depends="prepare,static,jspspec"/>
  +  <target name="dist" depends="prepare,static,jspspec,sql"/>
   
   </project>