git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112819 13f79535-47bb-0310-9956-ffa450edef68
79 lines
2.7 KiB
Properties
79 lines
2.7 KiB
Properties
# -------------------------------------------------------------------
|
|
# Default properties for the Cactus Plugin
|
|
# -------------------------------------------------------------------
|
|
|
|
# Location of containers. These properties need to be put in your
|
|
# local project.properties as they depend on where you installed
|
|
# your containers on your local machine.
|
|
#
|
|
# Examples:
|
|
#
|
|
# maven.cactus.tomcat4x.home = c:/apps/tomcat-4.1.10
|
|
# maven.cactus.resin2x.home = C:/Apps/resin-2.1.4
|
|
# maven.cactus.weblogic7x.home = C:/bea
|
|
|
|
# The default container to run in. You must specifiy which one.
|
|
#
|
|
# Examples:
|
|
#
|
|
# maven.cactus.container=tomcat-4x
|
|
# maven.cactus.container=resin-2x
|
|
# maven.cactus.container=weblogic-7x
|
|
|
|
|
|
# Currently you must provide a web.xml to use.
|
|
maven.cactus.webxml=
|
|
|
|
# DVSL Template to merge user web.xml to entries needed by Cactus
|
|
maven.cactus.webxml.dvsl = ${plugin.resources}/conf/web.xml.dvsl
|
|
|
|
# Empty web.xml to use if the user project does not provide a web.xml file
|
|
maven.cactus.emptywebxml = ${plugin.resources}/conf/web.xml
|
|
|
|
# Location of cactus.properties Cactus configuration file
|
|
maven.cactus.configFile = ${plugin.resources}/conf/cactus.properties
|
|
|
|
# Location of Cactus tests in project sources
|
|
maven.cactus.src.dir = src/test-cactus
|
|
|
|
# Location of scripts for the different containers
|
|
maven.cactus.scripts.dir = ${plugin.resources}/scripts
|
|
|
|
# Location of container configuration files
|
|
maven.cactus.conf.containers.dir = ${plugin.resources}/conf/containers
|
|
|
|
# Location where the cactus plugin puts its generateds stuff in
|
|
# the project build directory.
|
|
maven.cactus.build.dir = ${maven.build.dir}/cactus
|
|
|
|
# Location where the cactus plugin puts the compiled cactus test classes
|
|
maven.cactus.classes.dir = ${maven.cactus.build.dir}/classes
|
|
|
|
# Location where the cactus plugin puts resources that need to be in the
|
|
# Cactus client side classpath.
|
|
maven.cactus.build.resources.dir = ${maven.cactus.build.dir}/resources
|
|
|
|
# Port under which the container will be started
|
|
maven.cactus.port = 8080
|
|
|
|
# If true, the junit task used to run the Cactus tests will output the
|
|
# test result to a file
|
|
maven.cactus.junit.usefile = true
|
|
|
|
# Location of generated raw test reports
|
|
maven.cactus.test.reportsDirectory = ${maven.build.dir}/test-reports
|
|
|
|
# Define what TestRunner to use. Default is the JUnit text test runner
|
|
# (the one used by the <junit> Ant task). Valid values are: text, swing
|
|
maven.cactus.testrunner = text
|
|
|
|
# Location of junit excluded.properties file to use when using the Swing
|
|
# Test Runner
|
|
maven.cactus.testrunner.swing.excluded = ${plugin.resources}/conf/excluded.properties
|
|
|
|
# Include/Exclude for Cactus tests
|
|
maven.cactus.test.fileset.include=**/*.class
|
|
maven.cactus.test.fileset.exclude=
|
|
|
|
|