Bump version to 2.1.0-beta.1

This commit is contained in:
Uwe Kubosch 2023-05-17 11:51:20 +02:00
parent efe6ed26d9
commit 4fba3bb2b5
3 changed files with 4 additions and 4 deletions

View File

@ -175,7 +175,7 @@ class JRubyExecUtils {
cmdArgs.addAll(jrubyArgs)
if (useBinPath && script != null) {
if (script.isAbsolute() && (!script.exists())) {
if (script.absolute && (!script.exists())) {
throw new InvalidUserDataException("${script} does not exist")
}
cmdArgs.add(script.toString())
@ -184,7 +184,7 @@ class JRubyExecUtils {
throw new InvalidUserDataException('No `script` property defined and no inline script provided')
}
if (jrubyArgs.isEmpty()) {
if (jrubyArgs.empty) {
throw new InvalidUserDataException('Cannot build JRuby execution arguments with either `script` or `jrubyArgs` set')
}
}

View File

@ -5,7 +5,7 @@ buildscript {
}
dependencies {
/* wow. so recursion */
classpath "com.github.jruby-gradle:jruby-gradle-plugin:1.0.3"
classpath "com.github.jruby-gradle:jruby-gradle-plugin:1.1.1"
}
}
apply plugin: 'org.ajoberstar.github-pages'

View File

@ -1,4 +1,4 @@
version=2.1.0-beta.0
version=2.1.0-beta.1
group=com.github.jruby-gradle
copyrightYear=2014-2023