Wraps a jar file around a Gem and automatically installs it in your local Gem repository. See the gem wrap task for more info (same rules apply).
[Source]
# File lib/raven/java_tasks.rb, line 336 336: def execute 337: super 338: params = [false] 339: params << RAVEN_HOME if defined?(GEMS_IN_HOME) 340: Gem::Installer.new("target/#{@group}-#{@artifact}-#{@version}-java.gem").install(*params) 341: end
[Validate]