1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Set Java version to 1.8 to match Maven build.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/openstreetmap/OSM-binary/pull/93
--- a/build.xml
+++ b/build.xml
@@ -21,7 +21,7 @@
<exec executable="/bin/sh">
<arg value="./build.sh"/>
</exec>
- <javac includeantruntime="false" destdir="${build.dir}">
+ <javac includeantruntime="false" destdir="${build.dir}" source="1.8" target="1.8">
<src path="${src.dir}"/>
<src path="${src.generated.dir}"/>
<classpath>
|