headius on revert-6517-racc_gem_in_9.2
headius on jruby-9.2
Revert "Install racc 1.5.2 from… Copy updated racc bits This on… Merge pull request #6537 from j… (compare)
headius on revert-6517-racc_gem_in_9.2
Copy updated racc bits This on… (compare)
headius on revert-6517-racc_gem_in_9.2
Revert "Install racc 1.5.2 from… (compare)
headius on deploy_gha
Try deploy to Sonatype (compare)
headius on deploy_gha
Try release build on GHA (compare)
headius on jruby-9.2
Move jruby-jars deploy to end s… (compare)
headius on jruby-9.2
Update to latest plugin to get … (compare)
headius on jruby-9.2
Use batch mode to reduce upload… (compare)
gsubFast
- the only use of that I can find is in RubyDate.java, which uses a Regexp, so it's not directly affected by behaviour that uses a string pattern arg.
mvn
complains about the .polyglot.pom.rb
, ./mvnw
is fine, and ./mvnw -Pbootstrap
runs fine, but ./mvn
still complains after. (This is on JDK 1.8 on macOS 10.14) Is this expected? I ran jruby -S rake spec:ruby:fast
which reported 3 failures and 2 errors (Signal.list redefines CLD with CHLD if defined FAILED, plus some networking stuff that seems like it might be a platform thing). I can see that's not happening in the last Travis build. Is that expected/a problem?
GitParameterPluginAvailable
always set to false
. Instead, if I prepend the java class name with Java.
I get the following backtrace: http://dpaste.com/1SX9VK9Java.
prefix or without it?
include Java
would trigger require 'java'
if it had not already been loaded, but in all recent JRuby versions it's already there. The difference comes in where you actually include
; whatever module you include Java
into will gain some peculiar side effects of our module/package logic that lives in the Java
module.
include Java
now, and use require 'java'
only as future-proofing in case we don't load it by default some day.