maven-plugins/jboss/plugin.properties
vmassol 3048cd06ee - Fix exclude of tmp files in generated zip
- Default jboss server configation is now named ${pom.artifactId}


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113530 13f79535-47bb-0310-9956-ffa450edef68
2003-06-21 14:02:28 +00:00

79 lines
3.3 KiB
Properties

# 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 = http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.lang.String&arg=
# URL which, when fed to <get>, will cause a thing
# to be undeployed
maven.jboss.jmx.url.undeploy = http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=undeploy&argType=java.lang.String&arg=