From da546ce48abea0ac635a42dd1ed339529dddbb1a Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Wed, 15 Nov 2017 11:06:33 -0800 Subject: [PATCH] Default to JRuby 9.1.14.0 which now has some nice Java 9 support :clap: http://jruby.org/2017/11/08/jruby-9-1-14-0.html --- build.gradle | 2 +- gradle.properties | 2 +- .../groovy/com/github/jrubygradle/JRubyPluginExtension.groovy | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 4190b292..2df155a6 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ buildscript { apply plugin: 'idea' group = 'com.github.jruby-gradle' -version = '1.6.0-SNAPSHOT' +version = '1.6.0' defaultTasks 'check', 'assemble' sourceCompatibility = '1.8' targetCompatibility = '1.8' diff --git a/gradle.properties b/gradle.properties index 031659d2..a643f869 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ releaseBuild=false targetCompatibility=1.7 sourceCompatibility=1.7 -jrubyVersion=9.1.12.0 +jrubyVersion=9.1.14.0 jettyVersion=9.2.12.v20150709 rubygemsProxy=http://rubygems.lasagna.io/proxy/maven/releases torqueboxProxy=http://rubygems-proxy.torquebox.org/releases diff --git a/jruby-gradle-base-plugin/src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy b/jruby-gradle-base-plugin/src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy index 13d7115e..144fc007 100644 --- a/jruby-gradle-base-plugin/src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy +++ b/jruby-gradle-base-plugin/src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy @@ -7,7 +7,7 @@ import org.gradle.api.Project * Class providing the jruby{} DSL extension to the Gradle build script */ class JRubyPluginExtension { - static final String DEFAULT_JRUBY_VERSION = '9.1.12.0' + static final String DEFAULT_JRUBY_VERSION = '9.1.14.0' /** The default version of jruby that will be used */ String defaultVersion = DEFAULT_JRUBY_VERSION