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 gl...@apache.org on 2001/05/23 03:59:53 UTC

cvs commit: jakarta-taglibs build.properties.sample

glenn       01/05/22 18:59:53

  Added:       .        build.properties.sample
  Log:
  Support for new build
  
  Revision  Changes    Path
  1.1                  jakarta-taglibs/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  # ------------------------------------------------------------------------
  # build.properties.sample
  #
  # This is an example "build.properties" file, used to customize building
  # jakarta-taglibs for your local environment.  Make any changes you need,
  # and rename this file to "build.properties" in the same directory that
  # contains the top level "build.xml" file.
  #
  # -----------------------------------------------------------------------------
  
  # servlet.jar must be defined to sucessfully build taglibs
  
  # The default jar file for the Servlet and JSP API classes.
  servlet.jar=../jakarta-servletapi/dist/lib/servlet.jar
  
  # The default jar file for the Servlet 2.2 and JSP 1.1 API classes.
  # Optional, could be used by taglibs that explicitely need 
  # Servlet 2.2 and JSP 1.1 API classes.
  # The Servlet 2.2 and JSP 1.1 jar can be obtained from
  # http://jakarta.apache.org/tomcat/ as a Tomcat 3.2 binary download.
  servlet22.jar=../jakarta-servletapi/dist/lib/servlet.jar
  
  # The default jar file for the Servlet 2.3 and JSP 1.2 API classes.
  # Used for building taglibs which use JSP 1.2 features.
  # The Servlet 2.3 and JSP 1.2 jar can be obtained from 
  # http://jakarta.apache.org/tomcat/ as a Tomcat 4.0 binary download.
  servlet23.jar=../jakarta-servletapi-4/dist/lib/servlet.jar
  
  # The remaining properties are for supporting taglibs which
  # require the use of additional Java API's.
  
  # dbtags requires the Sun JDBC 2.0 Optional Package (Standard Extensions).
  # http://java.sun.com/products/jdbc/download.html
  # These can be installed in your $JAVA_HOME/jre/lib/ext directory
  # or uncomment the below property and set its path to the jdbc
  # 2.0 Standard Extensions jar file.
  #jdbc20stdext.jar=
  
  # Both log and xtags requires the log4j-core API.
  # http://jakarta.apache.org/log4j/docs/download.html
  # Uncomment the below and set the path to the log4j-core.jar file.
  #log4j-core.jar=
  
  # Both the xsl and xtags taglibs require xalan as their XSL API.
  # http://xml.apache.org/xalan
  # Uncomment the below and set the path to the xalan.jar
  #xalan.jar=
  
  # Version 1 of xalan
  # http://xml.apache.org/xalan/
  # Uncomment the below and set the path to version 1 xalan.jar
  #xalan1.jar=
  
  # Version 2 of xalan
  # http://xml.apache.org/xalan
  # Uncomment the below and set the path to version 2 xalan.jar
  #xalan2.jar=
  
  # Both the xsl taglib and the ultradev4 ctlx require xerces as their
  # XML API.
  # http://xml.apache.org/xerces/
  # Uncomment the below and set the path to the xerces.jar
  #xerces.jar=
  
  # Version 1 of xerces
  # http://xml.apache.org/xerces
  # Uncomment the below and set the path to version 1 xerces.jar
  #xerces1.jar=
  
  # Version 2 of xerces
  # http://xml.apache.org/xerces
  # Uncomment the below and set the path to version 2 xerces.jar
  #xalan2.jar=
  
  # regexp requires the jakarta-oro 2.0 regular expression API.
  # http://jakarta.apache.org/oro/
  # Uncomment the below and set the path to jakarta-oro.jar
  #jakarta-oro.jar=
  
  # regexp requires the jakarta-oro 2.0 regular expression API.
  # http://jakarta.apache.org/oro/
  # Uncomment the below and set the path to jakarta-oro.jar
  jakarta-oro2.jar=
  
  # xtags requires dom4j from http://dom4j.org
  # Uncomment the below and set the path to dom4j.jar
  #dom4j.jar=
  
  # xtags requires a JAXP 1.1 compatible XML parser
  # http://java.sun.com/products/xml/
  # Uncomment the below and set the path to jaxp.jar
  #jaxp.jar
  # Uncomment the below and set the path to crimson.jar
  #crimson.jar
  
  # jndi requires the JNDI API. This comes as part of Java 1.3.
  # If you are using a version of Java prior to Java 1.3 you will
  # need to download the JNDI API from Sun and install it in your
  # $JAVA_HOME/jre/lib/ext directory.
  # http://java.sun.com/products/jndi/