maven-plugins/jboss/plugin.properties
evenisse 3be75aec9b PR:
Obtained from:
Submitted by:
Reviewed by:
CVS: ----------------------------------------------------------------------
CVS: PR:
CVS:   If this change addresses a PR in the problem report tracking
CVS:   database, then enter the PR number(s) here.
CVS: Obtained from:
CVS:   If this change has been taken from another system, such as NCSA,
CVS:   then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS:   If this code has been contributed to Apache by someone else; i.e.,
CVS:   they sent us a patch or a new module, then include their name/email
CVS:   address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS:   If we are doing pre-commit code reviews and someone else has
CVS:   reviewed your changes, include their name(s) here.
CVS:   If you have not had it reviewed then delete this line.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114793 13f79535-47bb-0310-9956-ffa450edef68
2004-03-04 18:36:01 +00:00

97 lines
4.4 KiB
Properties

# -------------------------------------------------------------------
# Copyright 2001-2004 The Apache Software Foundation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# -------------------------------------------------------------------
# Location of JBoss home (i.e. where JBoss is installed on your local drive
# maven.jboss.home = C:/jboss-3.0.4
# (optional) Location of where the application-specific JBoss conf files are
# located
# maven.jboss.conf.dir = src/conf/jboss/conf
# (optional) Location of where the application-specific JBoss deploy files are
# located
# maven.jboss.deploy.dir = src/conf/jboss/deploy
# (optional) Location of application configuration files. These files will
# be copied to the JBoss conf/ server configuration directory (and will thus
# be in the server classpath).
# maven.jboss.appconf.dir = src/conf/application
# Location of scripts to start/stop/etc the jboss container. A user who wants
# to provide his own script will override this property in his project
# project.properties/build.properties.
# Note: If you write your own script you have access to the following filters:
# @maven.jboss.home@
# @jboss.server.home.dir@
# @jboss.server.home.url@
# @maven.jboss.conf.name@
maven.jboss.script.dir = ${pom.getPluginContext('maven-jboss-plugin').getVariable('plugin.dir')}/plugin-resources
# Name of the specific JBoss server configuration we are creating
maven.jboss.conf.name = ${pom.artifactId}
# Location where the specific JBoss server configuration is created
maven.jboss.build.dir = ${maven.build.dir}/${pom.artifactId}
# Location where to get the JBoss jars from
maven.jboss.default.lib.dir = ${maven.jboss.home}/server/default/lib
# Jars to include/exclude during the copy from maven.jboss.lib.dir
# to our new server configuration
maven.jboss.default.lib.includes = **/*.jar
maven.jboss.default.lib.excludes =
# Location where to get the JBoss default conf files from
maven.jboss.default.conf.dir = ${maven.jboss.home}/server/default/conf
# Deploy files to include/exclude during the copy from maven.jboss.conf.dir
# to our new server configuration
maven.jboss.default.conf.includes = **/*
maven.jboss.default.conf.excludes =
# Location where to get the JBoss default deploy files from
maven.jboss.default.deploy.dir = ${maven.jboss.home}/server/default/deploy
# Deploy files to include/exclude during the copy from maven.jboss.deploy.dir
# to our new server configuration
maven.jboss.default.deploy.includes = **/*
maven.jboss.default.deploy.excludes =
# Host name of the server where JBoss is running.
# Note: This is used to shut JBoss down.
maven.jboss.hostname = localhost
# JBoss version
maven.jboss.version=3.2
# ---------------------------------------------------------------------------
# Note: The properties listed below are only needed for the deploy/undeploy
# goals
# ---------------------------------------------------------------------------
# Port where JBoss is listening
maven.jboss.port = 8080
# URL which, when fed to <get>, will cause a thing
# to be deployed
maven.jboss.jmx.url.deploy.3.0 = http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.lang.String&arg=
maven.jboss.jmx.url.deploy.3.2 = http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.net.URL&arg0=
# URL which, when fed to <get>, will cause a thing
# to be undeployed
maven.jboss.jmx.url.undeploy.3.0 = http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=undeploy&argType=java.lang.String&arg=
maven.jboss.jmx.url.undeploy.3.2 = http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=undeploy&argType=java.net.URL&arg0=