summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Oliver Nutter <headius@headius.com>2023-01-12 14:29:20 -0600
committerCharles Oliver Nutter <headius@headius.com>2023-01-12 14:29:20 -0600
commite58c2d618750f494fd3935f170522a833a8bb5e8 (patch)
treeba9e20708ed316a8de568d0a2d11e20f3f1cd8aa
parent2da715a51e02ec268df214ff9c817fed1e73f96d (diff)
downloadpsych-e58c2d618750f494fd3935f170522a833a8bb5e8.tar.gz
JRuby has required 1.8 for a long time
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 55551b8..384f7bb 100644
--- a/Rakefile
+++ b/Rakefile
@@ -21,8 +21,8 @@ if RUBY_PLATFORM =~ /java/
# this is basically the same as running from the commandline:
# rmvn dependency:build-classpath -Dsnakeyaml.version='use version from Psych::DEFAULT_SNAKEYAML_VERSION here'
Maven::Ruby::Maven.new.exec('dependency:build-classpath', "-Dsnakeyaml.version=#{Psych::DEFAULT_SNAKEYAML_VERSION}", '-Dverbose=true')
- ext.source_version = '1.7'
- ext.target_version = '1.7'
+ ext.source_version = '1.8'
+ ext.target_version = '1.8'
ext.classpath = File.read('pkg/classpath')
ext.ext_dir = 'ext/java'
end