We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8547786 commit 797a822Copy full SHA for 797a822
jruby-gradle-base-plugin/src/main/groovy/com/github/jrubygradle/GemUtils.groovy
@@ -95,8 +95,10 @@ class GemUtils {
95
// jbundler and/or jar-dependencies will not attempt to invoke
96
// Maven on a gem's behalf to install a Java dependency that we
97
// should already have taken care of, see #79
98
- environment 'JBUNDLE_SKIP', true
99
- environment 'JARS_SKIP', true
+ environment JBUNDLE_SKIP : true,
+ JARS_SKIP : true,
100
+ GEM_HOME : destDir.absolutePath,
101
+ GEM_PATH : destDir.absolutePath
102
main JRUBY_MAINCLASS
103
classpath jRubyClasspath
104
args '-S', GEM, 'install'
0 commit comments