Sha256: 740f1edcfc64f187f920000c9ab8d0710a8abf937279d65b68ecb44998adc6bc
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
#-*- mode: ruby -*- gemspec inherit "org.jruby:jruby-artifacts:#{model.version.sub( /.dev$/, '-SNAPSHOT' )}" name "JRuby Jars Gem" jar 'org.jruby:jruby-core-complete', '${project.parent.version}' jar 'org.jruby:jruby-stdlib-complete', '${project.parent.version}' plugin( :clean, '2.5' ) do execute_goals( :clean, :phase => :clean, :id => 'clean-lib', :filesets => [ { :directory => '${basedir}/lib', :includes => ['*.jar'] } ], :failOnError => false ) end properties( 'tesla.dump.pom' => 'pom.xml', 'tesla.dump.readOnly' => true, 'jruby.home' => '${basedir}/../../' ) jruby_plugin!( :gem, :gemspec => 'jruby-jars.gemspec', :includeDependencies => true ) do execute_goals :id => 'default-push', :skip => true end #plugin :install, :skip => true execute 'rename gem file', :verify do |ctx| require 'fileutils' FileUtils.rm_rf(Dir["#{ctx.project.build.directory}/*.gem"]) FileUtils.mv(Dir["#{ctx.project.basedir}/*.gem"], ctx.project.build.directory) end plugin( :invoker, :projectsDirectory => 'src/it', :cloneProjectsTo => '${project.build.directory}/it', :postBuildHookScript => 'verify.bsh', :streamLogs => true ) do execute_goals( :install, :run ) # :settingsFile => '${basedir}/src/it/settings.xml', # :localRepositoryPath => '${project.build.directory}/local-repo' ) end # vim: syntax=Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jruby-jars-1.7.15 | Mavenfile |