Repository: ant
Updated Branches:
  refs/heads/master 7a7307bc9 -> c848ace1e


Update manual for ejbjar orion element.


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/e93a598a
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/e93a598a
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/e93a598a

Branch: refs/heads/master
Commit: e93a598ad0aa21a6a0118f9bc89e746c18f47f04
Parents: 49d63a1
Author: Mark Niggemann <[email protected]>
Authored: Mon Jul 10 11:40:25 2017 -0500
Committer: Stefan Bodewig <[email protected]>
Committed: Mon Jul 10 21:33:29 2017 +0200

----------------------------------------------------------------------
 manual/Tasks/ejb.html | 43 +++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 41 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/e93a598a/manual/Tasks/ejb.html
----------------------------------------------------------------------
diff --git a/manual/Tasks/ejb.html b/manual/Tasks/ejb.html
index aa140e7..c976509 100644
--- a/manual/Tasks/ejb.html
+++ b/manual/Tasks/ejb.html
@@ -61,6 +61,8 @@ In general these tasks are specific to the particular 
vendor's EJB Server.</p>
   Application Server 6.0</li>
   <li><a href="http://www.jboss.org/"; target="_top">
   JBoss 2.1</a> and above EJB servers</li>
+  <li><a 
href="http://web.archive.org/web/20080516210506/http://www.ironflare.com/";>
+  Orion Application Server</a> 2.0</li>
   <li><a href="http://www.bea.com"; target="_top">Weblogic</a>
    4.5.1 through to 7.0 EJB servers</li>
   <li><a href="http://www.objectweb.org/jonas/"; target="_top">JOnAS</a>
@@ -81,14 +83,15 @@ In general these tasks are specific to the particular 
vendor's EJB Server.</p>
  <tr><td>Task</td><td colspan="2">Application Servers</td></tr>
  <tr><td><a href="BorlandGenerateClient.html">blgenclient</a></td><td 
colspan="2">Borland Application Server 4.5 and 5.x</td></tr>
  <tr><td><a href="#iplanet-ejbc">iplanet-ejbc</a></td><td colspan="2">iPlanet 
Application Server 6.0</td></tr>
- <tr><td rowspan="7"><a href="#ejbjar">ejbjar</a></td><td colspan="2" 
align="center"><b>Nested Elements</b></td></tr>
+ <tr><td rowspan="8"><a href="#ejbjar">ejbjar</a></td><td colspan="2" 
align="center"><b>Nested Elements</b></td></tr>
  <tr><td><a href="BorlandEJBTasks.html">borland</a></td><td>Borland 
Application Server 4.5 and 5.x</td></tr>
  <tr><td><a href="#ejbjar_iplanet">iPlanet</a></td><td>iPlanet Application 
Server 6.0</td></tr>
  <tr><td><a href="#ejbjar_jboss">jboss</a></td><td>JBoss</td></tr>
  <tr><td><a href="#ejbjar_jonas">jonas</a></td><td>JOnAS 2.4.x and 
2.5</td></tr>
  <tr><td><a href="#ejbjar_weblogic">weblogic</a></td><td>Weblogic 5.1 to 
7.0</td></tr>
  <tr><td><a href="#ejbjar_websphere">websphere</a></td><td>IBM WebSphere 
4.0</td></tr>
- 
+ <tr><td><a href="#ejbjar_orion">orion</a></td><td>IronFlare(Oracle) Orion 
Application Server 2.0.6</td></tr>
+
 </table>
 
 <hr>
@@ -562,6 +565,7 @@ include: </p>
   <li>IBM WebSphere 4.0</li>
   <li>TOPLink for WebLogic 2.5.1-enabled entity beans</li>
   <li><a href="http://www.objectweb.org/jonas/";>JOnAS</a> 2.4.x and 2.5 Open 
Source EJB server</li>
+  <li>IronFlare Orion Application Server 2.0</li>
 </ul>
 
 
@@ -1770,7 +1774,42 @@ descriptors to use the naming standard. This will create 
only one ejb jar file -
 </pre>
 
 
+<h3><a name="ejbjar_orion">Orion element</a></h3>
+
+<p>The orion element searches for the Orion Application Server specific 
deployment descriptors and adds them
+to the final ejb jar file. Orion has one deployment descriptor:
+<ul><li>orion-ejb-jar.xml</li>
+</ul>
+<br>
+<table border="1" cellpadding="2" cellspacing="0">
+  <tr>
+    <td valign="top"><b>Attribute</b></td>
+    <td valign="top"><b>Description</b></td>
+    <td align="center" valign="top"><b>Required</b></td>
+  </tr>
+  <tr>
+    <td valign="top">destdir</td>
+    <td valign="top">The base directory into which the generated 
+                     jar files are deposited. Jar files are deposited in
+                     directories corresponding to their location within the
+                     descriptordir namespace. </td>
+    <td valign="top" align="center">Yes</td>
+  </tr>
+</table>
+
+<h3>Example</h3>
 
+<pre>
+      &lt;ejbjar srcdir="${build.classes}"
+              descriptordir="${descriptor.dir}"
+              basejarname="TheEJBJar"
+              flatdestdir="true"
+              dependency="super"
+              genericjarsuffix=".jar"&gt;
+        &lt;include name="**/*-ejb-jar.xml"/&gt;
+        &lt;orion destdir="${deploymentjars.dir}"\&gt;
+      &lt;/ejbjar&gt;
+</pre>
 
 </body>
 

Reply via email to