breakiterator error

I am very new to Javadoc, and have just taken over a machine with JDK140 installed. Each time I generate my javadoc, I get a bunch of warnings of the following type:

warning - The first sentence is interpreted to be:

[javadoc] This sentence is different from what would be generated using -breakiterator

I generate the Javadoc using an .xml build file and ant. When I add "breakiterator="true"" to the build file, I get the following error message:

The <javadoc2> task doesn't support the "breakiterator" attribute.

I'm wondering how to get rid of the errors, obviously.

Thanks in advance!

[641 byte] By [jgag] at [2007-9-27 20:48:55]
# 1
Use additionalparam="-breakiterator" instead. It's a feature that was added to JavaDoc in jdk1.4, and Ant doesn't support it directly yet (or maybe it does--are you using the latest Ant release?).
uncle_alice at 2007-7-7 2:18:08 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
I am using the latest ANT - and your solution works wonders. Thanks a bunch!
jgag at 2007-7-7 2:18:08 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...