git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113337 13f79535-47bb-0310-9956-ffa450edef68
111 lines
3.4 KiB
XML
111 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<document>
|
|
<properties>
|
|
<title>JBoss Properties</title>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
</properties>
|
|
<body>
|
|
<section name="JBoss Settings">
|
|
<table>
|
|
<tr>
|
|
<th>Property</th>
|
|
<th>Optional?</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.home</td>
|
|
<td>No</td>
|
|
<td>
|
|
<p>
|
|
Location of JBoss home (i.e. where JBoss is installed on your
|
|
local drive. Example: <code>c:/jboss-3.0.4</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.conf.dir</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
Location of where the application-specific JBoss conf files are
|
|
located. Example: <code>conf/jboss/conf</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.deploy.dir</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
Location of where the application-specific JBoss deploy files are
|
|
located. Example: <code>conf/jboss/deploy</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.appconf.dir</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
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). Example:
|
|
<code>conf/application</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.conf.name</td>
|
|
<td>Yes</td>
|
|
<td>
|
|
<p>
|
|
Name of the specific JBoss server configuration we are creating.
|
|
Default value is <code>custom</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.hostname</td>
|
|
<td>No</td>
|
|
<td>
|
|
<p>
|
|
Hostname on which JBoss is executing. Default value is
|
|
<code>localhost</code>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.port</td>
|
|
<td>No</td>
|
|
<td>
|
|
<p>
|
|
Port on which JBoss' jmx-console is available. Default value is
|
|
<code>8080</code>.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.jmx.url.deploy</td>
|
|
<td>No</td>
|
|
<td>
|
|
<p>
|
|
URL at which an http get will deploy a target. Default value is
|
|
<code>http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.lang.String&arg=</code>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>maven.jboss.jmx.url.undeploy</td>
|
|
<td>No</td>
|
|
<td>
|
|
<p>
|
|
URL at which an http get will undeploy a target. Default value is
|
|
<code>http://${maven.jboss.hostname}:${maven.jboss.port}/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=undeploy&argType=java.lang.String&arg=</code>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</section>
|
|
</body>
|
|
</document> |