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=4984>. 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=4984 locale attribute of javadoc element may not work Summary: locale attribute of javadoc element may not work Product: Ant Version: 1.4.1 Platform: PC OS/Version: Windows NT/2K Status: UNCONFIRMED Severity: Normal Priority: Other Component: Core tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] locale attribute on javadoc element doesn't work when it appers after other attributes. -locale option of javadoc command must be specified before doclet specific options such as -d, but ant generate these command line below: javadoc -d docs -locale en .... when I wrote build.xml like this: <javadoc sourcepath="..." destdir="..." locale="en" ..../> When I change the order of attributes like below: <javadoc locale="en" sourcepath="..." destdir="..." .../> it works well. However, I thinks it must not depend on an order of attributes. I uses JDK 1.3.1 on Windows platform. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
