summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorChristian Meier <m.kristian@web.de>2015-05-06 11:01:35 +0200
committerChristian Meier <m.kristian@web.de>2015-05-06 11:01:35 +0200
commit4a60719c6a4b0c383b7deb4ff5cc8b94e3b1ba76 (patch)
treed39a1fa42833944b935fe1ce4d47fc0e66b2897b /Rakefile
parente36e98192dcb90bec267fb04000678017f7d1cb0 (diff)
downloadpsych-4a60719c6a4b0c383b7deb4ff5cc8b94e3b1ba76.tar.gz
little ruby-maven related improvements
* pass in the snakeyaml.version via the commandline * use the jruby version which runs rake for the java compilation as well
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 133aa6a..bf332a7 100644
--- a/Rakefile
+++ b/Rakefile
@@ -48,10 +48,9 @@ $hoe = Hoe.spec 'psych' do
require "rake/javaextensiontask"
Rake::JavaExtensionTask.new("psych", spec) do |ext|
require 'maven/ruby/maven'
- # tell maven via system properties the snakeyaml version
- ENV_JAVA['snakeyaml.version'] = Psych::DEFAULT_SNAKEYAML_VERSION
# uses Mavenfile to write classpath into pkg/classpath
- Maven::Ruby::Maven.new.exec( 'dependency:build-classpath')#, '--quiet' )
+ # 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' )
ext.source_version = '1.7'
ext.target_version = '1.7'
ext.classpath = File.read('pkg/classpath')