DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9830>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9830 setter for rmic options is missing Summary: setter for rmic options is missing Product: Ant Version: 1.5Beta2 Platform: All OS/Version: All Status: NEW Severity: Major Priority: Other Component: Optional Tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] There's a variable "rmicOptions", but no setter for it. There are common situations, where you need rmic options. Please apply the following patch: ======================== diff -u -r1.11 WebsphereDeploymentTool.java --- src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java 15 Apr 2002 14:56:31 -0000 1.11 +++ src/main/org/apache/tools/ant/taskdefs/optional/ejb/WebsphereDeploymentTool.java 13 Jun 2002 09:07:24 -0000 @@ -352,6 +352,12 @@ this.additionalArgs = args; } + /** + * sets some additional args to send to ejbdeploy. + */ + public void setRmicoptions(String options) { + this.rmicOptions = options; + } /** * Setter used to store the location of the Sun's Generic EJB DTD. This =================== -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
