Buildscript (Compiler source & target)
Brought to you by:
hptraub
The buildscript should contain a declaration about
the source and classfile compatibility level.
f.e.
<javac srcdir="${src}/main" destdir="${build}/main"
source="1.4" target="1.4" />
<javac srcdir="${src}/main-test"
destdir="${build}/main-test"
classpath="${build}/main;${junit.jar}" source="1.4"
target="1.4" />