Skip to content

Commit da546ce

Browse files
author
R. Tyler Croy
committed
Default to JRuby 9.1.14.0 which now has some nice Java 9 support 👏
http://jruby.org/2017/11/08/jruby-9-1-14-0.html
1 parent ff84f98 commit da546ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ buildscript {
1616
apply plugin: 'idea'
1717

1818
group = 'com.github.jruby-gradle'
19-
version = '1.6.0-SNAPSHOT'
19+
version = '1.6.0'
2020
defaultTasks 'check', 'assemble'
2121
sourceCompatibility = '1.8'
2222
targetCompatibility = '1.8'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ releaseBuild=false
88

99
targetCompatibility=1.7
1010
sourceCompatibility=1.7
11-
jrubyVersion=9.1.12.0
11+
jrubyVersion=9.1.14.0
1212
jettyVersion=9.2.12.v20150709
1313
rubygemsProxy=http://rubygems.lasagna.io/proxy/maven/releases
1414
torqueboxProxy=http://rubygems-proxy.torquebox.org/releases

jruby-gradle-base-plugin/src/main/groovy/com/github/jrubygradle/JRubyPluginExtension.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.gradle.api.Project
77
* Class providing the jruby{} DSL extension to the Gradle build script
88
*/
99
class JRubyPluginExtension {
10-
static final String DEFAULT_JRUBY_VERSION = '9.1.12.0'
10+
static final String DEFAULT_JRUBY_VERSION = '9.1.14.0'
1111

1212
/** The default version of jruby that will be used */
1313
String defaultVersion = DEFAULT_JRUBY_VERSION

0 commit comments

Comments
 (0)