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 ba...@apache.org on 2001/08/30 06:04:03 UTC

cvs commit: jakarta-taglibs/string build.xml

bayard      01/08/29 21:04:03

  Added:       string   build.xml
  Log:
  Adding build xml for string project.
  
  Revision  Changes    Path
  1.1                  jakarta-taglibs/string/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <!-- Define and use the common.xml ant build file for building
  	your taglib -->
  
  <!DOCTYPE project [
      <!ENTITY common SYSTEM "file:../common.xml">
  ]>
  
  <!-- Your main ant build declaration -->
  
  <project name="string" default="main">
  
    <property file="../build.properties"/>
    <property name="classpath" value="${servlet.jar}"/>
  
    <!-- Include the common.xml ant build declarations -->
    &common;
  
  </project>