- Removed tasks.xml file as there's no pending tasks and we're now using JIRA. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@290686 13f79535-47bb-0310-9956-ffa450edef68
76 lines
2.4 KiB
XML
76 lines
2.4 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2005 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.
|
|
*/
|
|
-->
|
|
|
|
<document>
|
|
<properties>
|
|
<title>Maven EJB Plug-in Goals</title>
|
|
<author email="michal.maczka@dimatics.com">Michal Maczka</author>
|
|
<author email="nathan.coast@blueyonder.co.uk">Nathan Coast</author>
|
|
<author email="vmassol@apache.org">Vincent Massol</author>
|
|
</properties>
|
|
<body>
|
|
<goals>
|
|
<goal>
|
|
<name>ejb</name>
|
|
<description>
|
|
Same as <code>ejb:ejb</code>. See the documentation for the
|
|
<code>ejb:ejb</code> goal.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>ejb:ejb</name>
|
|
<description>
|
|
Builds the main EJB JAR file and an EJB client JAR if the
|
|
<code>maven.ejb.client.generate</code> property is set to true
|
|
(it's false by default). Note that this goal is equivalent to
|
|
<code>ejb:ejb</code>.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>ejb:install</name>
|
|
<description>
|
|
Installs the generated EJB JAR file and its EJB client JAR into
|
|
the local Maven repository.
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>ejb:deploy</name>
|
|
<description>
|
|
Deploy the main EJB JAR and its EJB client JAR into the remote
|
|
Maven repository(ies).
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>ejb:install-snapshot</name>
|
|
<description>
|
|
Install the snapshot version of the main EJB JAR into the local
|
|
Maven repository
|
|
</description>
|
|
</goal>
|
|
<goal>
|
|
<name>ejb:deploy-snapshot</name>
|
|
<description>
|
|
Deploy the snapshot version of the main EJB JAR into the remote
|
|
Maven repository(ies).
|
|
</description>
|
|
</goal>
|
|
</goals>
|
|
</body>
|
|
</document>
|