git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115477 13f79535-47bb-0310-9956-ffa450edef68
100 lines
4.5 KiB
Properties
100 lines
4.5 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
|
|
|
|
# JBoss debug port
|
|
maven.jboss.debug.port=4142
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# 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=
|