peterreilly 2004/01/05 03:45:07 Modified: src/main/org/apache/tools/ant/taskdefs/optional/ejb JbossDeploymentTool.java docs/manual/OptionalTasks ejb.html Log: Use getDestDir of jboss element of ejbjar PR: 25826 Obtained from: Damon Sicore Revision Changes Path 1.17 +8 -1 ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/JbossDeploymentTool.java Index: JbossDeploymentTool.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/JbossDeploymentTool.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- JbossDeploymentTool.java 19 Jul 2003 11:20:17 -0000 1.16 +++ JbossDeploymentTool.java 5 Jan 2004 11:45:07 -0000 1.17 @@ -120,7 +120,14 @@ * of this jar will be checked against the dependent bean classes. */ File getVendorOutputJarFile(String baseName) { - return new File(getParent().getDestdir(), baseName + jarSuffix); + if (getDestDir() == null && getParent().getDestdir() == null) { + throw new BuildException("DestDir not specified"); + } + if (getDestDir() == null) { + return new File(getParent().getDestdir(), baseName + jarSuffix); + } else { + return new File(getDestDir(), baseName + jarSuffix); + } } /** 1.37 +3 -2 ant/docs/manual/OptionalTasks/ejb.html Index: ejb.html =================================================================== RCS file: /home/cvs/ant/docs/manual/OptionalTasks/ejb.html,v retrieving revision 1.36 retrieving revision 1.37 diff -u -r1.36 -r1.37 --- ejb.html 17 Jul 2003 11:05:15 -0000 1.36 +++ ejb.html 5 Jan 2004 11:45:07 -0000 1.37 @@ -715,7 +715,8 @@ namespace. Note that this attribute is only used if the task is generating generic jars (i.e. no vendor-specific deployment elements have been specified).</td> - <td valign="top" align="center">Yes</td> + <td valign="top" align="center">Yes, unless vendor-specific deployment elements + have been specified.</td> </tr> <tr> <td valign="top">cmpversion</td>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]