maven-plugins/jboss/plugin.properties

66 lines
2.7 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 = conf/jboss/conf
# (optional) Location of where the application-specific JBoss deploy files are
# located
# maven.jboss.deploy.dir = 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 = conf/application
# Name of the specific JBoss server configuration we are creating
maven.jboss.conf.name = custom
# Location where the specific JBoss server configuration is created
maven.jboss.build.dir = ${maven.build.dir}
# 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
# ---------------------------------------------------------------------------
# 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=