File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/main/groovy/com/github/jrubygradle Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -48,19 +48,19 @@ class JRubyPlugin implements Plugin<Project> {
48
48
JRubyExec . updateJRubyDependencies(project)
49
49
}
50
50
51
- project. task(' jrubyClean' , type : Delete ) {
52
- group TASK_GROUP_NAME
53
- description ' Clean up the temporary dirs used by the JRuby plugin'
54
- mustRunAfter ' clean'
55
- delete ' .jarcache/'
56
- }
57
-
58
51
project. task(' jrubyPrepareGems' , type : JRubyPrepareGems ) {
59
52
group TASK_GROUP_NAME
60
53
description ' Prepare the gems from the `gem` dependencies, extracts into jruby.installGemDir'
61
54
gems project. configurations. gems
62
55
outputDir project. jruby. gemInstallDir
63
56
}
57
+
58
+ project. task(' jrubyPrepare' ) {
59
+ group TASK_GROUP_NAME
60
+ description ' Pre-cache and prepare all dependencies (jars and gems)'
61
+ dependsOn project. tasks. jrubyPrepareGems
62
+ }
63
+
64
64
}
65
65
66
66
}
You can’t perform that action at this time.
0 commit comments