Sha256: b739d6b9e24a3fb685e7e5eab8692dfcf29fc8eee158f92783876149e6196888
Contents?: true
Size: 1.07 KB
Versions: 38
Compression:
Stored size: 1.07 KB
Contents
#-*- mode: ruby -*- load File.expand_path('lib/jrjackson/build_info.rb', File.dirname(__FILE__)) VERSION = ::JrJackson::BuildInfo.jar_version gemspec :jar => "jrjackson/jars/jrjackson-#{VERSION}.jar" # overwrite groupId:artifacgtId:version from gem id "com.jrjackson.jruby:jrjackson:#{VERSION}" packaging :jar properties 'project.build.sourceEncoding' => 'UTF-8', # create a pom.xml from this here 'polyglot.dump.pom' => 'pom.xml' jar 'junit:junit', '4.11', :scope => :test jar 'org.jruby:jruby', '9.2.4.0', :scope => :provided plugin :compiler, '3.1', :source => '1.8', :target => '1.8', :showDeprecation => false, :showWarnings => false, :executable => '${JAVA_HOME}/bin/javac', :fork => true plugin :surefire, '2.17', :skipTests => true # since bundle install does not vendor our jars we need to it manually plugin 'org.torquebox.mojo:jruby9-exec-maven-plugin', '0.3.1' do execute_goal :exec, :id => 'vendor-jars', :phase => 'prepare-package', :script => "require 'jars/installer';Jars::Installer.vendor_jars!" end
Version data entries
38 entries across 34 versions & 3 rubygems