From: Pei Jia Date: Sat, 7 May 2022 01:27:27 +0000 (-0700) Subject: JAVA_SOURCE_VERSION from 1.6 to 1.8 X-Git-Tag: v2.5.0~4^2 X-Git-Url: https://git.carlh.net/gitweb/?p=openjpeg.git;a=commitdiff_plain;h=3ac495c7fc8c23010a15b3d282e1dbfb6422dae0 JAVA_SOURCE_VERSION from 1.6 to 1.8 --- diff --git a/src/bin/jpip/CMakeLists.txt b/src/bin/jpip/CMakeLists.txt index 9b24fa4a..c16e4271 100644 --- a/src/bin/jpip/CMakeLists.txt +++ b/src/bin/jpip/CMakeLists.txt @@ -57,14 +57,14 @@ add_executable(${exe} ${exe}.c) endforeach() # Build the two java clients: -find_package(Java 1.6 COMPONENTS Development) # javac, jar +find_package(Java 1.8 COMPONENTS Development) # javac, jar # User can override this: if(NOT DEFINED JAVA_SOURCE_VERSION) - set(JAVA_SOURCE_VERSION 1.6) + set(JAVA_SOURCE_VERSION 1.8) endif() if(NOT DEFINED JAVA_TARGET_VERSION) - set(JAVA_TARGET_VERSION 1.6) + set(JAVA_TARGET_VERSION 1.8) endif() # Only build the java viewer if dev is found: