maven-plugins/webserver/plugin.properties
plynch fa39b3a03c o rearranged the props, added required and optional notes and changed maven.webserver.url to maven.webserver.test.url
o added maven.webserver.test.socket property which we use to test for a tcp listener


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112805 13f79535-47bb-0310-9956-ffa450edef68
2003-02-02 07:29:36 +00:00

86 lines
2.5 KiB
Properties

############################################################################
# W E B S E R V E R
#---------------------------------------------------------------------------
#-------------------------------------------------------#
# OPTIONAL PROPERTIES TO BE SET BY PLUGIN CONSUMER #
#-------------------------------------------------------#
#
# ports to access and configure this server instance
#
maven.webserver.port.http=80
maven.webserver.port.https=443
# maven.webserver.port.one=8090
# maven.webserver.port.two=8091
# maven.webserver.port.three=8092
#
# The host name, used when configuring, defaults to localhost
#
maven.webserver.host=localhost
#-------------------------------------------------------#
#-------------------------------------------------------#
# REQUIRED PROPERTIES THAT MAY/MUST BE SET BY USER #
#-------------------------------------------------------#
#
# a supported name of an application server instance to install
#
# maven.webserver.name=apache
#
# version number of the application server
#
# maven.webserver.version=2.x
#
# The place where the binary machine install of the web server resides
#
# maven.webserver.home=/apps/apache2
#
# The directory to install the local instance of the server
#
maven.webserver.dir=${basedir}/server
#
# The default port to test for a TCP/IP connection listener for determining if
# the webserver instance is started. Default is the same as the http port
#
maven.webserver.test.socket=${maven.webserver.port.http}
#
# The URL used to test the current running status of the webserver
# Default is the host and http port
#
maven.webserver.test.url=http://${maven.webserver.host}:${maven.webserver.port.http}/index.html
#
# The root directory out of which you will server will serve your documents
# The default is under webapps, to allow this webserver to play friendly
# with a Tomcat application container by default
#
maven.webserver.root=${maven.webserver.dir}/webapps/ROOT
#-------------------------------------------------------#
#-------------------------------------------------------#
# REQUIRED PROPERTIES NOT NORMALLY MODIFIED BY USERS #
#-------------------------------------------------------#
# needed for dir searches and messages, should NOT be changed by user
maven.webserver.fullname=${maven.webserver.name}-${maven.webserver.version}
#
# where to look for the instance specific config files for this webserver
#
maven.webserver.conf.dir=${maven.conf.dir}/webserver/${maven.webserver.fullname}