# ----------------------------------------------------------------------------- # build.properties.sample # # This is an example "build.properties" file, used to customize building the # Cactus EJB Sample for your local environment. Make any changes you need, # and rename this file to "build.properties" in the same directory that # contains the "build.xml" file. # # $Id$ # ----------------------------------------------------------------------------- # WARNING: The relative paths below are relative to the directory where the # build.xml file is located. # ----------------------------------------------------------------------------- # Mandatory properties # ----------------------------------------------------------------------------- # Location of all jars. Note: This is not a mandatory property. It is only # used here so that it can be reused when defining the location of all the jars # below. You do not have to put all the external jars in a single location. lib.repo = c:/apps/maven/repository # The location of the J2EE API jar. Depending on the version (1.2 or 1.3) of # it, the corresponding Cactus Sample will be built. j2ee.jar = ${lib.repo}/j2ee/jars/j2ee-1.3.jar # ----------------------------------------------------------------------------- # Optional properties # ----------------------------------------------------------------------------- # The port to use for starting the servers during unit testing. If not # specified, it defaults to port 8080. #cactus.port = 8081 # EJB container locations for the tests # Note: If you don't want to run the test on a given servlet engine, just # comment it's home property. For example, if you don't want to run the # tests on JBoss 3.x, comment the "cactus.home.jboss3x" property. #cactus.home.orion1x = c:/Apps/orion-1.6.0 #cactus.home.orion2x = c:/Apps/orion-2.0.2 #cactus.home.jboss3x = c:/Apps/jboss-3.2.1 # Should we instrument our code with Clover (test coverage tool) ? # For this to work, the clover.jar needs to be in ANTHOME/lib. # Comment out to disable Clover (setting the property to false will have no # effect). #clover.enable = true # Clover jar. This is required if clover is enabled. clover.jar = ${ant.home}/lib/clover.jar