# ----------------------------------------------------------------------------- # build.properties.sample # # This is an example "build.properties" file, used to customize building Struts # for your local environment. Make any changes you need, and rename this file # to "build.properties" in the same directory that contains the Struts # "build.xml" file. # # $Id: build.properties.sample,v 1.5 2002/02/22 13:00:56 cedric Exp $ # ----------------------------------------------------------------------------- # WARNING: The relative paths below assume that the build.xml file is in the # top-level directory of the jakarta-struts source distribution (as it still # is at the moment). If build.xml moves to under the "build" subdirectory, # we will need to add an extra level of "../" to each of these paths. # The directory containing your binary distribution of Tomcat 4.0 ("Catalina" # is the servlet container part of this distribution), from CVS module # "jakarta-tomcat-4.0" at jakarta.apache.org). This is only required # if you are going to execute the "deploy.catalina" target. catalina.home=../jakarta-tomcat-4.0/build # The directory containing your binary distribution of the Servlet API classes # (CVS module "jakarta-servletapi" at jakarta.apache.org). servletapi.home=../jakarta-servletapi # The directories containing your binary distribution of Struts # struts.home is used to build library and webapps (so all distribution) # struts1.0.home is used to build struts1.0.x compatible jar file only # To build all distribution with a particular Struts version, set struts.home # to point to the Struts version you want # Comment struts1.0.home if you don't want to build the extra compatible jar file # Any struts home should contains a subdir called 'lib' and containing the # struts jar file. struts.home=../struts #struts1.0.home=../struts1.0 # The directory containing JAR files # from the Jakarta Commons project. commons-lib.home=../commons/lib commons-beanutils.jar=${commons-lib.home}/commons-beanutils.jar # The JAR file containing version 1.0 (or later) of the Collections package # from the Jakarta Commons project. commons-collections.jar=${commons-lib.home}/commons-collections.jar # The JAR file containing version 1.0 (or later) of the Digester package # from the Jakarta Commons project. commons-digester.jar=${commons-lib.home}/commons-digester.jar # The JAR file containing version 1.0 (or later) of the Logging package # from the Jakarta Commons project. commons-logging.jar=${commons-lib.home}/commons-logging.jar # The directory containing your binary distribution of Tomcat 4.0 ("Catalina" # is the servlet container part of this distribution), from CVS module # "jakarta-tomcat-4.0" at jakarta.apache.org). This is only required # if you are going to execute the "deploy.catalina" target. catalina.home=../jakarta-tomcat-4.0/build # The directory containing your binary distribution of the Servlet API classes # (CVS module "jakarta-servletapi" at jakarta.apache.org). servlet.jar=${tomcat.home}/lib/servlet.jar # The directory containing your binary distribution of the Xerces XML parser, # from CVS module "xerces-j" at xml.apache.org. This is only required # if you are going to execute the "deploy.catalina" target. xerces.home=../xml-xerces build.home=../target dist.home=../dist # Flag indicating if we want to build additional war files. # If true, build them. make.optional.webapps=true