maven-plugins/webserver/plugin.properties
plynch fe9fa51601 o removing unused property and filterset
There is no need to have a user filterset as the user can just use the ant replace task to do that work instead of copy.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112783 13f79535-47bb-0310-9956-ffa450edef68
2003-01-30 22:06:28 +00:00

57 lines
1.4 KiB
Properties

#############################################################################
# W E B S E R V E R
#----------------------------------------------------------------------------
#
# the place where the root install of the web server resides
#
maven.webserver.home=/apps/apache2
#
# 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
# needed for dir searches and messages
maven.webserver.fullname=${maven.webserver.name}-${maven.webserver.version}
#
# ports to access 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
#
# where to install the local instance of the server
#
maven.webserver.dir=${basedir}/server
#
# where to look for the instance specific files for this webserver
#
maven.webserver.conf.dir=${maven.conf.dir}/webserver/${maven.webserver.fullname}
#
# The host name, used when configuring, defaults to localhost
#
maven.webserver.host=localhost
#
# The URL used to test the current running status of the webserver
#
maven.webserver.url=http://${maven.webserver.host}:${maven.webserver.port.http}/index.html
#
# The root directory out of which you will server will serve your documents
#
maven.webserver.root=${maven.webserver.dir}/webapps/ROOT