diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 64812538d..c649ae7a9 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -233,6 +233,7 @@ Mariusz Nowostawski
Mark A. Ziesemer
Mark DeLaFranier
Mark Hecker
+Mark Niggemann
Mark R. Diggory
Mark Salter
Markus Kahl
diff --git a/WHATSNEW b/WHATSNEW
index ba2213e59..b3a7a4ece 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -39,6 +39,9 @@ Other changes:
override the current time/date used by .
Bugzilla Report 61079
+ * added Orion support to ejbjar
+ Github Pull Request #33
+
Changes from Ant 1.10.0 TO Ant 1.10.1
=====================================
diff --git a/contributors.xml b/contributors.xml
index ade30f9f9..c73478cec 100644
--- a/contributors.xml
+++ b/contributors.xml
@@ -959,6 +959,10 @@
R.
Diggory
+
+ Mark
+ Niggemann
+
Mark
A.
diff --git a/manual/Tasks/ejb.html b/manual/Tasks/ejb.html
index aa140e703..4911e1407 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.
Application Server 6.0
JBoss 2.1 and above EJB servers
+
+ Orion Application Server 2.0 since 1.10.2
Weblogic
4.5.1 through to 7.0 EJB servers
JOnAS
@@ -81,14 +83,15 @@ In general these tasks are specific to the particular vendor's EJB Server.
Task | Application Servers |
blgenclient | Borland Application Server 4.5 and 5.x |
iplanet-ejbc | iPlanet Application Server 6.0 |
- ejbjar | Nested Elements |
+ ejbjar | Nested Elements |
borland | Borland Application Server 4.5 and 5.x |
iPlanet | iPlanet Application Server 6.0 |
jboss | JBoss |
jonas | JOnAS 2.4.x and 2.5 |
weblogic | Weblogic 5.1 to 7.0 |
websphere | IBM WebSphere 4.0 |
-
+ orion | IronFlare(Oracle) Orion Application Server 2.0.6 |
+
@@ -562,6 +565,7 @@ include:
IBM WebSphere 4.0
TOPLink for WebLogic 2.5.1-enabled entity beans
JOnAS 2.4.x and 2.5 Open Source EJB server
+ IronFlare Orion Application Server 2.0
@@ -1770,7 +1774,42 @@ descriptors to use the naming standard. This will create only one ejb jar file -
+
+
+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:
+
+
+
+
+ Attribute |
+ Description |
+ Required |
+
+
+ destdir |
+ 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. |
+ Yes |
+
+
+
+Example
+
+ <ejbjar srcdir="${build.classes}"
+ descriptordir="${descriptor.dir}"
+ basejarname="TheEJBJar"
+ flatdestdir="true"
+ dependency="super"
+ genericjarsuffix=".jar">
+ <include name="**/*-ejb-jar.xml"/>
+ <orion destdir="${deploymentjars.dir}"\>
+ </ejbjar>
+