The ANT script build.xml of smack should be update

http://www.igniterealtime.org/fisheye/browse/svn-org/smack/trunk/build/build.xml

when i run ant command,the system give me a warming.beacuse the os default charset of mine is UTF-8.but the java source file engcoding is iso8859-1.

so,i update the build.xml.like this:

old form is

javac

destdir="${compile.dir}"

includeAntRuntime=“no”

debug=“on”

source=“1.5”

target=“1.5”

my newer form is

javac

destdir="${compile.dir}"

includeAntRuntime=“no”

debug=“on”

source=“1.5”

target=“1.5”

encoding=“iso8859-1”


after this,when i combile the source,there’s no warming