Merge pull request #343 from rtyler/newest-jruby

Bump the to the latest JRuby version of 9.2.7.0
This commit is contained in:
R Tyler Croy 2019-05-04 12:16:46 -07:00 committed by GitHub
commit ea2ba74d44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 7 deletions

View File

@ -14,7 +14,7 @@ allprojects {
apply plugin: 'idea'
group = 'com.github.jruby-gradle'
version = '1.6.0'
version = '1.7.0'
if (!releaseBuild) {
version = "${version}-SNAPSHOT"
@ -37,7 +37,6 @@ subprojects {
repositories {
jcenter()
maven { url rubygemsProxy }
maven { url torqueboxProxy }
}

View File

@ -7,9 +7,8 @@ bintrayUser=
bintrayKey=
releaseBuild=false
targetCompatibility=1.7
sourceCompatibility=1.7
jrubyVersion=9.1.14.0
targetCompatibility=1.8
sourceCompatibility=1.8
jrubyVersion=9.2.7.0
jettyVersion=9.2.12.v20150709
rubygemsProxy=http://rubygems.lasagna.io/proxy/maven/releases
torqueboxProxy=http://rubygems-proxy.torquebox.org/releases

View File

@ -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.14.0'
static final String DEFAULT_JRUBY_VERSION = '9.2.7.0'
/** The default version of jruby that will be used */
String defaultVersion = DEFAULT_JRUBY_VERSION