diff options
Diffstat (limited to 'qadevOOo/build.xml')
-rwxr-xr-x | qadevOOo/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/build.xml b/qadevOOo/build.xml index 9e2e8e086122..a47cc2773d7f 100755 --- a/qadevOOo/build.xml +++ b/qadevOOo/build.xml @@ -19,7 +19,7 @@ <!-- target for building the runner --> <target name="qadevOOo_runner_build"> - <javac srcdir="${qadevOOo.runner}" destdir="${qadevOOo.class}" includes="**/*.java" debug="${debug}"> + <javac srcdir="${qadevOOo.runner}" destdir="${qadevOOo.class}" includes="**/*.java" debug="${debug}" source="${build.source}"> <classpath> <pathelement location="${qadevOOo.class}"/> <fileset dir="${qadevOOo.office_jars}"> @@ -31,7 +31,7 @@ <!-- target for building the tests --> <target name="qadevOOo_tests_build" depends="qadevOOo_runner_build"> - <javac srcdir="${qadevOOo.tests}" destdir="${qadevOOo.class}" includes="**/*.java" debug="${debug}"> + <javac srcdir="${qadevOOo.tests}" destdir="${qadevOOo.class}" includes="**/*.java" debug="${debug}" source="${build.source}"> <classpath> <pathelement location="${qadevOOo.class}"/> <fileset dir="${qadevOOo.office_jars}"> |