When building the target zookeeper_ant, I got the following errors:
jute:
[javac] warning: [options] bootstrap class path not set in conjunction with -source 5
[javac] error: Source option 5 is no longer supported. Use 6 or later.
[javac] error: Target option 1.5 is no longer supported. Use 1.6 or later.
I manually edited xpbase/Source/zookeeper/build.xml, setting javac.target and javac.source to 1.6. This built, but gave warnings that 1.6 is obsolete. I set both values to 1.8, which worked without any warnings.
When building the target
zookeeper_ant
, I got the following errors:I manually edited xpbase/Source/zookeeper/build.xml, setting
javac.target
andjavac.source
to 1.6. This built, but gave warnings that 1.6 is obsolete. I set both values to 1.8, which worked without any warnings.