[MRESOLVER-81] Bump Java version to 7 in build.xml
diff --git a/build.xml b/build.xml
index 86c441f..02c0be6 100644
--- a/build.xml
+++ b/build.xml
@@ -68,7 +68,7 @@
     </resolver:resolve>
 
     <javac classpathref="cp.compile.main" srcdir="src/main/java" destdir="${build.dir}/classes" 
-           includeAntRuntime="false" source="1.5" target="1.5" encoding="UTF-8" fork="true"/>
+           includeAntRuntime="false" source="7" target="7" encoding="UTF-8" fork="true"/>
   </target>
 
   <target name="process-test-resources" depends="compile">
@@ -91,7 +91,7 @@
     </path>
 
     <javac classpathref="cp.test" srcdir="src/test/java" destdir="${build.dir}/test-classes"
-           includeAntRuntime="false" source="1.5" target="1.5" encoding="UTF-8" fork="true"/>
+           includeAntRuntime="false" source="7" target="7" encoding="UTF-8" fork="true"/>
   </target>
 
   <target name="test" depends="test-compile">