From c19960075cd92586265c103234ad78f222f31c5c Mon Sep 17 00:00:00 2001 From: Boris Petrov Date: Wed, 16 Aug 2023 19:35:28 +0300 Subject: [PATCH] Add the configuration's name as an input property Instead of the configuration itself as that doesn't work on Gradle 8 --- .../src/main/groovy/com/github/jrubygradle/JRubyExec.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-plugin/src/main/groovy/com/github/jrubygradle/JRubyExec.groovy b/base-plugin/src/main/groovy/com/github/jrubygradle/JRubyExec.groovy index b8641ef..840e39f 100644 --- a/base-plugin/src/main/groovy/com/github/jrubygradle/JRubyExec.groovy +++ b/base-plugin/src/main/groovy/com/github/jrubygradle/JRubyExec.groovy @@ -89,7 +89,7 @@ class JRubyExec extends JavaExec implements JRubyAwareTask, JRubyExecSpec { }.curry(this.jruby) inputs.property 'gemConfiguration', { JRubyPluginExtension jruby -> - jruby.gemConfiguration + jruby.gemConfiguration.name }.curry(this.jruby) if (GradleVersion.current() >= GradleVersion.version('4.10')) {