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: ant-dev@jakarta.apache.org
ReportedBy: snakamura@infoteria.co.jp
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:ant-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:ant-dev-help@jakarta.apache.org>
|