summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-08-21 09:18:33 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-08-21 09:18:33 -0700
commit7fe5b4de0f836ad48173c0afdab64c16ed80ecaa (patch)
tree928af8ac9ee816503a9032e6d67b3c9d0c5e3c69 /Rakefile
parent940896aaf62630f6b25520c64cfeb8d565f73885 (diff)
parent371ace9a60f2a5dc34e9b4af8cd04778cb5d3dbf (diff)
downloadpsych-7fe5b4de0f836ad48173c0afdab64c16ed80ecaa.tar.gz
Merge branch 'jruby' of github.com:tenderlove/psych into jrubyv2.0.14jruby
* 'jruby' of github.com:tenderlove/psych: 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 06d82c5..062b49a 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')