Reputation: 103
My packaged war created by warbler keeps using jruby-core-9.2.0.0
to run. How can I force warbler to package the war file with the jruby version I want?
Upvotes: 0
Views: 95
Reputation: 7181
in your Gemfile specify:
gem 'jruby-jars', '9.2.0.0', platform: :jruby, require: false
bundle install
and re-warble
Upvotes: 2