From bf32d32dff14b03cc1d46ad37df7a71d6ee24bb6 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 8 Jun 2023 12:48:17 +0900 Subject: [PATCH] Bump up source/target JVM versions --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index d98d8355..3050f4aa 100644 --- a/Rakefile +++ b/Rakefile @@ -64,8 +64,8 @@ if jruby? ext.lib_dir = File.join 'lib', 'racc' ext.ext_dir = File.join 'ext', 'racc' # source/target jvm - ext.source_version = '1.6' - ext.target_version = '1.6' + ext.source_version = '1.7' + ext.target_version = '1.7' jars = ["#{jruby_home}/lib/jruby.jar"] + FileList['lib/*.jar'] ext.classpath = jars.map { |x| File.expand_path x }.join( ':' ) ext.name = 'cparse-jruby'