Allowed deployments of EAR, WAR or EJB-JAR (only EAR was previously
supported) by adding the <code>jboss:package-ear</code>,
<code>jboss:package-ejb</code> and <code>jboss:package-war</code>
goals. The <code>jboss:package</code> goal has been renamed
<code>jboss:configure</code> and now simply creates a
custom JBoss server configuration (with nothing from the project
deployed in it).
</action>
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113347 13f79535-47bb-0310-9956-ffa450edef68
51 lines
1.4 KiB
XML
51 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<document>
|
|
<properties>
|
|
<title>Maven JBoss Plug-in Goals</title>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
</properties>
|
|
<body>
|
|
<goals>
|
|
<goal>
|
|
<name>jboss:configure</name>
|
|
<description>
|
|
Creates a custom JBoss server configuration directory structure.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>jboss:package-ear</name>
|
|
<description>
|
|
Creates a custom JBoss server configuration directory structure
|
|
and deploys an EAR in it.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>jboss:package-ejb</name>
|
|
<description>
|
|
Creates a custom JBoss server configuration directory structure
|
|
and deploys an EJB-JAR in it.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>jboss:package-war</name>
|
|
<description>
|
|
Creates a custom JBoss server configuration directory structure
|
|
and deploys a WAR in it.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>jboss:start</name>
|
|
<description>
|
|
Starts JBoss using our specific server configuration.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>jboss:stop</name>
|
|
<description>
|
|
Stops JBoss.
|
|
</description>
|
|
</goal>
|
|
</goals>
|
|
</body>
|
|
</document> |