summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristian Meier <m.kristian@web.de>2015-05-28 10:23:52 +0200
committerChristian Meier <m.kristian@web.de>2015-05-28 11:00:55 +0200
commit291f74b4ecc554f3faeee62a2d06b2c315822759 (patch)
treea08ad0b7d347712323f19189634fb163e79c7d1b /Rakefile
parentd8440cc7019c04a6378c7cc5efd05527b91748f5 (diff)
downloadpsych-291f74b4ecc554f3faeee62a2d06b2c315822759.tar.gz
no need to supply jruby itself to the classpath
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index bf332a7..ca4885d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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')