diff options
author | Christian Meier <m.kristian@web.de> | 2015-05-28 10:23:52 +0200 |
---|---|---|
committer | Christian Meier <m.kristian@web.de> | 2015-05-28 11:00:55 +0200 |
commit | 291f74b4ecc554f3faeee62a2d06b2c315822759 (patch) | |
tree | a08ad0b7d347712323f19189634fb163e79c7d1b | |
parent | d8440cc7019c04a6378c7cc5efd05527b91748f5 (diff) | |
download | psych-291f74b4ecc554f3faeee62a2d06b2c315822759.tar.gz |
no need to supply jruby itself to the classpath
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Mavenfile | 2 | ||||
-rw-r--r-- | Rakefile | 4 |
3 files changed, 4 insertions, 3 deletions
@@ -2,5 +2,6 @@ *.bundle *.jar *.class +.mvn /pkg /tmp @@ -1,7 +1,5 @@ #-*- mode: ruby -*- -pom 'org.jruby:jruby:${jruby.version}', :scope => :provided - jar 'org.yaml:snakeyaml:${snakeyaml.version}' plugin :dependency, '2.8', :outputFile => 'pkg/classpath' @@ -50,7 +50,9 @@ $hoe = Hoe.spec 'psych' do require 'maven/ruby/maven' # uses Mavenfile to write classpath into pkg/classpath # and tell maven via system properties the snakeyaml version - Maven::Ruby::Maven.new.exec( 'dependency:build-classpath', "-Djruby.version=#{JRUBY_VERSION}", "-Dsnakeyaml.version=#{Psych::DEFAULT_SNAKEYAML_VERSION}")#, '--quiet' ) + # this is basically the same as running from the commandline: + # rmvn dependency:build-classpath -Dsnakeyaml.version='use version from Psych::DEFAULT_SNAKEYAML_VERSION here' + Maven::Ruby::Maven.new.exec( 'dependency:build-classpath', "-Dsnakeyaml.version=#{Psych::DEFAULT_SNAKEYAML_VERSION}", '-Dverbose=true')#, '--quiet' ) ext.source_version = '1.7' ext.target_version = '1.7' ext.classpath = File.read('pkg/classpath') |