You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((task instanceofJRubyJar) && (task.scriptName !=JRubyJar.Type.LIBRARY)) {
39
-
if (isJRubyVersionDeprecated(task.jrubyVersion)) {
40
-
project.logger.warn('The task `{}` is using JRuby {} which may cause unexpected behavior, see <http://jruby-gradle.org/errors/jar-deprecated-jrubyversion> for more',
41
-
task.name, task.jrubyVersion)
42
-
}
43
-
}
44
-
}
45
-
}
46
-
47
-
/**
48
-
* Determine whether the version of the JRuby provided is deprecated as far
49
-
* as the jar plugin is concerned. Deprecated means that the version is unlikely
50
-
* to produce a useful artifact due to missing functionality in JRuby core
51
-
*
52
-
* @param version
53
-
* @return True if we consider this version deprecated/problematic for the jar plugin
0 commit comments