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 mo...@apache.org on 2001/03/15 00:23:31 UTC

cvs commit: jakarta-taglibs/jdbc build.xml

morgand     01/03/14 15:23:31

  Modified:    jdbc     build.xml
  Log:
  adding DataSource API for build dependency
  
  Revision  Changes    Path
  1.2       +2 -1      jakarta-taglibs/jdbc/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/jdbc/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml	2001/01/08 21:15:59	1.1
  +++ build.xml	2001/03/14 23:23:29	1.2
  @@ -26,6 +26,7 @@
       <property name="taglib.name"    value="jdbc"/>
       <property name="ant.home"       value="../../jakarta-ant"/>
       <property name="servlet.jar"    value="../../jakarta-servletapi/lib/servlet.jar"/>
  +    <property name="jdbc-ext.jar"   value="lib/jdbc2_0-stdext.jar"/>
   
   
       <!-- ****************** Project Standard Properties ******************* -->
  @@ -166,7 +167,7 @@
       <copy file="${conf.src}/jdbc.tld"
                 tofile="${build.library}/META-INF/taglib.tld"/>
       <javac srcdir="${library.src}" destdir="${build.library}"
  -           classpath="${servlet.jar}" debug="on"/>
  +           classpath="${servlet.jar}:${jdbc-ext.jar}" debug="on"/>
     </target>
   
     <!-- Compile the library as well as the associated applications -->