File: change_java_version_for_ant.patch

package info (click to toggle)
sepp 4.5.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 33,376 kB
  • sloc: python: 5,635; java: 4,698; sh: 2,203; makefile: 53; xml: 31
file content (17 lines) | stat: -rw-r--r-- 632 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
From: Pierre Gruet <pgt@debian.org>
Date: 2021-09-25
Description: More recent version of Java suppresses some warnings
Origin: https://lists.debian.org/debian-med/2020/08/msg00104.html
Forwarded: not-needed

--- a/tools/merge/build.xml
+++ b/tools/merge/build.xml
@@ -29,7 +29,7 @@
 
   <target name="compile">
         <mkdir dir="${deploy.home}/classes"/>
-        <javac srcdir="src" destdir="${deploy.home}/classes" source="1.6" target="1.6" debug="on" >
+        <javac srcdir="src" destdir="${deploy.home}/classes" source="1.8" target="1.8" debug="on" >
 	        <classpath refid="classpath"/>
         </javac>
   </target>